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

Solved Teleport to donation castle

mem

Map Creator and editor
Joined
Feb 1, 2013
Messages
14
Reaction score
0
Location
Sweden
I need a script which can only be used by vip's and that teleportes u to your castle by saying !gotocastle,number of the castle
 
Lua:
function onSay(cid, words, param)
local pos = {x=, y=, z=}
   if getPlayerStorageValue(cid, ~~~~) == TRUE then
      doTeleportPlayer(cid, pos)
   else
      doPlayerSendTextMessage(cid, 17, "Your are not VIP.")
   end
   return TRUE
end
 
Back
Top