• There is NO official Otland's Discord server and NO official Otland's server list. The Otland's Staff does not manage any Discord server or server list. Moderators or administrator of any Discord server or server lists have NO connection to the Otland's Staff. Do not get scammed!

Free Vip to 300lvl

paladyn3012

Banned User
Joined
Jan 2, 2009
Messages
7
Reaction score
0
Hello

I from poland ;D

I need script for free VIP only to 300lvl

When i have 300lvl i no have VIP and i must buy
 
the script

Here's the scripts if you need help how put them in just tell me!
function onAdvance(cid, skill, oldLevel, newLevel)
local pos = {x=1016, y=1021, z=7}---- temple of the town the player will be teleported to when the vip has ended,
if skill == SKILL__LEVEL and newLevel >= 300 and getPlayerStorageValue(cid, 2005) == -1 then
setPlayerStorageValuee(cid, 1001, -1)---- vip storage
setPlayerStorageValuee(cid, 2005, 1)
doTeleportThing(cid, pos)
doSendMagicEffect(pos, CONST_ME_TELEPORT)
doPlayerSendTextMessage(cid, MESSAGE_EVENT_ADVANCE, "You'r vip trail has ended becouse you reached level 300, now go and buy a new one. You've also been teleported back to the main temple!")
end
return true

function onLogin(cid)
if getPlayerStorageValue(cid, 4850) == -1 then
setPlayerStorageValue(cid, 1001, 1)
setPlayerStorageValue(cid, 4850, 1)
doPlayerSendTextMessage(cid, 22, "Welcome " .. getPlayerName(cid) .. " and congratulations to your first login as a reward you will gain vip acces until level 300, Enjoy your stay!")
end
return TRUE
end
 
Back
Top