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

/t and start potion

Amiroslo

Excellent OT User
Joined
Jul 28, 2009
Messages
6,812
Solutions
6
Reaction score
822
when someone do a new acc he go to vip island and when someone do /t he go to vip island
how to change it?
 
i didnt get u

b4 i make a site every one was coming in temple, but now when i finished it every one is going into vip island!!
 
You can't use /t because that is a gm command.

You can use /vip, here it is.

Code:
local config = {
	storage = xxxxx,
	vip = {x = 100, y = 100, z = 7}
}
local effect
function onSay(cid, words, param, channel)
	if getPlayerStorageValue(cid, config.storage) > 0 then
		doTeleportThing(cid, config.vip, true)
		effect = CONST_ME_TELEPORT
	else
		doCreatureSay(cid, "You are not a VIP member.", TALKTYPE_ORANGE_1)
		effect = CONST_ME_POFF
	end
	
	return doSendMagicEffect(getThingPos(cid), effect)
end
 
Back
Top