Ir para conteúdo

Problema Com Talkaction.


jhon992

Posts Recomendados

tenho esse script:

 

function onSay(cid, words, param)

 

local outfit = {lookType=2}

local outfitTime = 10

local pos = getPlayerPosition(cid)

 

if getCreatureOutfit(cid).lookType == 32 then

doSetCreatureOutfit(cid, outfit, outfitTime)

doSendMagicEffect(pos, 30)

doChangeSpeed(cid, -390)

doPlayerSendTextMessage(cid,27,'Normal form!')

else

doPlayerSendCancel(cid,"Você não esta transformado!")

end

return 1

end

 

 

/////////////////////////////////////////

 

Precisso que alem de remover a velocidade, que ele remove-se tambem skills por um determinado tempo. Ja pesquisei por tudo e não encontrei como fazer. Se ajudar rep++ concerteza!

Link para o comentário
Compartilhar em outros sites

function onSay(cid, words, param)

local outfit = {lookType=2}
local outfitTime = 10
local pos = getPlayerPosition(cid)

if getCreatureOutfit(cid).lookType == 32 then
doSetCreatureOutfit(cid, outfit, outfitTime)
doSendMagicEffect(pos, 30)
doChangeSpeed(cid, -390)
doChangeSkills(cid, -200)
doPlayerSendTextMessage(cid,27,'Normal form!')
else
doPlayerSendCancel(cid,"Você não esta transformado!")
end
return 1
end 

 

Testa ae amigo

Editado por mulizeu
Link para o comentário
Compartilhar em outros sites

function onSay(cid, words, param)

local outfit = {lookType=2}
local outfitTime = 10
local pos = getPlayerPosition(cid)

if getCreatureOutfit(cid).lookType == 32 then
doSetCreatureOutfit(cid, outfit, outfitTime)
doSendMagicEffect(pos, 30)
doChangeSpeed(cid, -390)
doChangeSkill(cid, -200)
doPlayerSendTextMessage(cid,27,'Forma Normal!')
else
doPlayerSendCancel(cid,"Você não esta transformado!")
end
return 1
end 

 

testa denovo ae amigo!

Link para o comentário
Compartilhar em outros sites

Visitante
Este tópico está impedido de receber novos posts.
×
×
  • Criar Novo...