Ir para conteúdo
  • 0

ERRO Tile Level


fawkz12

Pergunta

Bom eu coloquei tile level no meu servidor, mas ele não funfa... todos os leveis podem passar nele.....

 

Script do movements.xml

<movevent type="StepIn" actionid="24003" event="script" value="tilelevel.lua"/>

Script do movements\scripts

 

function onStepIn(cid, item, position, fromPosition)


level = 600
if getPlayerLevel(cid) < level then
doTeleportThing(cid, fromPosition, true)
doSendMagicEffect(getThingPos(cid), CONST_ME_MAGIC_RED)
doPlayerSendCancel(cid,"Only level " .. level .. " or more can pass here.")
end
return TRUE
end

Como arrumar?

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

6 respostass a esta questão

Posts Recomendados

  • 0

Tenta ae:

local level = 600

function onStepIn(cid, item, position, fromPosition)
if isPlayer(cid) == false then
return true
end
if getPlayerLevel(cid) < level then
doTeleportThing(cid, fromPosition, true)
doSendMagicEffect(getThingPos(cid), CONST_ME_MAGIC_RED)
doPlayerSendTextMessage(cid, 27, "Only level "..level.." or more can pass here.")
return true
end
return true
end

E só a titulo de esperança, caso o anterior ñ funcione, tente esse:

local level = 600

function onStepIn(cid, item, position, fromPosition)
if isPlayer(cid) == false then
return true
end
if getPlayerLevel(cid) < level then
doTeleportThing(cid, fromPosition)
doSendMagicEffect(getThingPos(cid), CONST_ME_MAGIC_RED)
doPlayerSendTextMessage(cid, 27, "Only level "..level.." or more can pass here.")
return true
end
return true
end
Link para o comentário
Compartilhar em outros sites

×
×
  • Criar Novo...