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

Only VIP can pass.

reaveri

New Member
Joined
Nov 23, 2009
Messages
9
Reaction score
0
Hi again =)
i need [MoveEvent]..
when player [not vip] will step on 'vip ground'.. then he'll
be teleported on the (x: xxxx; y: xxxx; z: xxxx).
It looks like this brigde on rookgard - only premium players can pass there.


regards.
 
LUA:
function onStepIn(cid, item, pos, frompos) 
facc = {x=x,y=y,z=z}
vipstorage = 
if getPlayerStorageValue(cid, vipstorage) <= 0 then
doTeleportThing(cid, facc, TRUE)
end
end
 
or like this:
Code:
function onStepIn(cid, item, position, fromPosition)
	return isPremium(cid) or doTeleportThing(cid, fromPosition, false)
end
 
Quas
On powiedział ze ma byc teleportowany do (x: xxxx; y: xxxx; z: xxxx). Czytac nie umisz ?

He said "teleported to (x: xxxx; y: xxxx; z: xxxx)"
 
Back
Top