Conectarse
Últimos temas
Mejores posteadores
Style Alejandro (26) | ||||
Zhurakytas (2) | ||||
meleq (2) | ||||
GM Charles (1) | ||||
obscure (1) | ||||
Jou123 (1) | ||||
cristian25 (1) | ||||
FTP ADM (1) |
Estadísticas
Tenemos 203 miembros registradosEl último usuario registrado es FTP ADM
Nuestros miembros han publicado un total de 33 mensajes en 30 argumentos.
¿Quién está en línea?
En total hay 3 usuarios en línea: 0 Registrados, 0 Ocultos y 3 Invitados Ninguno
El record de usuarios en línea fue de 51 durante el Lun Oct 28, 2024 3:29 pm
Comandos !rank-!Bless-!spells-Aol-
Joker Gamer`s :: Utilidades :: Scripts
Página 1 de 1.
Comandos !rank-!Bless-!spells-Aol-
1.ot/data/talckactions/script. Copian y pegan un archivo y le ponen de nombre "aol".
juanspada escribió:function onSay(cid, words, param)
if doPlayerRemoveMoney(cid, 10000) == TRUE then
doPlayerAddItem(cid, 2173, 1)
doSendMagicEffect(getPlayerPosition(cid), CONST_ME_BATS)
else
end
return TRUE
end
Bless:
1.ot/data/talckactions/script. Copian y pegan un archivo y le ponen de nombre "bless".
juanspada escribió:function onSay(cid, words, param)
if getPlayerBlessing(cid, 5) == TRUE then
doPlayerSendCancel(cid, "You have already have been blessed.")
doSendMagicEffect(getPlayerPosition(cid), CONST_ME_POFF)
return TRUE
end
if doPlayerRemoveMoney(cid, cost) == TRUE then
doPlayerAddBlessing(cid, 1)
doPlayerAddBlessing(cid, 2)
doPlayerAddBlessing(cid, 3)
doPlayerAddBlessing(cid, 4)
doPlayerAddBlessing(cid, 5)
doSendAnimatedText(getCreaturePosition(cid), 'You Have Ben Blessed!!!', TEXTCOLOR_DARKORANGE)
return TRUE
else
doPlayerPopupFYI(cid, "You need to have "..cost.."gp to buy blessings.")
doSendMagicEffect(getPlayerPosition(cid), CONST_ME_POFF)
return TRUE
end
end
Rank:
1.ot/data/talckactions/script. Copian y pegan un archivo y le ponen de nombre "rank".
juanspada escribió:local ranks = {
['fist'] = {0},
['club'] = {1},
['sword'] = {2},
['axe'] = {3},
['distance'] = {4},
['shield'] = {5},
['fish'] = {6},
['magic'] = {7},
['level'] = {8},
}
function onSay(cid, words, param)
local msg = string.lower(param)
if ranks[msg] ~= nil then
str = getHighscoreString((ranks[msg][1]))
else
str = getHighscoreString((Cool)
end
doShowTextDialog(cid,6500, str)
return TRUE
end
Spells:
1.ot/data/talckactions/script. Copian y pegan un archivo y le ponen de nombre "spells".
juanspada escribió: function onSay(cid, words, param)
local count = getPlayerInstantSpellCount(cid)
local text = ""
local t = {}
for i = 0, count - 1 do
local spell = getPlayerInstantSpellInfo(cid, i)
if spell.level ~= 0 then
if spell.manapercent > 0 then
spell.mana = spell.manapercent .. "%"
end
table.insert(t, spell)
end
end
table.sort(t, function(a, b) return a.level < b.level end)
local prevLevel = -1
for i, spell in ipairs(t) do
local line = ""
if prevLevel ~= spell.level then
if i ~= 1 then
line = "\n"
end
line = line .. "Spells for Level " .. spell.level .. "\n"
prevLevel = spell.level
end
text = text .. line .. " " .. spell.words .. " - " .. spell.name .. " : " .. spell.mana .. "\n"
end
doShowTextDialog(cid, 2175, text)
return TRUE
end
Ahora Nos dirigimos a : ot/data/talckactions/talckactions.xml
<talkaction words="!spells" event="script" value="spells.lua"/>
<talkaction words="!aol" script="aol.lua"/>
<talkaction words="!bless" script="blessings.lua" />
<talkaction words="!rank" event="script" value="ranks.lua"/>
juanspada escribió:function onSay(cid, words, param)
if doPlayerRemoveMoney(cid, 10000) == TRUE then
doPlayerAddItem(cid, 2173, 1)
doSendMagicEffect(getPlayerPosition(cid), CONST_ME_BATS)
else
end
return TRUE
end
Bless:
1.ot/data/talckactions/script. Copian y pegan un archivo y le ponen de nombre "bless".
juanspada escribió:function onSay(cid, words, param)
if getPlayerBlessing(cid, 5) == TRUE then
doPlayerSendCancel(cid, "You have already have been blessed.")
doSendMagicEffect(getPlayerPosition(cid), CONST_ME_POFF)
return TRUE
end
if doPlayerRemoveMoney(cid, cost) == TRUE then
doPlayerAddBlessing(cid, 1)
doPlayerAddBlessing(cid, 2)
doPlayerAddBlessing(cid, 3)
doPlayerAddBlessing(cid, 4)
doPlayerAddBlessing(cid, 5)
doSendAnimatedText(getCreaturePosition(cid), 'You Have Ben Blessed!!!', TEXTCOLOR_DARKORANGE)
return TRUE
else
doPlayerPopupFYI(cid, "You need to have "..cost.."gp to buy blessings.")
doSendMagicEffect(getPlayerPosition(cid), CONST_ME_POFF)
return TRUE
end
end
Rank:
1.ot/data/talckactions/script. Copian y pegan un archivo y le ponen de nombre "rank".
juanspada escribió:local ranks = {
['fist'] = {0},
['club'] = {1},
['sword'] = {2},
['axe'] = {3},
['distance'] = {4},
['shield'] = {5},
['fish'] = {6},
['magic'] = {7},
['level'] = {8},
}
function onSay(cid, words, param)
local msg = string.lower(param)
if ranks[msg] ~= nil then
str = getHighscoreString((ranks[msg][1]))
else
str = getHighscoreString((Cool)
end
doShowTextDialog(cid,6500, str)
return TRUE
end
Spells:
1.ot/data/talckactions/script. Copian y pegan un archivo y le ponen de nombre "spells".
juanspada escribió: function onSay(cid, words, param)
local count = getPlayerInstantSpellCount(cid)
local text = ""
local t = {}
for i = 0, count - 1 do
local spell = getPlayerInstantSpellInfo(cid, i)
if spell.level ~= 0 then
if spell.manapercent > 0 then
spell.mana = spell.manapercent .. "%"
end
table.insert(t, spell)
end
end
table.sort(t, function(a, b) return a.level < b.level end)
local prevLevel = -1
for i, spell in ipairs(t) do
local line = ""
if prevLevel ~= spell.level then
if i ~= 1 then
line = "\n"
end
line = line .. "Spells for Level " .. spell.level .. "\n"
prevLevel = spell.level
end
text = text .. line .. " " .. spell.words .. " - " .. spell.name .. " : " .. spell.mana .. "\n"
end
doShowTextDialog(cid, 2175, text)
return TRUE
end
Ahora Nos dirigimos a : ot/data/talckactions/talckactions.xml
<talkaction words="!spells" event="script" value="spells.lua"/>
<talkaction words="!aol" script="aol.lua"/>
<talkaction words="!bless" script="blessings.lua" />
<talkaction words="!rank" event="script" value="ranks.lua"/>
Joker Gamer`s :: Utilidades :: Scripts
Página 1 de 1.
Permisos de este foro:
No puedes responder a temas en este foro.
Dom Sep 27, 2015 9:54 pm por FTP ADM
» necesito un servidor
Vie Sep 06, 2013 10:48 pm por cristian25
» Nose como abrir los puertos de mi pc
Dom Abr 14, 2013 3:18 pm por Jou123
» NUEVO OT SERVER MAP RL 8.6
Dom Feb 24, 2013 8:25 pm por obscure
» Map 8.60...
Sáb Oct 30, 2010 5:06 am por GM Charles
» |MeleqOT|8.60|Hosting Dedicated|Evolution Full Map|
Vie Oct 29, 2010 8:01 am por meleq
» |MeleqOT|8.60|Hosting Dedicated|Evolution Full Map|
Vie Oct 29, 2010 8:00 am por meleq
» Esta Es La Super SD..
Jue Jul 22, 2010 8:59 pm por Style Alejandro
» Como abrir puertos 7171 y 7172?
Jue Jul 22, 2010 8:54 pm por Style Alejandro
» Comandos De God
Jue Jul 22, 2010 8:52 pm por Style Alejandro