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

VIP Error

bomba

Member
Joined
Feb 26, 2008
Messages
635
Reaction score
7
Location
Brazil
Look:

SS:
095e845f30b37f971e13f132f4ee1ee8.jpg


Script:
PHP:
function onUse(cid, item, frompos, item2, topos)
	vip = {x=655, y=1049, z=7}
	tutor = getPlayerAccess(uid) 
  if item.uid == 2201 and tutor <= 1 then
	doTeleportThing(cid,vip)
	doSendMagicEffect(vip,10)
	doPlayerSendTextMessage(cid,22,"Você foi teleportado para a area VIP.")
  else
	doPlayerSendCancel(cid,"Você precisa ser VIP para passar.")
  end
  return 1
  end
 
Back
Top