Histórico de Edições
Please note that revisions older than 15 days are pruned and will no longer show here
Não há histórico de edição para mostrar, ou este comentário foi editado por um moderador.
-
Quem Está Navegando 0 membros estão online
Nenhum usuário registrado visualizando esta página.
-
Conteúdo Similar
-
Por kauan13
Alguém Pode Me Ajudar A Mexer No SharpMapTracker sempre da 1 bug que quando dou close dis que o server ta off. Por favor Se Alguém Sabe Me Diga
-
Por kauan13
Bom tenho essa script e não estou conseguindo entender ela e de 1 piso q marca pontos quando player sobem em cima.
movements/scripts
nome_arquivo.lua
local timeToAddPoints = 1 -- de quanto em quanto tempo será adicionado um ponto. addPoints = {} local function doAddPoints (cid) if not isPlayer(cid) then addPoints[cid] = nil return true end setPlayerStorageValue (cid, 87954, getPlayerStorageValue (cid, 87954) + 1) doCreatureSay (cid, getCreatureName(cid).."["..getPlayerStorageValue (cid, 87954).."]") return true end function onStepIn(cid, item, position, fromPosition) if isPlayer(cid) then addPoints[cid] = addEvent(doAddPoints, timeToAddPoints * 1000, cid) end return true end function onStepOut(cid) if isPlayer(cid) then stopEvent(addPoints[cid]) end return true end movements.xml
<movevent type="StepIn" actionid="actiond_id" event="script" value="nome_arquivo.lua" /> <movevent type="StepOut" actionid="actiond_id" event="script" value="nome_arquivo.lua" /> +++++++REP