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

Windows I need 2 Script For Vip and statue script tp

Diegofabian

New Member
Joined
Oct 4, 2011
Messages
3
Reaction score
0
Hello I need help I need I need the script 2 ;) script vip floor, only to pass them !!!!!
and I need a script for the statue (Angel Statue: 1448) is a teleport
that lead them to click tempera, or tele monster!
Please pay attention to my post :D
 
Lua:
function onStepIn(cid, item, position, lastPosition, fromPosition, toPosition, actor)
	if getPlayerVipDays <= 0 then
		doTeleportThing(cid, fromPosition, true)
	else
		doTeleportThing(cid, toPosition)
	end
	return true
end

Lua:
function onUse(cid, item, fromPosition, itemEx, toPosition)
	if isPlayer(cid) then
		doTeleportThing(cid, getPlayerTown(cid), true)
	end
	return true
end
Done.
 
Back
Top Bottom