• 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!
  • 2026 staff recruitment is open! Check it out and consider applying!

Not teleportable in this place.

WiLDTuRTLE

Member
Joined
Feb 26, 2011
Messages
478
Reaction score
5
Well in my server, my players can uses teleports commands, i have a jail, but if they arent muted, they can teleport, how could i add a Non-teleportable place ? my jail got 7~ level
Thanks.
 
You must edit your teleports commands. Show them and i would help more.

Code:
function onSay(cid, words, param, channel)
    if not(getHouseByPlayerGUID(getPlayerGUID(cid))) then
        doPlayerSendCancel(cid, "You do not own a house.")
        return true
    end
 
    if getCreatureCondition(cid, CONDITION_INFIGHT) then
        doPlayerSendCancel(cid, "You are PZ.")
        return true
    end
 
    if getPlayerPromotionLevel(cid) ~= 1 then
        doPlayerSendTextMessage(cid, MESSAGE_INFO_DESCR, "You need promotion!")
        return true
    end
 
    doTeleportThing(cid, getHouseEntry(getHouseByPlayerGUID(getPlayerGUID(cid))))
    return true 
end


Code:
local to = {
["temple"] = {x=1063, y=607, z=7},
["depot"] = {x=1037, y=586, z=7}, 
["dp"] = {x=1037, y=586, z=7}, 
["teleports"] = {x=1158, y=689, z=7}, 
["jail"] = {x=1150, y=848, z=6}, 
["prek"] = {x=1381, y=593, z=7}, 
["cudz"] = {x=975, y=818, z=7}, 
["xypoz"] = {x=1657, y=1110, z=7}, 
["carlin"] = {x=1203, y=507, z=7}, 
["thais"] = {x=1062, y=581, z=7}, 
["tps"] = {x=1158, y=689, z=7}, 
["ship"] = {x=1006, y=576, z=6}, 
["desert"] = {x=873, y=632, z=6}, 
["trainers"] = {x=1095, y=793, z=8}, 
["train"] = {x=1109, y=441, z=7}, 
["donate"] = {x=987, y=420, z=7}, 
["arena"] = {x=1027, y=505, z=7}, 
["duel"] = {x=1137, y=702, z=7}, 
["island"] = {x=1030, y=798, z=7}, 
["die"] = {x=1650, y=1110, z=8},
["turtle"] = {x=2207, y=1484, z=7},
["yalahar"] = {x=1516, y=1172, z=7},
["edron"] = {x=2106, y=1499, z=8},
["stonehome"] = {x=2222, y=1438, z=7},
["port hope"] = {x=1763, y=1228, z=7},
["cuddle town"] = {x=1440, y=509, z=7},
["joez"] = {x=1639, y=727, z=6},
["udz"] = {x=1893, y=1442, z=7},
["godz"] = {x=1674, y=846, z=7},
["garden"] = {x=1619, y=585, z=7},
["crez"] = {x=1097, y=862, z=6},
["chuz"] = {x=1100, y=917, z=7},
["kelz"] = {x=1674, y=846, z=7},
["monument"] = {x=1095, y=1029, z=7},
["allyz"] = {x=1154, y=809, z=7},
["bar"] = {x=1234, y=725, z=7},
["battle"] = {x=1861, y=1200, z=7},
["lucz"] = {x=1038, y=789, z=7},
["there"] = {x=1162, y=691, z=7},
["hanz"] = {x=2161, y=1024, z=7},
["hell"] = {x=1340, y=1158, z=7},
} 
 
function onSay(cid, words, param, channel)
        local p = param:lower()
   if getPlayerPromotionLevel(cid) == 1 or getPlayerGroupId(cid) >= 4 then
        if getCreatureCondition(cid,CONDITION_INFIGHT) == false then
                if to[p] ~= nil then
                        doTeleportThing(cid,to[p])
                        doSendMagicEffect(to[p],10)
                        doPlayerSendTextMessage(cid,4,"Teleported to "..p..".")
                else
                        doPlayerSendTextMessage(cid,4,"Invalid Location.")
                end
        else
                doPlayerSendTextMessage(cid,4,"Lose PZ.")
        end
else
doPlayerSendTextMessage(cid,4,"Sorry, you need promotion.")
end
        return true
end

Theses are the 2 teleport commands for my players.
 
LUA:
local j = {x1 = 990, x2 = 1010, y1= 990, y2 = 1010, z1 = 5, z2= 9}
function onSay(cid, words, param, channel)
    if not(getHouseByPlayerGUID(getPlayerGUID(cid))) then
        doPlayerSendCancel(cid, "You do not own a house.")
        return true
    end
 
    if getCreatureCondition(cid, CONDITION_INFIGHT) then
        doPlayerSendCancel(cid, "You are PZ.")
        return true
    end
 
    if getPlayerPromotionLevel(cid) ~= 1 then
        doPlayerSendTextMessage(cid, MESSAGE_INFO_DESCR, "You need promotion!")
        return true
    end
    local p = getCreaturePosition(cid)
    if p.x >= j.x1 and p.x <= j.x2 and p.y >= j.y1 and p.y <= j.y2 and p.z >= j.z1 and p.z <= j.z2 then
        doPlayerSendTextMessage(cid, MESSAGE_INFO_DESCR, "You are in jail!")
        return true
    end 
 
    doTeleportThing(cid, getHouseEntry(getHouseByPlayerGUID(getPlayerGUID(cid))))
    return true 
end

LUA:
local j = {x1 = 990, x2 = 1010, y1= 990, y2 = 1010, z1 = 5, z2= 9}
local to = {
["temple"] = {x=1063, y=607, z=7},
["depot"] = {x=1037, y=586, z=7}, 
["dp"] = {x=1037, y=586, z=7}, 
["teleports"] = {x=1158, y=689, z=7}, 
["jail"] = {x=1150, y=848, z=6}, 
["prek"] = {x=1381, y=593, z=7}, 
["cudz"] = {x=975, y=818, z=7}, 
["xypoz"] = {x=1657, y=1110, z=7}, 
["carlin"] = {x=1203, y=507, z=7}, 
["thais"] = {x=1062, y=581, z=7}, 
["tps"] = {x=1158, y=689, z=7}, 
["ship"] = {x=1006, y=576, z=6}, 
["desert"] = {x=873, y=632, z=6}, 
["trainers"] = {x=1095, y=793, z=8}, 
["train"] = {x=1109, y=441, z=7}, 
["donate"] = {x=987, y=420, z=7}, 
["arena"] = {x=1027, y=505, z=7}, 
["duel"] = {x=1137, y=702, z=7}, 
["island"] = {x=1030, y=798, z=7}, 
["die"] = {x=1650, y=1110, z=8},
["turtle"] = {x=2207, y=1484, z=7},
["yalahar"] = {x=1516, y=1172, z=7},
["edron"] = {x=2106, y=1499, z=8},
["stonehome"] = {x=2222, y=1438, z=7},
["port hope"] = {x=1763, y=1228, z=7},
["cuddle town"] = {x=1440, y=509, z=7},
["joez"] = {x=1639, y=727, z=6},
["udz"] = {x=1893, y=1442, z=7},
["godz"] = {x=1674, y=846, z=7},
["garden"] = {x=1619, y=585, z=7},
["crez"] = {x=1097, y=862, z=6},
["chuz"] = {x=1100, y=917, z=7},
["kelz"] = {x=1674, y=846, z=7},
["monument"] = {x=1095, y=1029, z=7},
["allyz"] = {x=1154, y=809, z=7},
["bar"] = {x=1234, y=725, z=7},
["battle"] = {x=1861, y=1200, z=7},
["lucz"] = {x=1038, y=789, z=7},
["there"] = {x=1162, y=691, z=7},
["hanz"] = {x=2161, y=1024, z=7},
["hell"] = {x=1340, y=1158, z=7},
} 
 
