Ir para conteúdo

Ajuda Script Acabar Vip


majorinsanity

Posts Recomendados

uso real server e queria q alguem editasse esse script pra mim q eh qdo o player acabar a vip ele sera teleportado para o templo de qualquer cidade free

 

storage qdo o player ta vip é 13540

storage do player sem vip é 13500

 

-- [( Script edited by: DoidinMapper )] --

function onLogin(cid)

local pos = {x=32360, y=31782, z=7}

pos = {x=32360, y=31782, z=7}

if vip.hasVip(cid) == TRUE then

if getPlayerStorageValue(cid,55555) ~= 1 then

setPlayerStorageValue(cid,55555,1)

end

elseif vip.hasVip(cid) ~= TRUE and vip.getVip(cid) ~= 0 then

if getPlayerStorageValue(cid,55555) == 1 then

doTeleportThing(cid, pos, TRUE)

doPlayerSendTextMessage(cid, MESSAGE_STATUS_CONSOLE_BLUE, "Your VIP's over!")

doPlayerSendTextMessage(cid,22,"Your VIP's over!")

setPlayerPromotionLevel(cid, 1)

setPlayerStorageValue(cid,55555,2)

elseif getPlayerStorageValue(cid,55555) == -1 then

setPlayerStorageValue(cid,55555,2)

end

end

return TRUE

end

Link para o comentário
Compartilhar em outros sites

function onLogin(cid)

local cidadefree = {x=32360, y=31782, z=7} -- configura a posição onde o player vai teleportar quando acabar a vip 

if (getPlayerStorageValue(cid,13540) > 0) then
setPlayerStorageValue(cid,13545,1)
end

if (getPlayerStorageValue(cid,13500) > 0 and getPlayerStorageValue(cid,13545) == 1) then
doTeleportThing(cid, cidadefree)
doPlayerSendTextMessage(cid, MESSAGE_STATUS_CONSOLE_BLUE, "Your VIP's over!")
setPlayerStorageValue(cid,13545,0)
end

return TRUE
end

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

×
×
  • Criar Novo...