• 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 Whats wrong with this script?

Ghazer

Member
Joined
Mar 13, 2009
Messages
350
Reaction score
6
Whats wrong with this script?
LUA:
local playername = "Account Manager" ---- Player name

function onLogin(cid)
    local temple = { x = 986, y = 1116, z = 6 }
	if getPlayerName(cid) == playername then
	doTeleportThing(cid, temple)
	doSendMagicEffect(getCreaturePosition(cid), CONST_ME_GIFT_WRAPS) 
	return true
end
 
Last edited:
Back
Top