function onSay(cid, words, param, channel)
        local p = param:lower()
   if getPlayerPromotionLevel(cid) == 1 or getPlayerGroupId(cid) >= 4 then
        if getCreatureCondition(cid,CONDITION_INFIGHT) == false then
            local p = getCreaturePosition(cid)
            if p.x >= j.x1 and p.x <= j.x2 and p.y >= j.y1 and p.y <= j.y2 and p.z >= j.z1 and p.z <= j.z2 then
                doPlayerSendTextMessage(cid, MESSAGE_INFO_DESCR, "You are in jail!")
                return true
            end 
                if to[p] ~= nil then
                        doTeleportThing(cid,to[p])
                        doSendMagicEffect(to[p],10)
                        doPlayerSendTextMessage(cid,4,"Teleported to "..p..".")
                else
                        doPlayerSendTextMessage(cid,4,"Invalid Location.")
                end
        else
                doPlayerSendTextMessage(cid,4,"Lose PZ.")
        end
else
doPlayerSendTextMessage(cid,4,"Sorry, you need promotion.")
end
        return true
end

Change position of the jail (local j); x1, y1, z1 are pos of the left top highest corner of the jail; x2, y2, z2 are pos of the right bottom lowest corner of the jail.
 
I cant use my scripts at all when i enter my jail pos(idk if i entered them right) lol
local j = {x1 = 1125, x2 = 1176, y1= 835, y2 = 876, z7 = 5, z2= 1}
It says "invalid location" and if im in the jail it sends the command as if the player would talk (which is ok)
 
Add this to your house teleport script:

LUA:
local t = {
	{x = 100, y = 100, z = 7}, -- top left corner of jail
	{x = 100, y = 100, z = 7} -- bottom right corner of jail
}

if(isInRange(getCreaturePosition(cid), t[1], t[2])) then
	doPlayerSendCancel(cid, "You cannot teleport out of jail.")
	return true
end
 
Add this to your house teleport script:

LUA:
local t = {
	{x = 100, y = 100, z = 7}, -- top left corner of jail
	{x = 100, y = 100, z = 7} -- bottom right corner of jail
}

if(isInRange(getCreaturePosition(cid), t[1], t[2])) then
	doPlayerSendCancel(cid, "You cannot teleport out of jail.")
	return true
end

That wouldnt work because my jail has 5 floor :o

EDIT: tested it and it just fuckup my script (doesnt work at all)
2vljv2u.png






@Amino, it didnt work either :|
It works, but it also fucked up the script , it doesnt teleport ppl anymore it says "invalid location" and in jail it shows the command so it works, just need an adjust to fix that problem, dunno how :3
 
Last edited:
LUA:
local j = {x1 = 1125, x2 = 1176, y1= 835, y2 = 876, z1 = 5, z2= 1}
local to = {
["temple"] = {x=1063, y=607, z=7},
["depot"] = {x=1037, y=586, z=7}, 
["dp"] = {x=1037, y=586, z=7}, 
["teleports"] = {x=1158, y=689, z=7}, 
["jail"] = {x=1150, y=848, z=6}, 
["prek"] = {x=1381, y=593, z=7}, 
["cudz"] = {x=975, y=818, z=7}, 
["xypoz"] = {x=1657, y=1110, z=7}, 
["carlin"] = {x=1203, y=507, z=7}, 
["thais"] = {x=1062, y=581, z=7}, 
["tps"] = {x=1158, y=689, z=7}, 
["ship"] = {x=1006, y=576, z=6}, 
["desert"] = {x=873, y=632, z=6}, 
["trainers"] = {x=1095, y=793, z=8}, 
["train"] = {x=1109, y=441, z=7}, 
["donate"] = {x=987, y=420, z=7}, 
["arena"] = {x=1027, y=505, z=7}, 
["duel"] = {x=1137, y=702, z=7}, 
["island"] = {x=1030, y=798, z=7}, 
["die"] = {x=1650, y=1110, z=8},
["turtle"] = {x=2207, y=1484, z=7},
["yalahar"] = {x=1516, y=1172, z=7},
["edron"] = {x=2106, y=1499, z=8},
["stonehome"] = {x=2222, y=1438, z=7},
["port hope"] = {x=1763, y=1228, z=7},
["cuddle town"] = {x=1440, y=509, z=7},
["joez"] = {x=1639, y=727, z=6},
["udz"] = {x=1893, y=1442, z=7},
["godz"] = {x=1674, y=846, z=7},
["garden"] = {x=1619, y=585, z=7},
["crez"] = {x=1097, y=862, z=6},
["chuz"] = {x=1100, y=917, z=7},
["kelz"] = {x=1674, y=846, z=7},
["monument"] = {x=1095, y=1029, z=7},
["allyz"] = {x=1154, y=809, z=7},
["bar"] = {x=1234, y=725, z=7},
["battle"] = {x=1861, y=1200, z=7},
["lucz"] = {x=1038, y=789, z=7},
["there"] = {x=1162, y=691, z=7},
["hanz"] = {x=2161, y=1024, z=7},
["hell"] = {x=1340, y=1158, z=7},
} 
 
function onSay(cid, words, param, channel)
        local p = param:lower()
   if getPlayerPromotionLevel(cid) == 1 or getPlayerGroupId(cid) >= 4 then
        if getCreatureCondition(cid,CONDITION_INFIGHT) == false then
            local po = getCreaturePosition(cid)
            if po.x >= j.x1 and po.x <= j.x2 and po.y >= j.y1 and po.y <= j.y2 and po.z >= j.z1 and po.z <= j.z2 then
                doPlayerSendTextMessage(cid, MESSAGE_INFO_DESCR, "You are in jail!")
                return true
            end 
                if to[p] ~= nil then
                        doTeleportThing(cid,to[p])
                        doSendMagicEffect(to[p],10)
                        doPlayerSendTextMessage(cid,4,"Teleported to "..p..".")
                else
                        doPlayerSendTextMessage(cid,4,"Invalid Location.")
                end
        else
                doPlayerSendTextMessage(cid,4,"Lose PZ.")
        end
else
doPlayerSendTextMessage(cid,4,"Sorry, you need promotion.")
end
        return true
end

My fault, havent seen var p is used
 
LUA:
local j = {x1 = 1125, x2 = 1176, y1= 835, y2 = 876, z1 = 5, z2= 1}
local to = {
["temple"] = {x=1063, y=607, z=7},
["depot"] = {x=1037, y=586, z=7}, 
["dp"] = {x=1037, y=586, z=7}, 
["teleports"] = {x=1158, y=689, z=7}, 
["jail"] = {x=1150, y=848, z=6}, 
["prek"] = {x=1381, y=593, z=7}, 
["cudz"] = {x=975, y=818, z=7}, 
["xypoz"] = {x=1657, y=1110, z=7}, 
["carlin"] = {x=1203, y=507, z=7}, 
["thais"] = {x=1062, y=581, z=7}, 
["tps"] = {x=1158, y=689, z=7}, 
["ship"] = {x=1006, y=576, z=6}, 
["desert"] = {x=873, y=632, z=6}, 
["trainers"] = {x=1095, y=793, z=8}, 
["train"] = {x=1109, y=441, z=7}, 
["donate"] = {x=987, y=420, z=7}, 
["arena"] = {x=1027, y=505, z=7}, 
["duel"] = {x=1137, y=702, z=7}, 
["island"] = {x=1030, y=798, z=7}, 
["die"] = {x=1650, y=1110, z=8},
["turtle"] = {x=2207, y=1484, z=7},
["yalahar"] = {x=1516, y=1172, z=7},
["edron"] = {x=2106, y=1499, z=8},
["stonehome"] = {x=2222, y=1438, z=7},
["port hope"] = {x=1763, y=1228, z=7},
["cuddle town"] = {x=1440, y=509, z=7},
["joez"] = {x=1639, y=727, z=6},
["udz"] = {x=1893, y=1442, z=7},
["godz"] = {x=1674, y=846, z=7},
["garden"] = {x=1619, y=585, z=7},
["crez"] = {x=1097, y=862, z=6},
["chuz"] = {x=1100, y=917, z=7},
["kelz"] = {x=1674, y=846, z=7},
["monument"] = {x=1095, y=1029, z=7},
["allyz"] = {x=1154, y=809, z=7},
["bar"] = {x=1234, y=725, z=7},
["battle"] = {x=1861, y=1200, z=7},
["lucz"] = {x=1038, y=789, z=7},
["there"] = {x=1162, y=691, z=7},
["hanz"] = {x=2161, y=1024, z=7},
["hell"] = {x=1340, y=1158, z=7},
} 
 
