Ir para conteúdo

Erro No Script Remover Vip Automatico


Menoxcide

Posts Recomendados

Tpw eu fiz esse script ake:

 

 

<globalevent name="removevipdays" interval="86400" script="removevipdays.lua"/>

 

 

 

-- Credits Menoxcide and Jason

function onThink(cid, item, fromPosition, toPosition)

 

for _, name in ipairs(getOnlinePlayers()) do

local player = getPlayerByName(name)

if getPlayerStorageValue(player,11551) > 1 then

setPlayerStorageValue(player,11551,getPlayerStorageValue(player) - 1)

end

end

end

 

 

Ai tpw, na hora de carrega no theforgottenserver.exe nao da nenhum erro, só q ai quando vai executa

o script pra remove a vip da erro...esse erro:

[22/12/2011 13:32:57] [Error - GlobalEvents::think] Couldn't execute event: removevipdays

 

Se der pra alguem ajuda.... !!!

Link para o comentário
Compartilhar em outros sites

cara no seu script eu n vi nada de errado, mas você não acha melhor fazer por onlogin?

eu vi esse aqui do vodkart:

 

--[[ by vodkart ]]--

function onLogin(cid)

 

if getPlayerStorageValue(cid, 13540) - os.time() > 0 then

setPlayerStorageValue(cid, 9898, 1)

end

 

local pos = {x = 157, y = 50, z = 7} -- posiçao do templo.

 

function Vodka(cid)

if isPlayer(cid) then

db.executeQuery("UPDATE `players` SET `name` = '"..string.sub(getCreatureName(cid), 7).."' WHERE `id` = "..getPlayerGUID(cid)..";")

doRemoveCreature(cid)

end

end

 

if getPlayerStorageValue(cid, 9898) == 1 and getPlayerStorageValue(cid, 13540) - os.time() < 1 or getPlayerStorageValue(cid, 13540) - os.time() == 0 then

doTeleportThing(cid, pos)

doPlayerPopupFYI(cid, "Sua vip Account acabou.")

setPlayerStorageValue(cid, 9898, -1)

if string.find(tostring(getCreatureName(cid)),"[[Vip]]") then

addEvent(Vodka, 3*1000, cid)

end

end

return TRUE

end

Basta você alterar as storages para o do seu sistema vip.

REP++?

Link para o comentário
Compartilhar em outros sites

Tah eu vo tenta usa esse + esse ai remove automaticamente ?? E em q pasta q é ??

 

responde esses bang e se der certo eu ti do 2 rep+

 

e se vc poder me falar qual storage dali é o de vip desse tal de vodkard ajudaria mt rsrsrsrsrs, pq tem storages diferente ai

Link para o comentário
Compartilhar em outros sites

cara o principal erro ta aki

function onThink(cid, item, fromPosition, toPosition)

onThink(no glocal events so usa tres espaços seria assim onThink(interval, lastexecution, thinginterval)

se fosse creaturescript seria so dois

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

×
×
  • Criar Novo...