Ir para conteúdo
  • 0

como arrumar essa spell < monster usa ela


LeoTK

Pergunta

gente emtaum o monster usa essa spells mais nao sei oque tem de errado com ela alguem pode ajudar

 

 

script da spell \/

 

 

local condition = createConditionObject(CONDITION_PARALYZE)
setConditionParam(condition, CONDITION_PARAM_TICKS, 5000)
setConditionParam(condition, CONDITION_PARAM_SPEED, -5000)

function onCastSpell(cid, var)

local target = getCreatureTarget(cid)
local targetpos = getCreaturePosition(target)
local efepos = {x=targetpos.x+1, y=targetpos.y+1, z=targetpos.z}
local time = 5 -- tempo paralyzado

if isPlayer(cid) then
if exhaustion.check(cid, 20000) == true then
doPlayerSendTextMessage(cid, MESSAGE_STATUS_CONSOLE_ORANGE, "Aguarde " .. exhaustion.get(cid, 20000) .. " segundos para usar novamente.")
return FALSE
end
end

local function No_Move_Target()
doCreatureSetNoMove(target, 0)
end

if isPlayer(cid) then
exhaustion.set(cid, 20000, 8)
end
doCreatureSetNoMove(target, 1)
doAddCondition(target, condition)
doSendMagicEffect(efepos, 152)
addEvent(No_Move_Target, time*1000)
return true
end

 

 

print do erro \/

 

29z8v9e.jpg

Link para o comentário
Compartilhar em outros sites

5 respostass a esta questão

Posts Recomendados

  • 0


local condition = createConditionObject(CONDITION_PARALYZE)

setConditionParam(condition, CONDITION_PARAM_TICKS, 5000)

setConditionParam(condition, CONDITION_PARAM_SPEED, -5000)

 

function onCastSpell(cid, var)

 

local target = getCreatureTarget(cid)

local targetpos = getCreaturePosition(target)

local efepos = {x=targetpos.x+1, y=targetpos.y+1, z=targetpos.z}

local time = 5 -- tempo paralyzado

 

if isPlayer(cid) then

if exhaustion.check(cid, 20000) == true then

doPlayerSendTextMessage(cid, MESSAGE_STATUS_CONSOLE_ORANGE, "Aguarde " .. exhaustion.get(cid, 20000) .. " segundos para usar novamente.")

return FALSE

end

end

 

local function No_Move_Target()

if isCreature(target) then

doCreatureSetNoMove(target, 0)

end

end

 

if isPlayer(cid) then

exhaustion.set(cid, 20000, 8)

end

doCreatureSetNoMove(target, 1)

doAddCondition(target, condition)

doSendMagicEffect(efepos, 152)

addEvent(No_Move_Target, time*1000)

return true

end

Link para o comentário
Compartilhar em outros sites

×
×
  • Criar Novo...