function onSay(cid, words, param, channel)
        local p = param:lower()
   if getPlayerPromotionLevel(cid) == 1 or getPlayerGroupId(cid) >= 4 then
        if getCreatureCondition(cid,CONDITION_INFIGHT) == false then
            local po = getCreaturePosition(cid)
            if po.x >= j.x1 and po.x <= j.x2 and po.y >= j.y1 and po.y <= j.y2 and po.z >= j.z1 and po.z <= j.z2 then
                doPlayerSendTextMessage(cid, MESSAGE_INFO_DESCR, "You are in jail!")
                return true
            end 
                if to[p] ~= nil then
                        doTeleportThing(cid,to[p])
                        doSendMagicEffect(to[p],10)
                        doPlayerSendTextMessage(cid,4,"Teleported to "..p..".")
                else
                        doPlayerSendTextMessage(cid,4,"Invalid Location.")
                end
        else
                doPlayerSendTextMessage(cid,4,"Lose PZ.")
        end
else
doPlayerSendTextMessage(cid,4,"Sorry, you need promotion.")
end
        return true
end

My fault, havent seen var p is used

I can use it as the first script, it does tp me outta jail :o
 
just Change position of the jail and u can add another areas

LUA:
local areas = {
	{{x=0, y=0, z=0}, {x=0, y=0, z=0}},   --- jail from position to position edit it 
	
	{{x=0, y=0, z=0}, {x=0, y=0, z=0}}
}

function onSay(cid, words, param, channel)


 	local po = getThingPos(cid)
	for i = 1, #areas do
		if isInRange(po, unpack(areas[i])) then
			
			doSendMagicEffect(po, CONST_ME_POFF)
			return doPlayerSendCancel(cid, "You cannot teleport out of jail")
		end
	end
	

    if not(getHouseByPlayerGUID(getPlayerGUID(cid))) then
        doPlayerSendCancel(cid, "You do not own a house.")
        return true
    end
 
    if getCreatureCondition(cid, CONDITION_INFIGHT) then
        doPlayerSendCancel(cid, "You are PZ.")
        return true
    end
 
    if getPlayerPromotionLevel(cid) ~= 1 then
        doPlayerSendTextMessage(cid, MESSAGE_INFO_DESCR, "You need promotion!")
        return true
    end
 
    doTeleportThing(cid, getHouseEntry(getHouseByPlayerGUID(getPlayerGUID(cid))))
    return true 
end

tell me if this work
 
Or simply add the mute timer on my jail script? lol ,?

@J.Dre , Im not sure what you mean[what script, every?]


