[Pedido] Script !aol y !spells
3 participantes
- [ADM]XardessMiembro
- Mensajes : 36
[Pedido] Script !aol y !spells
Sáb Mayo 19, 2012 6:48 pm
Nesesito su ayuda descarge un ot pero no traia el comando !aol ni !spells los nesesito urgente mente espero que me puedan ayudar . +rep al que me ayude
Re: [Pedido] Script !aol y !spells
Sáb Mayo 19, 2012 6:51 pm
Ves ah tu carpeta talkactions.xml,
Y coloca esto;
Luego, vas a talkactions/scripts/creas un archivo llamado aol.lua
Y pones esto;
Despues haces otro archivo llamado, spellsinfo.lua
Y seria todo, avísame si funciona:).
Y coloca esto;
- Código:
<talkaction words="!aol" script="aol.lua"/>
<talkaction words="!spells" event="script" value="spellsinfo.lua"/>
Luego, vas a talkactions/scripts/creas un archivo llamado aol.lua
Y pones esto;
- Código:
function onSay(cid, words, param)
if doPlayerRemoveMoney(cid, 10000) == TRUE then
doPlayerAddItem(cid, 2173, 1)
doSendMagicEffect(getPlayerPosition(cid), 14)
doSendAnimatedText(getCreaturePosition(cid), '*aol*', TEXTCOLOR_GREEN)
else
doPlayerSendCancel(cid, 'No tienes dinero.')
doSendMagicEffect(getPlayerPosition(cid), 2)
return TRUE
end
return TRUE
end
Despues haces otro archivo llamado, spellsinfo.lua
- Código:
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
Y seria todo, avísame si funciona:).
- [ADM]XardessMiembro
- Mensajes : 36
Re: [Pedido] Script !aol y !spells
Dom Mayo 20, 2012 4:03 pm
Gracias funciono bien +rep
Permisos de este foro:
No puedes responder a temas en este foro.