OTHispano
¿Quieres reaccionar a este mensaje? Regístrate en el foro con unos pocos clics o inicia sesión para continuar.

Ir abajo
avatar
[ADM]Xardess
Miembro
Mensajes Mensajes : 36

[Pedido] Script !aol y !spells Empty [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 Very Happy. +rep al que me ayude
Falcon
Falcon
Administrador
Mensajes Mensajes : 350
http://www.othispano.net

[Pedido] Script !aol y !spells Empty Re: [Pedido] Script !aol y !spells

Sáb Mayo 19, 2012 6:51 pm
Reputación del mensaje :100% (1 voto)
Ves ah tu carpeta talkactions.xml,
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:).
avatar
[ADM]Xardess
Miembro
Mensajes Mensajes : 36

[Pedido] Script !aol y !spells Empty Re: [Pedido] Script !aol y !spells

Dom Mayo 20, 2012 4:03 pm
Gracias Very Happy funciono bien +rep
ﻝhonLedit
ﻝhonLedit
Moderador
Mensajes Mensajes : 312
http://www.otsuporter.com/

[Pedido] Script !aol y !spells Empty Re: [Pedido] Script !aol y !spells

Lun Mayo 21, 2012 9:27 am
Cerrado
Razón: Resuelto
Contenido patrocinado

[Pedido] Script !aol y !spells Empty Re: [Pedido] Script !aol y !spells

Volver arriba
Permisos de este foro:
No puedes responder a temas en este foro.