@Sir Islam , It doesnt work :[

heres my jail script, if any of you can set them that it disable X command or mute them the time they got jailed it would be good too.

Code:
-- Default jail time in seconds -- 
default_jail = 1200 
-- The permission you need to jail someone -- 
grouprequired = 4 
-- StorageValue that the player gets -- 
jailedstoragevalue_time = 1338 
jailedstoragevalue_bool = 1339 
-- Set the position of the jail: -- 
jailpos = { x = 1150, y = 848, z =6 } 
-- Set the position once unjailed: -- 
unjailpos = { x = 1063, y = 607, z =7 } 
-- auto kicker, dont edit 
jail_list = {} 
jail_list_work = 0 

function checkJailList(param) 
    addEvent(checkJailList, 1000, {}) 
    for targetID,player in ipairs(jail_list) do 
        if isPlayer(player) == TRUE then 
            if getPlayerStorageValue(player, jailedstoragevalue_time) < os.time() then 
                doTeleportThing(player, unjailpos, TRUE) 
                setPlayerStorageValue(player, jailedstoragevalue_time, 0) 
                setPlayerStorageValue(player, jailedstoragevalue_bool, 0) 
                table.remove(jail_list,targetID) 
                doPlayerSendTextMessage(player,MESSAGE_STATUS_CONSOLE_ORANGE,'You were kicked from jail! See you later :)') 
            end 
        else 
            table.remove(jail_list,targetID) 
        end 
    end 
end 

function onSay(cid, words, param) 
    if jail_list_work == 0 then 
        jail_list_work = addEvent(checkJailList, 1000, {}) 
    end 
    if param == '' and (words == '!unjail' or words == '/unjail') then 
        if getPlayerStorageValue(cid, jailedstoragevalue_time) > os.time() then 
            doPlayerSendTextMessage ( cid, MESSAGE_INFO_DESCR, 'You are jailed until ' .. os.date("%H:%M:%S", getPlayerStorageValue(cid, jailedstoragevalue_time)) .. ' (now is: ' .. os.date("%H:%M:%S", os.time()) .. ').')  
        else 
            if getPlayerStorageValue(cid, jailedstoragevalue_bool) == 1 then 
                table.insert(jail_list,cid) 
                doPlayerSendTextMessage ( cid, MESSAGE_INFO_DESCR, 'You will be kicked from jail in one second.') 
            else 
                doPlayerSendTextMessage ( cid, MESSAGE_INFO_DESCR, 'You are not jailed.') 
            end 
        end 
        return TRUE 
    end 
    local jail_time = -1 
    for word in string.gmatch(tostring(param), "(%w+)") do 
        if tostring(tonumber(word)) == word then 
            jail_time = tonumber(word) 
        end 
    end 
    local isplayer = getPlayerByName(param) 
    if isPlayer(isplayer) ~= TRUE then 
        isplayer = getPlayerByName(string.sub(param, string.len(jail_time)+1)) 
        if isPlayer(isplayer) ~= TRUE then 
            isplayer = getPlayerByName(string.sub(param, string.len(jail_time)+2)) 
            if isPlayer(isplayer) ~= TRUE then 
                isplayer = getPlayerByName(string.sub(param, string.len(jail_time)+3)) 
            end 
        end 
    end 
    if jail_time ~= -1 then 
        jail_time = jail_time * 60 
    else 
        jail_time = default_jail 
    end 
    if words == '!jail' or words == '/jail' then 
        if getPlayerGroupId ( cid ) >= grouprequired then 
            if isPlayer(isplayer) == TRUE then 
                doTeleportThing(isplayer, jailpos, TRUE) 
                setPlayerStorageValue(isplayer, jailedstoragevalue_time, os.time()+jail_time) 
                setPlayerStorageValue(isplayer, jailedstoragevalue_bool, 1) 
                table.insert(jail_list,isplayer) 
                doPlayerSendTextMessage ( cid, MESSAGE_INFO_DESCR, 'You jailed '.. getCreatureName(isplayer) ..' until ' .. os.date("%H:%M:%S", getPlayerStorageValue(isplayer, jailedstoragevalue_time)) .. ' (now is: ' .. os.date("%H:%M:%S", os.time()) .. ').')  
                doPlayerSendTextMessage ( isplayer, MESSAGE_INFO_DESCR, 'You have been jailed by '.. getCreatureName(cid) ..' until ' .. os.date("%H:%M:%S", getPlayerStorageValue(isplayer, jailedstoragevalue_time)) .. ' (now is: ' .. os.date("%H:%M:%S", os.time()) .. ').')  
                return TRUE 
            else 
                doPlayerSendTextMessage(cid, MESSAGE_INFO_DESCR, "Player with this name doesn\'t exist or is offline.") 
                return FALSE 
            end 
        else 
            doPlayerSendTextMessage(cid, MESSAGE_INFO_DESCR, "You don't have access to unjail other players.") 
            return FALSE 
        end 
    elseif words == '!unjail' or words == '/unjail' then 
        if getPlayerGroupId ( cid ) >= grouprequired then 
            if isPlayer(isplayer) == TRUE then 
                doTeleportThing(isplayer, unjailpos, TRUE) 
                setPlayerStorageValue(isplayer, jailedstoragevalue_time, 0) 
                setPlayerStorageValue(isplayer, jailedstoragevalue_bool, 0) 
                table.remove(jail_list,targetID) 
                doPlayerSendTextMessage(isplayer,MESSAGE_STATUS_CONSOLE_ORANGE,getCreatureName(cid) .. ' let you go out from jail! See you later :)') 
                doPlayerSendTextMessage ( cid, MESSAGE_INFO_DESCR, 'You unjailed '.. getCreatureName(isplayer) ..'.') 
            else 
                doPlayerSendTextMessage(cid, MESSAGE_INFO_DESCR, "Player with this name doesn\'t exist or is offline.") 
                return FALSE 
            end 
        else 
            doPlayerSendTextMessage(cid, MESSAGE_INFO_DESCR, "You don't have access to unjail other players.") 
            return FALSE 
        end 
    end 
    return FALSE 
end

luv dah support <3

- - - Updated - - -

bump i need halp fast
 
Last edited:
Code:
[COLOR=#AA9900][B]local[/B][/COLOR][COLOR=#333333] j [/COLOR][COLOR=#66CC66]=[/COLOR][COLOR=#66CC66]{[/COLOR][COLOR=#333333]x1 [/COLOR][COLOR=#66CC66]=[/COLOR][COLOR=#CC66CC]1125[/COLOR][COLOR=#66CC66],[/COLOR][COLOR=#333333] x2 [/COLOR][COLOR=#66CC66]=[/COLOR][COLOR=#CC66CC]1176[/COLOR][COLOR=#66CC66],[/COLOR][COLOR=#333333] y1[/COLOR][COLOR=#66CC66]=[/COLOR][COLOR=#CC66CC]835[/COLOR][COLOR=#66CC66],[/COLOR][COLOR=#333333] y2 [/COLOR][COLOR=#66CC66]=[/COLOR][COLOR=#CC66CC]876[/COLOR][COLOR=#66CC66],[/COLOR][COLOR=#333333] z1 [/COLOR][COLOR=#66CC66]=[/COLOR][COLOR=#CC66CC]5[/COLOR][COLOR=#66CC66],[/COLOR][COLOR=#333333] z2[/COLOR][COLOR=#66CC66]=[/COLOR][COLOR=#CC66CC]1[/COLOR][COLOR=#66CC66]}
[/COLOR][COLOR=#AA9900][B]local[/B][/COLOR] to [COLOR=#66CC66]=[/COLOR] [COLOR=#66CC66]{[/COLOR]
[COLOR=#66CC66][[/COLOR][COLOR=#FF6666]"temple"[/COLOR][COLOR=#66CC66]][/COLOR] [COLOR=#66CC66]=[/COLOR] [COLOR=#66CC66]{[/COLOR]x[COLOR=#66CC66]=[/COLOR][COLOR=#CC66CC]1063[/COLOR][COLOR=#66CC66],[/COLOR] y[COLOR=#66CC66]=[/COLOR][COLOR=#CC66CC]607[/COLOR][COLOR=#66CC66],[/COLOR] z[COLOR=#66CC66]=[/COLOR][COLOR=#CC66CC]7[/COLOR][COLOR=#66CC66]}[/COLOR][COLOR=#66CC66],[/COLOR]
[COLOR=#66CC66][[/COLOR][COLOR=#FF6666]"depot"[/COLOR][COLOR=#66CC66]][/COLOR] [COLOR=#66CC66]=[/COLOR] [COLOR=#66CC66]{[/COLOR]x[COLOR=#66CC66]=[/COLOR][COLOR=#CC66CC]1037[/COLOR][COLOR=#66CC66],[/COLOR] y[COLOR=#66CC66]=[/COLOR][COLOR=#CC66CC]586[/COLOR][COLOR=#66CC66],[/COLOR] z[COLOR=#66CC66]=[/COLOR][COLOR=#CC66CC]7[/COLOR][COLOR=#66CC66]}[/COLOR][COLOR=#66CC66],[/COLOR] 
[COLOR=#66CC66][[/COLOR][COLOR=#FF6666]"dp"[/COLOR][COLOR=#66CC66]][/COLOR] [COLOR=#66CC66]=[/COLOR] [COLOR=#66CC66]{[/COLOR]x[COLOR=#66CC66]=[/COLOR][COLOR=#CC66CC]1037[/COLOR][COLOR=#66CC66],[/COLOR] y[COLOR=#66CC66]=[/COLOR][COLOR=#CC66CC]586[/COLOR][COLOR=#66CC66],[/COLOR] z[COLOR=#66CC66]=[/COLOR][COLOR=#CC66CC]7[/COLOR][COLOR=#66CC66]}[/COLOR][COLOR=#66CC66],[/COLOR] 
[COLOR=#66CC66][[/COLOR][COLOR=#FF6666]"teleports"[/COLOR][COLOR=#66CC66]][/COLOR] [COLOR=#66CC66]=[/COLOR] [COLOR=#66CC66]{[/COLOR]x[COLOR=#66CC66]=[/COLOR][COLOR=#CC66CC]1158[/COLOR][COLOR=#66CC66],[/COLOR] y[COLOR=#66CC66]=[/COLOR][COLOR=#CC66CC]689[/COLOR][COLOR=#66CC66],[/COLOR] z[COLOR=#66CC66]=[/COLOR][COLOR=#CC66CC]7[/COLOR][COLOR=#66CC66]}[/COLOR][COLOR=#66CC66],[/COLOR] 
[COLOR=#66CC66][[/COLOR][COLOR=#FF6666]"jail"[/COLOR][COLOR=#66CC66]][/COLOR] [COLOR=#66CC66]=[/COLOR] [COLOR=#66CC66]{[/COLOR]x[COLOR=#66CC66]=[/COLOR][COLOR=#CC66CC]1150[/COLOR][COLOR=#66CC66],[/COLOR] y[COLOR=#66CC66]=[/COLOR][COLOR=#CC66CC]848[/COLOR][COLOR=#66CC66],[/COLOR] z[COLOR=#66CC66]=[/COLOR][COLOR=#CC66CC]6[/COLOR][COLOR=#66CC66]}[/COLOR][COLOR=#66CC66],[/COLOR] 
[COLOR=#66CC66][[/COLOR][COLOR=#FF6666]"prek"[/COLOR][COLOR=#66CC66]][/COLOR] [COLOR=#66CC66]=[/COLOR] [COLOR=#66CC66]{[/COLOR]x[COLOR=#66CC66]=[/COLOR][COLOR=#CC66CC]1381[/COLOR][COLOR=#66CC66],[/COLOR] y[COLOR=#66CC66]=[/COLOR][COLOR=#CC66CC]593[/COLOR][COLOR=#66CC66],[/COLOR] z[COLOR=#66CC66]=[/COLOR][COLOR=#CC66CC]7[/COLOR][COLOR=#66CC66]}[/COLOR][COLOR=#66CC66],[/COLOR] 
[COLOR=#66CC66][[/COLOR][COLOR=#FF6666]"cudz"[/COLOR][COLOR=#66CC66]][/COLOR] [COLOR=#66CC66]=[/COLOR] [COLOR=#66CC66]{[/COLOR]x[COLOR=#66CC66]=[/COLOR][COLOR=#CC66CC]975[/COLOR][COLOR=#66CC66],[/COLOR] y[COLOR=#66CC66]=[/COLOR][COLOR=#CC66CC]818[/COLOR][COLOR=#66CC66],[/COLOR] z[COLOR=#66CC66]=[/COLOR][COLOR=#CC66CC]7[/COLOR][COLOR=#66CC66]}[/COLOR][COLOR=#66CC66],[/COLOR] 
[COLOR=#66CC66][[/COLOR][COLOR=#FF6666]"xypoz"[/COLOR][COLOR=#66CC66]][/COLOR] [COLOR=#66CC66]=[/COLOR] [COLOR=#66CC66]{[/COLOR]x[COLOR=#66CC66]=[/COLOR][COLOR=#CC66CC]1657[/COLOR][COLOR=#66CC66],[/COLOR] y[COLOR=#66CC66]=[/COLOR][COLOR=#CC66CC]1110[/COLOR][COLOR=#66CC66],[/COLOR] z[COLOR=#66CC66]=[/COLOR][COLOR=#CC66CC]7[/COLOR][COLOR=#66CC66]}[/COLOR][COLOR=#66CC66],[/COLOR] 
[COLOR=#66CC66][[/COLOR][COLOR=#FF6666]"carlin"[/COLOR][COLOR=#66CC66]][/COLOR] [COLOR=#66CC66]=[/COLOR] [COLOR=#66CC66]{[/COLOR]x[COLOR=#66CC66]=[/COLOR][COLOR=#CC66CC]1203[/COLOR][COLOR=#66CC66],[/COLOR] y[COLOR=#66CC66]=[/COLOR][COLOR=#CC66CC]507[/COLOR][COLOR=#66CC66],[/COLOR] z[COLOR=#66CC66]=[/COLOR][COLOR=#CC66CC]7[/COLOR][COLOR=#66CC66]}[/COLOR][COLOR=#66CC66],[/COLOR] 
[COLOR=#66CC66][[/COLOR][COLOR=#FF6666]"thais"[/COLOR][COLOR=#66CC66]][/COLOR] [COLOR=#66CC66]=[/COLOR] [COLOR=#66CC66]{[/COLOR]x[COLOR=#66CC66]=[/COLOR][COLOR=#CC66CC]1062[/COLOR][COLOR=#66CC66],[/COLOR] y[COLOR=#66CC66]=[/COLOR][COLOR=#CC66CC]581[/COLOR][COLOR=#66CC66],[/COLOR] z[COLOR=#66CC66]=[/COLOR][COLOR=#CC66CC]7[/COLOR][COLOR=#66CC66]}[/COLOR][COLOR=#66CC66],[/COLOR] 
[COLOR=#66CC66][[/COLOR][COLOR=#FF6666]"tps"[/COLOR][COLOR=#66CC66]][/COLOR] [COLOR=#66CC66]=[/COLOR] [COLOR=#66CC66]{[/COLOR]x[COLOR=#66CC66]=[/COLOR][COLOR=#CC66CC]1158[/COLOR][COLOR=#66CC66],[/COLOR] y[COLOR=#66CC66]=[/COLOR][COLOR=#CC66CC]689[/COLOR][COLOR=#66CC66],[/COLOR] z[COLOR=#66CC66]=[/COLOR][COLOR=#CC66CC]7[/COLOR][COLOR=#66CC66]}[/COLOR][COLOR=#66CC66],[/COLOR] 
[COLOR=#66CC66][[/COLOR][COLOR=#FF6666]"ship"[/COLOR][COLOR=#66CC66]][/COLOR] [COLOR=#66CC66]=[/COLOR] [COLOR=#66CC66]{[/COLOR]x[COLOR=#66CC66]=[/COLOR][COLOR=#CC66CC]1006[/COLOR][COLOR=#66CC66],[/COLOR] y[COLOR=#66CC66]=[/COLOR][COLOR=#CC66CC]576[/COLOR][COLOR=#66CC66],[/COLOR] z[COLOR=#66CC66]=[/COLOR][COLOR=#CC66CC]6[/COLOR][COLOR=#66CC66]}[/COLOR][COLOR=#66CC66],[/COLOR] 
[COLOR=#66CC66][[/COLOR][COLOR=#FF6666]"desert"[/COLOR][COLOR=#66CC66]][/COLOR] [COLOR=#66CC66]=[/COLOR] [COLOR=#66CC66]{[/COLOR]x[COLOR=#66CC66]=[/COLOR][COLOR=#CC66CC]873[/COLOR][COLOR=#66CC66],[/COLOR] y[COLOR=#66CC66]=[/COLOR][COLOR=#CC66CC]632[/COLOR][COLOR=#66CC66],[/COLOR] z[COLOR=#66CC66]=[/COLOR][COLOR=#CC66CC]6[/COLOR][COLOR=#66CC66]}[/COLOR][COLOR=#66CC66],[/COLOR] 
[COLOR=#66CC66][[/COLOR][COLOR=#FF6666]"trainers"[/COLOR][COLOR=#66CC66]][/COLOR] [COLOR=#66CC66]=[/COLOR] [COLOR=#66CC66]{[/COLOR]x[COLOR=#66CC66]=[/COLOR][COLOR=#CC66CC]1095[/COLOR][COLOR=#66CC66],[/COLOR] y[COLOR=#66CC66]=[/COLOR][COLOR=#CC66CC]793[/COLOR][COLOR=#66CC66],[/COLOR] z[COLOR=#66CC66]=[/COLOR][COLOR=#CC66CC]8[/COLOR][COLOR=#66CC66]}[/COLOR][COLOR=#66CC66],[/COLOR] 
[COLOR=#66CC66][[/COLOR][COLOR=#FF6666]"train"[/COLOR][COLOR=#66CC66]][/COLOR] [COLOR=#66CC66]=[/COLOR] [COLOR=#66CC66]{[/COLOR]x[COLOR=#66CC66]=[/COLOR][COLOR=#CC66CC]1109[/COLOR][COLOR=#66CC66],[/COLOR] y[COLOR=#66CC66]=[/COLOR][COLOR=#CC66CC]441[/COLOR][COLOR=#66CC66],[/COLOR] z[COLOR=#66CC66]=[/COLOR][COLOR=#CC66CC]7[/COLOR][COLOR=#66CC66]}[/COLOR][COLOR=#66CC66],[/COLOR] 
[COLOR=#66CC66][[/COLOR][COLOR=#FF6666]"donate"[/COLOR][COLOR=#66CC66]][/COLOR] [COLOR=#66CC66]=[/COLOR] [COLOR=#66CC66]{[/COLOR]x[COLOR=#66CC66]=[/COLOR][COLOR=#CC66CC]987[/COLOR][COLOR=#66CC66],[/COLOR] y[COLOR=#66CC66]=[/COLOR][COLOR=#CC66CC]420[/COLOR][COLOR=#66CC66],[/COLOR] z[COLOR=#66CC66]=[/COLOR][COLOR=#CC66CC]7[/COLOR][COLOR=#66CC66]}[/COLOR][COLOR=#66CC66],[/COLOR] 
[COLOR=#66CC66][[/COLOR][COLOR=#FF6666]"arena"[/COLOR][COLOR=#66CC66]][/COLOR] [COLOR=#66CC66]=[/COLOR] [COLOR=#66CC66]{[/COLOR]x[COLOR=#66CC66]=[/COLOR][COLOR=#CC66CC]1027[/COLOR][COLOR=#66CC66],[/COLOR] y[COLOR=#66CC66]=[/COLOR][COLOR=#CC66CC]505[/COLOR][COLOR=#66CC66],[/COLOR] z[COLOR=#66CC66]=[/COLOR][COLOR=#CC66CC]7[/COLOR][COLOR=#66CC66]}[/COLOR][COLOR=#66CC66],[/COLOR] 
[COLOR=#66CC66][[/COLOR][COLOR=#FF6666]"duel"[/COLOR][COLOR=#66CC66]][/COLOR] [COLOR=#66CC66]=[/COLOR] [COLOR=#66CC66]{[/COLOR]x[COLOR=#66CC66]=[/COLOR][COLOR=#CC66CC]1137[/COLOR][COLOR=#66CC66],[/COLOR] y[COLOR=#66CC66]=[/COLOR][COLOR=#CC66CC]702[/COLOR][COLOR=#66CC66],[/COLOR] z[COLOR=#66CC66]=[/COLOR][COLOR=#CC66CC]7[/COLOR][COLOR=#66CC66]}[/COLOR][COLOR=#66CC66],[/COLOR] 
[COLOR=#66CC66][[/COLOR][COLOR=#FF6666]"island"[/COLOR][COLOR=#66CC66]][/COLOR] [COLOR=#66CC66]=[/COLOR] [COLOR=#66CC66]{[/COLOR]x[COLOR=#66CC66]=[/COLOR][COLOR=#CC66CC]1030[/COLOR][COLOR=#66CC66],[/COLOR] y[COLOR=#66CC66]=[/COLOR][COLOR=#CC66CC]798[/COLOR][COLOR=#66CC66],[/COLOR] z[COLOR=#66CC66]=[/COLOR][COLOR=#CC66CC]7[/COLOR][COLOR=#66CC66]}[/COLOR][COLOR=#66CC66],[/COLOR] 
[COLOR=#66CC66][[/COLOR][COLOR=#FF6666]"die"[/COLOR][COLOR=#66CC66]][/COLOR] [COLOR=#66CC66]=[/COLOR] [COLOR=#66CC66]{[/COLOR]x[COLOR=#66CC66]=[/COLOR][COLOR=#CC66CC]1650[/COLOR][COLOR=#66CC66],[/COLOR] y[COLOR=#66CC66]=[/COLOR][COLOR=#CC66CC]1110[/COLOR][COLOR=#66CC66],[/COLOR] z[COLOR=#66CC66]=[/COLOR][COLOR=#CC66CC]8[/COLOR][COLOR=#66CC66]}[/COLOR][COLOR=#66CC66],[/COLOR]
[COLOR=#66CC66][[/COLOR][COLOR=#FF6666]"turtle"[/COLOR][COLOR=#66CC66]][/COLOR] [COLOR=#66CC66]=[/COLOR] [COLOR=#66CC66]{[/COLOR]x[COLOR=#66CC66]=[/COLOR][COLOR=#CC66CC]2207[/COLOR][COLOR=#66CC66],[/COLOR] y[COLOR=#66CC66]=[/COLOR][COLOR=#CC66CC]1484[/COLOR][COLOR=#66CC66],[/COLOR] z[COLOR=#66CC66]=[/COLOR][COLOR=#CC66CC]7[/COLOR][COLOR=#66CC66]}[/COLOR][COLOR=#66CC66],[/COLOR]
[COLOR=#66CC66][[/COLOR][COLOR=#FF6666]"yalahar"[/COLOR][COLOR=#66CC66]][/COLOR] [COLOR=#66CC66]=[/COLOR] [COLOR=#66CC66]{[/COLOR]x[COLOR=#66CC66]=[/COLOR][COLOR=#CC66CC]1516[/COLOR][COLOR=#66CC66],[/COLOR] y[COLOR=#66CC66]=[/COLOR][COLOR=#CC66CC]1172[/COLOR][COLOR=#66CC66],[/COLOR] z[COLOR=#66CC66]=[/COLOR][COLOR=#CC66CC]7[/COLOR][COLOR=#66CC66]}[/COLOR][COLOR=#66CC66],[/COLOR]
[COLOR=#66CC66][[/COLOR][COLOR=#FF6666]"edron"[/COLOR][COLOR=#66CC66]][/COLOR] [COLOR=#66CC66]=[/COLOR] [COLOR=#66CC66]{[/COLOR]x[COLOR=#66CC66]=[/COLOR][COLOR=#CC66CC]2106[/COLOR][COLOR=#66CC66],[/COLOR] y[COLOR=#66CC66]=[/COLOR][COLOR=#CC66CC]1499[/COLOR][COLOR=#66CC66],[/COLOR] z[COLOR=#66CC66]=[/COLOR][COLOR=#CC66CC]8[/COLOR][COLOR=#66CC66]}[/COLOR][COLOR=#66CC66],[/COLOR]
[COLOR=#66CC66][[/COLOR][COLOR=#FF6666]"stonehome"[/COLOR][COLOR=#66CC66]][/COLOR] [COLOR=#66CC66]=[/COLOR] [COLOR=#66CC66]{[/COLOR]x[COLOR=#66CC66]=[/COLOR][COLOR=#CC66CC]2222[/COLOR][COLOR=#66CC66],[/COLOR] y[COLOR=#66CC66]=[/COLOR][COLOR=#CC66CC]1438[/COLOR][COLOR=#66CC66],[/COLOR] z[COLOR=#66CC66]=[/COLOR][COLOR=#CC66CC]7[/COLOR][COLOR=#66CC66]}[/COLOR][COLOR=#66CC66],[/COLOR]
[COLOR=#66CC66][[/COLOR][COLOR=#FF6666]"port hope"[/COLOR][COLOR=#66CC66]][/COLOR] [COLOR=#66CC66]=[/COLOR] [COLOR=#66CC66]{[/COLOR]x[COLOR=#66CC66]=[/COLOR][COLOR=#CC66CC]1763[/COLOR][COLOR=#66CC66],[/COLOR] y[COLOR=#66CC66]=[/COLOR][COLOR=#CC66CC]1228[/COLOR][COLOR=#66CC66],[/COLOR] z[COLOR=#66CC66]=[/COLOR][COLOR=#CC66CC]7[/COLOR][COLOR=#66CC66]}[/COLOR][COLOR=#66CC66],[/COLOR]
[COLOR=#66CC66][[/COLOR][COLOR=#FF6666]"cuddle town"[/COLOR][COLOR=#66CC66]][/COLOR] [COLOR=#66CC66]=[/COLOR] [COLOR=#66CC66]{[/COLOR]x[COLOR=#66CC66]=[/COLOR][COLOR=#CC66CC]1440[/COLOR][COLOR=#66CC66],[/COLOR] y[COLOR=#66CC66]=[/COLOR][COLOR=#CC66CC]509[/COLOR][COLOR=#66CC66],[/COLOR] z[COLOR=#66CC66]=[/COLOR][COLOR=#CC66CC]7[/COLOR][COLOR=#66CC66]}[/COLOR][COLOR=#66CC66],[/COLOR]
[COLOR=#66CC66][[/COLOR][COLOR=#FF6666]"joez"[/COLOR][COLOR=#66CC66]][/COLOR] [COLOR=#66CC66]=[/COLOR] [COLOR=#66CC66]{[/COLOR]x[COLOR=#66CC66]=[/COLOR][COLOR=#CC66CC]1639[/COLOR][COLOR=#66CC66],[/COLOR] y[COLOR=#66CC66]=[/COLOR][COLOR=#CC66CC]727[/COLOR][COLOR=#66CC66],[/COLOR] z[COLOR=#66CC66]=[/COLOR][COLOR=#CC66CC]6[/COLOR][COLOR=#66CC66]}[/COLOR][COLOR=#66CC66],[/COLOR]
[COLOR=#66CC66][[/COLOR][COLOR=#FF6666]"udz"[/COLOR][COLOR=#66CC66]][/COLOR] [COLOR=#66CC66]=[/COLOR] [COLOR=#66CC66]{[/COLOR]x[COLOR=#66CC66]=[/COLOR][COLOR=#CC66CC]1893[/COLOR][COLOR=#66CC66],[/COLOR] y[COLOR=#66CC66]=[/COLOR][COLOR=#CC66CC]1442[/COLOR][COLOR=#66CC66],[/COLOR] z[COLOR=#66CC66]=[/COLOR][COLOR=#CC66CC]7[/COLOR][COLOR=#66CC66]}[/COLOR][COLOR=#66CC66],[/COLOR]
[COLOR=#66CC66][[/COLOR][COLOR=#FF6666]"godz"[/COLOR][COLOR=#66CC66]][/COLOR] [COLOR=#66CC66]=[/COLOR] [COLOR=#66CC66]{[/COLOR]x[COLOR=#66CC66]=[/COLOR][COLOR=#CC66CC]1674[/COLOR][COLOR=#66CC66],[/COLOR] y[COLOR=#66CC66]=[/COLOR][COLOR=#CC66CC]846[/COLOR][COLOR=#66CC66],[/COLOR] z[COLOR=#66CC66]=[/COLOR][COLOR=#CC66CC]7[/COLOR][COLOR=#66CC66]}[/COLOR][COLOR=#66CC66],[/COLOR]
[COLOR=#66CC66][[/COLOR][COLOR=#FF6666]"garden"[/COLOR][COLOR=#66CC66]][/COLOR] [COLOR=#66CC66]=[/COLOR] [COLOR=#66CC66]{[/COLOR]x[COLOR=#66CC66]=[/COLOR][COLOR=#CC66CC]1619[/COLOR][COLOR=#66CC66],[/COLOR] y[COLOR=#66CC66]=[/COLOR][COLOR=#CC66CC]585[/COLOR][COLOR=#66CC66],[/COLOR] z[COLOR=#66CC66]=[/COLOR][COLOR=#CC66CC]7[/COLOR][COLOR=#66CC66]}[/COLOR][COLOR=#66CC66],[/COLOR]
[COLOR=#66CC66][[/COLOR][COLOR=#FF6666]"crez"[/COLOR][COLOR=#66CC66]][/COLOR] [COLOR=#66CC66]=[/COLOR] [COLOR=#66CC66]{[/COLOR]x[COLOR=#66CC66]=[/COLOR][COLOR=#CC66CC]1097[/COLOR][COLOR=#66CC66],[/COLOR] y[COLOR=#66CC66]=[/COLOR][COLOR=#CC66CC]862[/COLOR][COLOR=#66CC66],[/COLOR] z[COLOR=#66CC66]=[/COLOR][COLOR=#CC66CC]6[/COLOR][COLOR=#66CC66]}[/COLOR][COLOR=#66CC66],[/COLOR]
[COLOR=#66CC66][[/COLOR][COLOR=#FF6666]"chuz"[/COLOR][COLOR=#66CC66]][/COLOR] [COLOR=#66CC66]=[/COLOR] [COLOR=#66CC66]{[/COLOR]x[COLOR=#66CC66]=[/COLOR][COLOR=#CC66CC]1100[/COLOR][COLOR=#66CC66],[/COLOR] y[COLOR=#66CC66]=[/COLOR][COLOR=#CC66CC]917[/COLOR][COLOR=#66CC66],[/COLOR] z[COLOR=#66CC66]=[/COLOR][COLOR=#CC66CC]7[/COLOR][COLOR=#66CC66]}[/COLOR][COLOR=#66CC66],[/COLOR]
[COLOR=#66CC66][[/COLOR][COLOR=#FF6666]"kelz"[/COLOR][COLOR=#66CC66]][/COLOR] [COLOR=#66CC66]=[/COLOR] [COLOR=#66CC66]{[/COLOR]x[COLOR=#66CC66]=[/COLOR][COLOR=#CC66CC]1674[/COLOR][COLOR=#66CC66],[/COLOR] y[COLOR=#66CC66]=[/COLOR][COLOR=#CC66CC]846[/COLOR][COLOR=#66CC66],[/COLOR] z[COLOR=#66CC66]=[/COLOR][COLOR=#CC66CC]7[/COLOR][COLOR=#66CC66]}[/COLOR][COLOR=#66CC66],[/COLOR]
[COLOR=#66CC66][[/COLOR][COLOR=#FF6666]"monument"[/COLOR][COLOR=#66CC66]][/COLOR] [COLOR=#66CC66]=[/COLOR] [COLOR=#66CC66]{[/COLOR]x[COLOR=#66CC66]=[/COLOR][COLOR=#CC66CC]1095[/COLOR][COLOR=#66CC66],[/COLOR] y[COLOR=#66CC66]=[/COLOR][COLOR=#CC66CC]1029[/COLOR][COLOR=#66CC66],[/COLOR] z[COLOR=#66CC66]=[/COLOR][COLOR=#CC66CC]7[/COLOR][COLOR=#66CC66]}[/COLOR][COLOR=#66CC66],[/COLOR]
[COLOR=#66CC66][[/COLOR][COLOR=#FF6666]"allyz"[/COLOR][COLOR=#66CC66]][/COLOR] [COLOR=#66CC66]=[/COLOR] [COLOR=#66CC66]{[/COLOR]x[COLOR=#66CC66]=[/COLOR][COLOR=#CC66CC]1154[/COLOR][COLOR=#66CC66],[/COLOR] y[COLOR=#66CC66]=[/COLOR][COLOR=#CC66CC]809[/COLOR][COLOR=#66CC66],[/COLOR] z[COLOR=#66CC66]=[/COLOR][COLOR=#CC66CC]7[/COLOR][COLOR=#66CC66]}[/COLOR][COLOR=#66CC66],[/COLOR]
[COLOR=#66CC66][[/COLOR][COLOR=#FF6666]"bar"[/COLOR][COLOR=#66CC66]][/COLOR] [COLOR=#66CC66]=[/COLOR] [COLOR=#66CC66]{[/COLOR]x[COLOR=#66CC66]=[/COLOR][COLOR=#CC66CC]1234[/COLOR][COLOR=#66CC66],[/COLOR] y[COLOR=#66CC66]=[/COLOR][COLOR=#CC66CC]725[/COLOR][COLOR=#66CC66],[/COLOR] z[COLOR=#66CC66]=[/COLOR][COLOR=#CC66CC]7[/COLOR][COLOR=#66CC66]}[/COLOR][COLOR=#66CC66],[/COLOR]
[COLOR=#66CC66][[/COLOR][COLOR=#FF6666]"battle"[/COLOR][COLOR=#66CC66]][/COLOR] [COLOR=#66CC66]=[/COLOR] [COLOR=#66CC66]{[/COLOR]x[COLOR=#66CC66]=[/COLOR][COLOR=#CC66CC]1861[/COLOR][COLOR=#66CC66],[/COLOR] y[COLOR=#66CC66]=[/COLOR][COLOR=#CC66CC]1200[/COLOR][COLOR=#66CC66],[/COLOR] z[COLOR=#66CC66]=[/COLOR][COLOR=#CC66CC]7[/COLOR][COLOR=#66CC66]}[/COLOR][COLOR=#66CC66],[/COLOR]
[COLOR=#66CC66][[/COLOR][COLOR=#FF6666]"lucz"[/COLOR][COLOR=#66CC66]][/COLOR] [COLOR=#66CC66]=[/COLOR] [COLOR=#66CC66]{[/COLOR]x[COLOR=#66CC66]=[/COLOR][COLOR=#CC66CC]1038[/COLOR][COLOR=#66CC66],[/COLOR] y[COLOR=#66CC66]=[/COLOR][COLOR=#CC66CC]789[/COLOR][COLOR=#66CC66],[/COLOR] z[COLOR=#66CC66]=[/COLOR][COLOR=#CC66CC]7[/COLOR][COLOR=#66CC66]}[/COLOR][COLOR=#66CC66],[/COLOR]
[COLOR=#66CC66][[/COLOR][COLOR=#FF6666]"there"[/COLOR][COLOR=#66CC66]][/COLOR] [COLOR=#66CC66]=[/COLOR] [COLOR=#66CC66]{[/COLOR]x[COLOR=#66CC66]=[/COLOR][COLOR=#CC66CC]1162[/COLOR][COLOR=#66CC66],[/COLOR] y[COLOR=#66CC66]=[/COLOR][COLOR=#CC66CC]691[/COLOR][COLOR=#66CC66],[/COLOR] z[COLOR=#66CC66]=[/COLOR][COLOR=#CC66CC]7[/COLOR][COLOR=#66CC66]}[/COLOR][COLOR=#66CC66],[/COLOR]
[COLOR=#66CC66][[/COLOR][COLOR=#FF6666]"hanz"[/COLOR][COLOR=#66CC66]][/COLOR] [COLOR=#66CC66]=[/COLOR] [COLOR=#66CC66]{[/COLOR]x[COLOR=#66CC66]=[/COLOR][COLOR=#CC66CC]2161[/COLOR][COLOR=#66CC66],[/COLOR] y[COLOR=#66CC66]=[/COLOR][COLOR=#CC66CC]1024[/COLOR][COLOR=#66CC66],[/COLOR] z[COLOR=#66CC66]=[/COLOR][COLOR=#CC66CC]7[/COLOR][COLOR=#66CC66]}[/COLOR][COLOR=#66CC66],[/COLOR]
[COLOR=#66CC66][[/COLOR][COLOR=#FF6666]"hell"[/COLOR][COLOR=#66CC66]][/COLOR] [COLOR=#66CC66]=[/COLOR] [COLOR=#66CC66]{[/COLOR]x[COLOR=#66CC66]=[/COLOR][COLOR=#CC66CC]1340[/COLOR][COLOR=#66CC66],[/COLOR] y[COLOR=#66CC66]=[/COLOR][COLOR=#CC66CC]1158[/COLOR][COLOR=#66CC66],[/COLOR] z[COLOR=#66CC66]=[/COLOR][COLOR=#CC66CC]7[/COLOR][COLOR=#66CC66]}[/COLOR][COLOR=#66CC66],[/COLOR]
[COLOR=#66CC66]}[/COLOR] 
 
[COLOR=#AA9900][B]function[/B][/COLOR] onSay[COLOR=#66CC66]([/COLOR]cid[COLOR=#66CC66],[/COLOR] words[COLOR=#66CC66],[/COLOR] param[COLOR=#66CC66],[/COLOR] channel[COLOR=#66CC66])[/COLOR]
        [COLOR=#AA9900][B]local[/B][/COLOR] p [COLOR=#66CC66]=[/COLOR] param[COLOR=#66CC66]:[/COLOR]lower[COLOR=#66CC66]([/COLOR][COLOR=#66CC66])[/COLOR]
   [COLOR=#AA9900][B]if[/B][/COLOR] getPlayerPromotionLevel[COLOR=#66CC66]([/COLOR]cid[COLOR=#66CC66])[/COLOR] [COLOR=#66CC66]==[/COLOR] [COLOR=#CC66CC]1[/COLOR] [COLOR=#AA9900][B]or[/B][/COLOR] getPlayerGroupId[COLOR=#66CC66]([/COLOR]cid[COLOR=#66CC66])[/COLOR] [COLOR=#66CC66]>=[/COLOR] [COLOR=#CC66CC]4[/COLOR] [COLOR=#AA9900][B]then[/B][/COLOR]
        [COLOR=#AA9900][B]if[/B][/COLOR] getCreatureCondition[COLOR=#66CC66]([/COLOR]cid[COLOR=#66CC66],[/COLOR]CONDITION_INFIGHT[COLOR=#66CC66])[/COLOR] [COLOR=#66CC66]==[/COLOR] [COLOR=#AA9900]false[/COLOR] [COLOR=#AA9900][B]then[/B][/COLOR]
            [COLOR=#AA9900][B]local[/B][/COLOR] po [COLOR=#66CC66]=[/COLOR] getCreaturePosition[COLOR=#66CC66]([/COLOR]cid[COLOR=#66CC66])[/COLOR]
            [COLOR=#AA9900][B]if[/B][/COLOR] po[COLOR=#66CC66].[/COLOR]x [COLOR=#66CC66]>=[/COLOR] j[COLOR=#66CC66].[/COLOR]x1 [COLOR=#AA9900][B]and[/B][/COLOR] po[COLOR=#66CC66].[/COLOR]x [COLOR=#66CC66]<=[/COLOR] j[COLOR=#66CC66].[/COLOR]x2 [COLOR=#AA9900][B]and[/B][/COLOR] po[COLOR=#66CC66].[/COLOR]y [COLOR=#66CC66]>=[/COLOR] j[COLOR=#66CC66].[/COLOR]y1 [COLOR=#AA9900][B]and[/B][/COLOR] po[COLOR=#66CC66].[/COLOR]y [COLOR=#66CC66]<=[/COLOR] j[COLOR=#66CC66].[/COLOR]y2 [COLOR=#AA9900][B]and[/B][/COLOR] po[COLOR=#66CC66].[/COLOR]z [COLOR=#66CC66]<=[/COLOR] j[COLOR=#66CC66].[/COLOR]z1 [COLOR=#AA9900][B]and[/B][/COLOR] po[COLOR=#66CC66].[/COLOR]z [COLOR=#66CC66]>=[/COLOR] j[COLOR=#66CC66].[/COLOR]z2 [COLOR=#AA9900][B]then[/B][/COLOR]
                doPlayerSendTextMessage[COLOR=#66CC66]([/COLOR]cid[COLOR=#66CC66],[/COLOR] MESSAGE_INFO_DESCR[COLOR=#66CC66],[/COLOR] [COLOR=#FF6666]"You are in jail!"[/COLOR][COLOR=#66CC66])[/COLOR]
                [COLOR=#AA9900][B]return[/B][/COLOR] [COLOR=#AA9900]true[/COLOR]
            [COLOR=#AA9900][B]end[/B][/COLOR] 
                [COLOR=#AA9900][B]if[/B][/COLOR] to[COLOR=#66CC66][[/COLOR]p[COLOR=#66CC66]][/COLOR] [COLOR=#66CC66]~=[/COLOR] [COLOR=#AA9900]nil[/COLOR] [COLOR=#AA9900][B]then[/B][/COLOR]
                        doTeleportThing[COLOR=#66CC66]([/COLOR]cid[COLOR=#66CC66],[/COLOR]to[COLOR=#66CC66][[/COLOR]p[COLOR=#66CC66]][/COLOR][COLOR=#66CC66])[/COLOR]
                        doSendMagicEffect[COLOR=#66CC66]([/COLOR]to[COLOR=#66CC66][[/COLOR]p[COLOR=#66CC66]][/COLOR][COLOR=#66CC66],[/COLOR][COLOR=#CC66CC]10[/COLOR][COLOR=#66CC66])[/COLOR]
                        doPlayerSendTextMessage[COLOR=#66CC66]([/COLOR]cid[COLOR=#66CC66],[/COLOR][COLOR=#CC66CC]4[/COLOR][COLOR=#66CC66],[/COLOR][COLOR=#FF6666]"Teleported to "[/COLOR][COLOR=#66CC66]..[/COLOR]p[COLOR=#66CC66]..[/COLOR][COLOR=#FF6666]"."[/COLOR][COLOR=#66CC66])[/COLOR]
                [COLOR=#AA9900][B]else[/B][/COLOR]
                        doPlayerSendTextMessage[COLOR=#66CC66]([/COLOR]cid[COLOR=#66CC66],[/COLOR][COLOR=#CC66CC]4[/COLOR][COLOR=#66CC66],[/COLOR][COLOR=#FF6666]"Invalid Location."[/COLOR][COLOR=#66CC66])[/COLOR]
                [COLOR=#AA9900][B]end[/B][/COLOR]
        [COLOR=#AA9900][B]else[/B][/COLOR]
                doPlayerSendTextMessage[COLOR=#66CC66]([/COLOR]cid[COLOR=#66CC66],[/COLOR][COLOR=#CC66CC]4[/COLOR][COLOR=#66CC66],[/COLOR][COLOR=#FF6666]"Lose PZ."[/COLOR][COLOR=#66CC66])[/COLOR]
        [COLOR=#AA9900][B]end[/B][/COLOR]
[COLOR=#AA9900][B]else[/B][/COLOR]
doPlayerSendTextMessage[COLOR=#66CC66]([/COLOR]cid[COLOR=#66CC66],[/COLOR][COLOR=#CC66CC]4[/COLOR][COLOR=#66CC66],[/COLOR][COLOR=#FF6666]"Sorry, you need promotion."[/COLOR][COLOR=#66CC66])[/COLOR]
[COLOR=#AA9900][B]end[/B][/COLOR]
        [COLOR=#AA9900][B]return[/B][/COLOR] [COLOR=#AA9900]true [/COLOR]
[COLOR=#AA9900][B]end[/B][/COLOR]

Code:
local j ={x1 =1125, x2 =1176, y1=835, y2 =876, z1 =5, z2=1}
function onSay(cid, words, param, channel)
    if not(getHouseByPlayerGUID(getPlayerGUID(cid))) then
        doPlayerSendCancel(cid, "You do not own a house.")
        return true
    end
 
    if getCreatureCondition(cid, CONDITION_INFIGHT) then
        doPlayerSendCancel(cid, "You are PZ.")
        return true
    end
 
    if getPlayerPromotionLevel(cid) ~= 1 then
        doPlayerSendTextMessage(cid, MESSAGE_INFO_DESCR, "You need promotion!")
        return true
    end
    local p = getCreaturePosition(cid)
    if p.x >= j.x1 and p.x <= j.x2 and p.y >= j.y1 and p.y <= j.y2 and p.z <= j.z1 and p.z >= j.z2 then
        doPlayerSendTextMessage(cid, MESSAGE_INFO_DESCR, "You are in jail!")
        return true
    end 
 
    doTeleportThing(cid, getHouseEntry(getHouseByPlayerGUID(getPlayerGUID(cid))))
    return true 
end


Try this :D Can't see any more mistakes.
 
Last edited:
I have no idea what you have wrong. I checked it and it works for me. Maybe you have wrong position of jail?

It does work, sorry man lol, my postions wasnt right so it wasnt a square or some shit, THANKS !!! =D
reped already.
where the fuck was i? lool its floor 7 to 1 and i wrote 5 to 1.. ofc it wasnt working ¬¬,
local j ={x1=1125, x2=1172, y1=835, y2=872, z1=7, z2=1}
 
Last edited:
Back
Top