Ir para conteúdo
  • 0

Helflin

Pergunta

Eu tenho esse arquivo(movement) chamado yalahar_azerus_quest.lua.

 

 

 

function onStepIn(cid, item, position, fromPosition)

--Config-->
local starting = {x = 1075, y = 1174, z = 7, stackpos = 253}
local ending = {x = 1096, y = 1198, z = 7, stackpos = 253}
local checking = {x = starting.x, y = starting.y, z = starting.z, stackpos = starting.stackpos}
local queststatus = getPlayerStorageValue(cid, 50001) --Value ID DA QUEST QUANDO VOCE JA PEGO O ITEM
local player_pos_entrada = {x = 1086, y = 1193, z = 7}
--EndConfig-->

--Do not touch this--
if getPlayerLookDir(cid) == 0 then
newdir = 2
elseif getPlayerLookDir(cid) == 1 then
newdir = 3
elseif getPlayerLookDir(cid) == 2 then
newdir = 0
else
newdir = 1
end
--Don't edit this unless you know what you are doing.

if item.actionid == 1974 and queststatus == -1 then
doCreatureSay(cid, "It seems by defeating Azarus you have stopprd this army from entering your world! Better leave this ghastly place forever.", TALKTYPE_ORANGE_1)
setPlayerStorageValue(cid, 39374, 1) --Value ID PARA QUE O PLAYER POSSA ENTRA NA PORTA ONDE ESTAUM AS RECOMPENSA
return TRUE
end

if item.actionid == 1973 and queststatus == -1 then
totalmonsters = 0
monster = {}

repeat
creature = getThingfromPos(checking)

if creature.itemid > 0 then
if getPlayerAccess(creature.uid) ~= 0 and getPlayerAccess(creature.uid) ~= 3 then
totalmonsters = totalmonsters + 1
monster[totalmonsters] = creature.uid
end
end

checking.x = checking.x + 1

if checking.x > ending.x then
checking.x = starting.x
checking.y = checking.y + 1
end

until checking.y > ending.y

if totalmonsters ~= 0 then
current = 0
repeat
current = current + 1
doRemoveCreature(monster[current])
until current >= totalmonsters
end

doTeleportThing(cid, player_pos_entrada)
doSendMagicEffect(player_pos_entrada, 10)

else
doMoveCreature(cid, newdir)
doPlayerSendTextMessage(cid, MESSAGE_STATUS_CONSOLE_ORANGE, 'Someone has already done this quest.')
end
end

 

 

 

E ele está com esse erro no distro sempre que um player entra no teleport da quest.

314f0h2.jpg

 

Acho que é algo nisso, mas não sei:

creature = getThingfromPos(checking)
Link para o comentário
Compartilhar em outros sites

4 respostass a esta questão

Posts Recomendados

  • 0

oque está errado é local checking = {x = starting.x, y = starting.y, z = starting.z, stackpos = starting.stackpos} parece que não tem ground na position...


oque está dando erro é provavelmente local checking = {x = starting.x, y = starting.y, z = starting.z, stackpos = starting.stackpos} parece que não tem ground na position...

Link para o comentário
Compartilhar em outros sites

×
×
  • Criar Novo...