• 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!

[Request]When PACC end...

Hekan

New Member
Joined
Jun 14, 2008
Messages
94
Reaction score
0
Hello i need script which can help me teleport players to FACC islands when his PACC end.

Example:
WHen player is citizen of ankrahmunt and his pacc end i want teleport him to carlin.
 
You can add an onLogin check...
Code:
if isPremium(cid) == FALSE and isInArray({4,5,6}, getPlayerTown(cid)) == TRUE then
    setPlayerTown(cid, 1)
end

Dunno if it is getPlayerTown and setPlayerTown, just use the functions that will check their hometown xD
 
Back
Top