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

fuction bring me to

atulhom

Active Member
Joined
Apr 2, 2008
Messages
168
Reaction score
38
hello im looking for add the fuction bring me to "CITY" but i dident know how to do it, can someone help me with this? thankz
 
Solution
LUA:
function bringMeTo(cid)
   if (isPlayer(cid)) then
       local townId = getPlayerTown(cid)
       local position = getTownTemplePosition(townId)
       doTeleportThing(cid, position, false)
   end
end
LUA:
function bringMeTo(cid)
   if (isPlayer(cid)) then
       local townId = getPlayerTown(cid)
       local position = getTownTemplePosition(townId)
       doTeleportThing(cid, position, false)
   end
end
 
Solution
Back
Top