Ir para conteúdo
  • 0

Ajuda Talkaction


Pergunta

Ot Wodbo

Ajuda com talkaction

 

Amigos. eu queria pedir um favor. seria possivel alguem conseguir um script talkaction para o comando !spells. para que os players podessem ver suas magias durante o jogo?

Link para o comentário
https://xtibia.com/forum/topic/153087-ajuda-talkaction/
Compartilhar em outros sites

4 respostass a esta questão

Posts Recomendados

  • 0

Ai blz?

Cola isso no talkactions.xml:

 

 

<talkaction words="tecnicas" script="spells.lua"/>

 

 

Depois cria um arquivo na pasta scripts chamado spells.lua e cola isso:

 

 

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

 

 

 

É isso. Te ajudei, Rep++ aeww :thumbsupsmiley2:

Link para o comentário
https://xtibia.com/forum/topic/153087-ajuda-talkaction/#findComment-1011426
Compartilhar em outros sites

  • 0

Desculpe estar me intrometendo, mas foi você quem fez esse script? Só pra saber.

Nao, o script não fui eu que fiz, ja veio num ot que eu baxei de wodbo. Como não sei quem fez, não coloquei nome. Se você souber quem fez eu coloco os créditos, só me falar

Link para o comentário
https://xtibia.com/forum/topic/153087-ajuda-talkaction/#findComment-1011511
Compartilhar em outros sites

×
×
  • Criar Novo...