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

!buyhouse and .buyhouse

HeberPcL

[PowerOT.com.br]
Joined
Aug 21, 2007
Messages
1,292
Reaction score
51
Location
Brazil
GitHub
heberpcl
How not to get release the command! Buyhouse for Free players, I found this script that does not verify whether it is premium.
However the script that giving the following error:

function onSay(cid, words, param)

-- Made By Xikez
--///////// Things to Edit //////////
local numberOfHouse = 250 -- How many houses does your server have? Tip: You can use the map editor for this.
local money = 50000 -- Cost of 1 house.
local canOwnHouse = 1 -- How many houses can a player buy?
--/////////////////////////////////////////

local pos = getPlayerPosition(cid)
local hasCheckedLeft = 0
local hasCheckedRight = 0
local hasCheckedUp = 0
local hasCheckedDown = 0
local msgto = ""
local houseId = 0
local hasHouse = getPlayerPosition(cid)
local checkedHowMany = 0
local ownsHouse = 0
local housePosFirst = 0
local newOwner = getPlayerGUID(cid)

housePosFirst = {x=getPlayerPosition(cid).x-1, y=getPlayerPosition(cid).y, z=getPlayerPosition(cid).z}
if getTileHouseInfo(housePosFirst) ~= 0 then
hasCheckedLeft = getTileHouseInfo(housePosFirst)
end
housePosFirst = {x=getPlayerPosition(cid).x+1, y=getPlayerPosition(cid).y, z=getPlayerPosition(cid).z}
if getTileHouseInfo(housePosFirst) ~= 0 then
hasCheckedRight = getTileHouseInfo(housePosFirst)
end
housePosFirst = {x=getPlayerPosition(cid).x, y=getPlayerPosition(cid).y+1, z=getPlayerPosition(cid).z}
if getTileHouseInfo(housePosFirst) ~= 0 then
hasCheckedDown = getTileHouseInfo(housePosFirst)
end
housePosFirst = {x=getPlayerPosition(cid).x, y=getPlayerPosition(cid).y-1, z=getPlayerPosition(cid).z}
if getTileHouseInfo(housePosFirst) ~= 0 then
hasCheckedUp = getTileHouseInfo(housePosFirst)
end

if hasCheckedUp ~= 0 or hasCheckedDown ~= 0 or hasCheckedRight ~= 0 or hasCheckedLeft ~= 0 then
if hasCheckedUp ~= 0 then
houseId = hasCheckedUp
elseif hasCheckedDown ~= 0 then
houseId = hasCheckedDown
elseif hasCheckedRight ~= 0 then
houseId = hasCheckedRight
elseif hasCheckedLeft ~= 0 then
houseId = hasCheckedLeft
end
if getHouseOwner(houseId) ~= 0 then
if getHouseOwner(houseId) == newOwner then
msgto = "You already own this house."
else
msgto = "The house already has a owner."
end
else

while checkedHowMany < numberOfHouse do
checkedHowMany = checkedHowMany + 1
if getHouseOwner(checkedHowMany) == newOwner then
ownsHouse = ownsHouse + 1
end
end
if ownsHouse < canOwnHouse then
--TODO: Count how much money to be paid, it cannot be accurate though.
if doPlayerRemoveMoney(cid, money) == 1 then
setHouseOwner(houseId, newOwner)
msgto = "Congratz! You are now the owner of the house."
else
msgto = "You don\'t have enough money"
end
else
msgto = "You can\'t buy more houses."
end
--
end
else
msgto = "There is no house around you. Make sure you are facing the house door."
end


doPlayerSendTextMessage(cid, 24, msgto)
doPlayerSendTextMessage(cid, 25, words)
return 0
end

Error
[23/08/2008 10:33:34] Lua Script Error: [TalkAction Interface]
[23/08/2008 10:33:34] data/talkactions/scripts/powerot/gethouse.lua:eek:nSay

[23/08/2008 10:33:34] luaGetHouseOwner(). House not found

[23/08/2008 10:33:34] Lua Script Error: [TalkAction Interface]
[23/08/2008 10:33:34] data/talkactions/scripts/powerot/gethouse.lua:eek:nSay

[23/08/2008 10:33:34] luaGetHouseOwner(). House not found

[23/08/2008 10:33:34] Lua Script Error: [TalkAction Interface]
[23/08/2008 10:33:34] data/talkactions/scripts/powerot/gethouse.lua:eek:nSay

[23/08/2008 10:33:34] luaGetHouseOwner(). House not found

[23/08/2008 10:33:34] Lua Script Error: [TalkAction Interface]
[23/08/2008 10:33:34] data/talkactions/scripts/powerot/gethouse.lua:eek:nSay

[23/08/2008 10:33:34] luaGetHouseOwner(). House not found

[23/08/2008 10:33:34] Lua Script Error: [TalkAction Interface]
[23/08/2008 10:33:34] data/talkactions/scripts/powerot/gethouse.lua:eek:nSay

[23/08/2008 10:33:34] luaGetHouseOwner(). House not found

[23/08/2008 10:33:34] Lua Script Error: [TalkAction Interface]
[23/08/2008 10:33:34] data/talkactions/scripts/powerot/gethouse.lua:eek:nSay

[23/08/2008 10:33:34] luaGetHouseOwner(). House not found

[23/08/2008 10:33:34] Lua Script Error: [TalkAction Interface]
[23/08/2008 10:33:34] data/talkactions/scripts/powerot/gethouse.lua:eek:nSay

[23/08/2008 10:33:34] luaGetHouseOwner(). House not found

[23/08/2008 10:33:34] Lua Script Error: [TalkAction Interface]
[23/08/2008 10:33:34] data/talkactions/scripts/powerot/gethouse.lua:eek:nSay

[23/08/2008 10:33:34] luaGetHouseOwner(). House not found

[23/08/2008 10:33:34] Lua Script Error: [TalkAction Interface]
[23/08/2008 10:33:34] data/talkactions/scripts/powerot/gethouse.lua:eek:nSay

[23/08/2008 10:33:34] luaGetHouseOwner(). House not found

[23/08/2008 10:33:34] Lua Script Error: [TalkAction Interface]
[23/08/2008 10:33:34] data/talkactions/scripts/powerot/gethouse.lua:eek:nSay

[23/08/2008 10:33:34] luaGetHouseOwner(). House not found

[23/08/2008 10:33:34] Lua Script Error: [TalkAction Interface]
[23/08/2008 10:33:34] data/talkactions/scripts/powerot/gethouse.lua:eek:nSay

[23/08/2008 10:33:34] luaGetHouseOwner(). House not found

[23/08/2008 10:33:34] Lua Script Error: [TalkAction Interface]
[23/08/2008 10:33:34] data/talkactions/scripts/powerot/gethouse.lua:eek:nSay

[23/08/2008 10:33:34] luaGetHouseOwner(). House not found

[23/08/2008 10:33:34] Lua Script Error: [TalkAction Interface]
[23/08/2008 10:33:34] data/talkactions/scripts/powerot/gethouse.lua:eek:nSay

[23/08/2008 10:33:34] luaGetHouseOwner(). House not found

[23/08/2008 10:33:34] Lua Script Error: [TalkAction Interface]
[23/08/2008 10:33:34] data/talkactions/scripts/powerot/gethouse.lua:eek:nSay

[23/08/2008 10:33:34] luaGetHouseOwner(). House not found

[23/08/2008 10:33:34] Lua Script Error: [TalkAction Interface]
[23/08/2008 10:33:34] data/talkactions/scripts/powerot/gethouse.lua:eek:nSay

[23/08/2008 10:33:34] luaGetHouseOwner(). House not found

[23/08/2008 10:33:34] Lua Script Error: [TalkAction Interface]
[23/08/2008 10:33:34] data/talkactions/scripts/powerot/gethouse.lua:eek:nSay

[23/08/2008 10:33:34] luaGetHouseOwner(). House not found

[23/08/2008 10:33:34] Lua Script Error: [TalkAction Interface]
[23/08/2008 10:33:34] data/talkactions/scripts/powerot/gethouse.lua:eek:nSay

[23/08/2008 10:33:34] luaGetHouseOwner(). House not found

[23/08/2008 10:33:34] Lua Script Error: [TalkAction Interface]
[23/08/2008 10:33:34] data/talkactions/scripts/powerot/gethouse.lua:eek:nSay

[23/08/2008 10:33:34] luaGetHouseOwner(). House not found

[23/08/2008 10:33:34] Lua Script Error: [TalkAction Interface]
[23/08/2008 10:33:34] data/talkactions/scripts/powerot/gethouse.lua:eek:nSay

[23/08/2008 10:33:34] luaGetHouseOwner(). House not found

[23/08/2008 10:33:34] Lua Script Error: [TalkAction Interface]
[23/08/2008 10:33:34] data/talkactions/scripts/powerot/gethouse.lua:eek:nSay

[23/08/2008 10:33:34] luaGetHouseOwner(). House not found

[23/08/2008 10:33:34] Lua Script Error: [TalkAction Interface]
[23/08/2008 10:33:34] data/talkactions/scripts/powerot/gethouse.lua:eek:nSay

[23/08/2008 10:33:34] luaGetHouseOwner(). House not found

[23/08/2008 10:33:34] Lua Script Error: [TalkAction Interface]
[23/08/2008 10:33:34] data/talkactions/scripts/powerot/gethouse.lua:eek:nSay

[23/08/2008 10:33:34] luaGetHouseOwner(). House not found

[23/08/2008 10:33:34] Lua Script Error: [TalkAction Interface]
[23/08/2008 10:33:34] data/talkactions/scripts/powerot/gethouse.lua:eek:nSay

[23/08/2008 10:33:34] luaGetHouseOwner(). House not found

[23/08/2008 10:33:34] Lua Script Error: [TalkAction Interface]
[23/08/2008 10:33:34] data/talkactions/scripts/powerot/gethouse.lua:eek:nSay

[23/08/2008 10:33:34] luaGetHouseOwner(). House not found

[23/08/2008 10:33:34] Lua Script Error: [TalkAction Interface]
[23/08/2008 10:33:34] data/talkactions/scripts/powerot/gethouse.lua:eek:nSay

[23/08/2008 10:33:34] luaGetHouseOwner(). House not found


The command works, but this error appears in Default.
I also know if the Rent System using this TalkAction be affected?


Compilation: 1076
Thx!
 
That would happen if you specify more houses than you have here:
local numberOfHouse = 250 -- How many houses does your server have? Tip: You can use the map editor for this.
 
Houses.xml
<?xml version="1.0" encoding="UTF-8"?>
<houses>
<house name="DahLia House 01" houseid="1" entryx="272" entryy="221" entryz="7" rent="0" townid="1" size="30"/>
<house name="DahLia House 02" houseid="2" entryx="272" entryy="217" entryz="7" rent="0" townid="1" size="29"/>
<house name="DahLia House 03" houseid="3" entryx="272" entryy="213" entryz="7" rent="0" townid="1" size="29"/>
<house name="DahLia House 04" houseid="4" entryx="272" entryy="214" entryz="6" rent="0" townid="1" size="44"/>
<house name="DahLia House 05" houseid="5" entryx="272" entryy="220" entryz="6" rent="0" townid="1" size="37"/>
<house name="DahLia House 06" houseid="6" entryx="267" entryy="215" entryz="5" rent="0" townid="1" size="33"/>
<house name="Jungle House 01" houseid="7" entryx="448" entryy="339" entryz="7" rent="0" townid="5" size="15"/>
<house name="DahLia House 07" houseid="8" entryx="273" entryy="217" entryz="5" rent="0" townid="1" size="25"/>
<house name="DahLia House 08" houseid="9" entryx="285" entryy="227" entryz="7" rent="0" townid="1" size="45"/>
<house name="DahLia House 09" houseid="10" entryx="294" entryy="234" entryz="7" rent="0" townid="1" size="56"/>
<house name="DahLia House 10" houseid="11" entryx="294" entryy="245" entryz="7" rent="0" townid="1" size="42"/>
<house name="DahLia House 11" houseid="12" entryx="294" entryy="253" entryz="7" rent="0" townid="1" size="29"/>
<house name="DahLia House 12" houseid="13" entryx="302" entryy="229" entryz="6" rent="0" townid="1" size="26"/>
<house name="DahLia House 13" houseid="14" entryx="307" entryy="229" entryz="6" rent="0" townid="1" size="26"/>
<house name="DahLia House 14" houseid="15" entryx="302" entryy="229" entryz="7" rent="0" townid="1" size="27"/>
<house name="DahLia House 15" houseid="16" entryx="307" entryy="229" entryz="7" rent="0" townid="1" size="26"/>
<house name="DahLia House 16" houseid="17" entryx="304" entryy="206" entryz="7" rent="0" townid="1" size="85"/>
<house name="DahLia House 17" houseid="18" entryx="307" entryy="203" entryz="7" rent="0" townid="1" size="56"/>
<house name="DahLia House 18" houseid="19" entryx="311" entryy="207" entryz="7" rent="0" townid="1" size="73"/>
<house name="DahLia House 19" houseid="20" entryx="311" entryy="211" entryz="7" rent="0" townid="1" size="49"/>
<house name="DahLia House 20" houseid="21" entryx="279" entryy="193" entryz="7" rent="0" townid="1" size="79"/>
<house name="DahLia House 22" houseid="22" entryx="290" entryy="193" entryz="7" rent="0" townid="1" size="73"/>
<house name="DahLia House 23" houseid="23" entryx="290" entryy="191" entryz="7" rent="0" townid="1" size="67"/>
<house name="DahLia House 24" houseid="24" entryx="283" entryy="191" entryz="7" rent="0" townid="1" size="42"/>
<house name="DahLia House 25" houseid="25" entryx="275" entryy="191" entryz="7" rent="0" townid="1" size="45"/>
<house name="DahLia House 26" houseid="26" entryx="282" entryy="244" entryz="7" rent="0" townid="1" size="34"/>
<house name="Jungle House 02" houseid="27" entryx="452" entryy="339" entryz="7" rent="0" townid="5" size="15"/>
<house name="DahLia House 27" houseid="28" entryx="281" entryy="252" entryz="6" rent="0" townid="1" size="26"/>
<house name="DahLia House 28" houseid="29" entryx="282" entryy="246" entryz="6" rent="0" townid="1" size="42"/>
<house name="DahLia House 29" houseid="30" entryx="290" entryy="246" entryz="6" rent="0" townid="1" size="38"/>
<house name="DahLia House 30" houseid="31" entryx="292" entryy="234" entryz="6" rent="0" townid="1" size="35"/>
<house name="DahLia House 31" houseid="32" entryx="272" entryy="247" entryz="6" rent="0" townid="1" size="25"/>
<house name="DahLia House 32" houseid="33" entryx="298" entryy="249" entryz="7" rent="0" townid="1" size="95"/>
<house name="DahLia House 33" houseid="34" entryx="298" entryy="254" entryz="7" rent="0" townid="1" size="61"/>
<house name="DahLia House 34" houseid="35" entryx="288" entryy="260" entryz="7" rent="0" townid="1" size="101"/>
<house name="DahLia House 35" houseid="36" entryx="280" entryy="260" entryz="7" rent="0" townid="1" size="101"/>
<house name="DahLia House 36" houseid="37" entryx="272" entryy="260" entryz="7" rent="0" townid="1" size="101"/>
<house name="DahLia House 37" houseid="38" entryx="266" entryy="251" entryz="7" rent="0" townid="1" size="126"/>
<house name="DahLia House 38" houseid="39" entryx="259" entryy="239" entryz="7" rent="0" townid="1" size="110"/>
<house name="Ankrahmun House 02" houseid="40" entryx="307" entryy="360" entryz="5" rent="0" townid="2" size="100"/>
<house name="Ankrahmun House 03" houseid="41" entryx="314" entryy="329" entryz="6" rent="0" townid="2" size="60"/>
<house name="Ice House 01" houseid="42" entryx="873" entryy="499" entryz="7" rent="0" townid="7" size="32"/>
<house name="Ankrahmun House 04" houseid="43" entryx="314" entryy="330" entryz="6" rent="0" townid="2" size="77"/>
<house name="Ankrahmun House 05" houseid="44" entryx="329" entryy="305" entryz="6" rent="0" townid="2" size="24"/>
<house name="Ankrahmun House 06" houseid="45" entryx="329" entryy="309" entryz="6" rent="0" townid="2" size="24"/>
<house name="Ankrahmun House 07" houseid="46" entryx="310" entryy="329" entryz="7" rent="0" townid="3" size="53"/>
<house name="Ankrahmun House 08" houseid="47" entryx="318" entryy="329" entryz="7" rent="0" townid="2" size="46"/>
<house name="Ankrahmun House 09" houseid="48" entryx="310" entryy="332" entryz="7" rent="0" townid="2" size="45"/>
<house name="Ankrahmun House 10" houseid="49" entryx="318" entryy="332" entryz="7" rent="0" townid="2" size="37"/>
<house name="Ankrahmun House 11" houseid="50" entryx="370" entryy="342" entryz="7" rent="0" townid="2" size="34"/>
<house name="Ankrahmun House 12" houseid="51" entryx="370" entryy="343" entryz="7" rent="0" townid="2" size="30"/>
<house name="Jungle House 03" houseid="52" entryx="456" entryy="339" entryz="7" rent="0" townid="5" size="20"/>
<house name="Jungle House 04" houseid="53" entryx="448" entryy="339" entryz="6" rent="0" townid="5" size="15"/>
<house name="Ankrahmun House 13" houseid="54" entryx="367" entryy="370" entryz="6" rent="0" townid="2" size="85"/>
<house name="Ankrahmun House 14" houseid="55" entryx="309" entryy="352" entryz="6" rent="0" townid="2" size="85"/>
<house name="Ankrahmun House 15" houseid="56" entryx="309" entryy="367" entryz="6" rent="0" townid="2" size="93"/>
<house name="Ankrahmun House 16" houseid="57" entryx="324" entryy="357" entryz="6" rent="0" townid="2" size="29"/>
<house name="Ankrahmun House 17" houseid="58" entryx="324" entryy="359" entryz="6" rent="0" townid="2" size="49"/>
<house name="Jungle House 05" houseid="59" entryx="452" entryy="339" entryz="6" rent="0" townid="5" size="20"/>
<house name="Ankrahmun House 18" houseid="60" entryx="321" entryy="357" entryz="7" rent="0" townid="2" size="33"/>
<house name="Ankrahmun House 19" houseid="61" entryx="327" entryy="357" entryz="7" rent="0" townid="2" size="34"/>
<house name="Ankrahmun House 20" houseid="62" entryx="321" entryy="360" entryz="7" rent="0" townid="2" size="36"/>
<house name="Ankrahmun House 21" houseid="63" entryx="327" entryy="360" entryz="7" rent="0" townid="2" size="36"/>
<house name="Ankrahmun House 22" houseid="64" entryx="372" entryy="362" entryz="7" rent="0" townid="2" size="56"/>
<house name="Ankrahmun House 23" houseid="65" entryx="372" entryy="365" entryz="7" rent="0" townid="2" size="71"/>
<house name="Ankrahmun House 24" houseid="66" entryx="354" entryy="377" entryz="7" rent="0" townid="2" size="49"/>
<house name="Jungle House 06" houseid="67" entryx="456" entryy="339" entryz="6" rent="0" townid="5" size="20"/>
<house name="Ankrahmun House 25" houseid="68" entryx="300" entryy="357" entryz="7" rent="0" townid="2" size="58"/>
<house name="Ankrahmun House 26" houseid="69" entryx="306" entryy="357" entryz="7" rent="0" townid="2" size="48"/>
<house name="Ankrahmun House 27" houseid="70" entryx="300" entryy="360" entryz="7" rent="0" townid="2" size="73"/>
<house name="Ankrahmun House 28" houseid="71" entryx="306" entryy="360" entryz="7" rent="0" townid="2" size="61"/>
<house name="Venore House 01" houseid="72" entryx="474" entryy="245" entryz="6" rent="0" townid="3" size="161"/>
<house name="Rapax House 01" houseid="73" entryx="438" entryy="544" entryz="7" rent="0" townid="4" size="22"/>
<house name="Rapax House 02" houseid="74" entryx="438" entryy="551" entryz="7" rent="0" townid="4" size="108"/>
<house name="Rapax House 03" houseid="75" entryx="468" entryy="554" entryz="7" rent="0" townid="4" size="28"/>
<house name="Rapax House 04" houseid="76" entryx="472" entryy="557" entryz="7" rent="0" townid="4" size="31"/>
<house name="Rapax House 05" houseid="77" entryx="468" entryy="562" entryz="7" rent="0" townid="4" size="42"/>
<house name="Rapax House 06" houseid="78" entryx="462" entryy="570" entryz="7" rent="0" townid="4" size="96"/>
<house name="Rapax House 07" houseid="79" entryx="468" entryy="584" entryz="7" rent="0" townid="4" size="88"/>
<house name="Rapax House 08" houseid="80" entryx="474" entryy="586" entryz="7" rent="0" townid="4" size="98"/>
<house name="Rapax House 09" houseid="81" entryx="471" entryy="589" entryz="7" rent="0" townid="4" size="85"/>
<house name="Rapax House 10" houseid="82" entryx="464" entryy="589" entryz="7" rent="0" townid="4" size="78"/>
<house name="Rapax House 11" houseid="83" entryx="453" entryy="587" entryz="7" rent="0" townid="4" size="98"/>
<house name="Rapax House 12" houseid="84" entryx="446" entryy="587" entryz="7" rent="0" townid="4" size="91"/>
<house name="Rapax House 13" houseid="85" entryx="446" entryy="583" entryz="7" rent="0" townid="4" size="77"/>
<house name="Rapax House 14" houseid="86" entryx="453" entryy="583" entryz="7" rent="0" townid="4" size="87"/>
<house name="Rapax House 15" houseid="87" entryx="433" entryy="585" entryz="7" rent="0" townid="4" size="65"/>
<house name="Rapax House 16" houseid="88" entryx="433" entryy="593" entryz="7" rent="0" townid="4" size="64"/>
<house name="Rapax House 17" houseid="89" entryx="433" entryy="584" entryz="6" rent="0" townid="4" size="39"/>
<house name="Rapax House 18" houseid="90" entryx="433" entryy="589" entryz="6" rent="0" townid="4" size="98"/>
<house name="Rapax House 19" houseid="91" entryx="433" entryy="594" entryz="6" rent="0" townid="4" size="67"/>
<house name="Jungle House 07" houseid="92" entryx="436" entryy="335" entryz="7" rent="0" townid="5" size="36"/>
<house name="Jungle House 08" houseid="93" entryx="469" entryy="344" entryz="7" rent="0" townid="5" size="30"/>
<house name="Jungle House 09" houseid="94" entryx="475" entryy="344" entryz="7" rent="0" townid="5" size="29"/>
<house name="Jungle House 10" houseid="95" entryx="481" entryy="344" entryz="7" rent="0" townid="5" size="29"/>
<house name="Jungle House 11" houseid="96" entryx="477" entryy="360" entryz="7" rent="0" townid="5" size="49"/>
<house name="Jungle House 12" houseid="97" entryx="489" entryy="355" entryz="7" rent="0" townid="5" size="71"/>
<house name="Jungle House 13" houseid="98" entryx="444" entryy="358" entryz="7" rent="0" townid="5" size="61"/>
<house name="Jungle House 14" houseid="99" entryx="464" entryy="369" entryz="7" rent="0" townid="5" size="28"/>
<house name="Jungle House 15" houseid="100" entryx="464" entryy="375" entryz="7" rent="0" townid="5" size="20"/>
<house name="Jungle House 16" houseid="101" entryx="464" entryy="381" entryz="7" rent="0" townid="5" size="20"/>
<house name="Jungle House 17" houseid="102" entryx="470" entryy="369" entryz="7" rent="0" townid="5" size="21"/>
<house name="Jungle House 18" houseid="103" entryx="470" entryy="375" entryz="7" rent="0" townid="5" size="21"/>
<house name="Jungle House 19" houseid="104" entryx="470" entryy="381" entryz="7" rent="0" townid="5" size="21"/>
<house name="Jungle Guild House" houseid="105" entryx="468" entryy="397" entryz="7" rent="0" townid="5" size="479"/>
<house name="Ice House 21" houseid="106" entryx="749" entryy="485" entryz="7" rent="0" townid="7" size="44"/>
<house name="Ice House 22" houseid="107" entryx="746" entryy="491" entryz="7" rent="0" townid="7" size="110"/>
<house name="Ice House 23" houseid="108" entryx="749" entryy="499" entryz="7" rent="0" townid="7" size="57"/>
<house name="Ice House 24" houseid="109" entryx="747" entryy="506" entryz="6" rent="0" townid="7" size="57"/>
<house name="Ice House 25" houseid="110" entryx="778" entryy="477" entryz="7" rent="0" townid="7" size="96"/>
<house name="Ice House 26" houseid="111" entryx="784" entryy="492" entryz="7" rent="0" townid="7" size="73"/>
<house name="Ice House 27" houseid="112" entryx="807" entryy="491" entryz="7" rent="0" townid="7" size="55"/>
<house name="Ankrahmun House 01" houseid="113" entryx="324" entryy="377" entryz="7" rent="0" townid="2" size="138"/>
<house name="Venore House 02" houseid="114" entryx="466" entryy="238" entryz="6" rent="0" townid="3" size="115"/>
<house name="Venore House 03" houseid="115" entryx="454" entryy="238" entryz="6" rent="0" townid="3" size="183"/>
<house name="Venore House 04" houseid="116" entryx="455" entryy="250" entryz="6" rent="0" townid="3" size="161"/>
<house name="Venore House 05" houseid="117" entryx="466" entryy="252" entryz="6" rent="0" townid="3" size="190"/>
<house name="Venore House 06" houseid="118" entryx="448" entryy="262" entryz="6" rent="0" townid="3" size="162"/>
<house name="Ankrahmun House 33" houseid="120" entryx="346" entryy="358" entryz="7" rent="0" townid="2" size="118"/>
<house name="Venore House 09" houseid="121" entryx="475" entryy="268" entryz="6" rent="0" townid="3" size="104"/>
<house name="Venore House 10" houseid="122" entryx="475" entryy="275" entryz="6" rent="0" townid="3" size="106"/>
<house name="Venore House 11" houseid="123" entryx="487" entryy="267" entryz="6" rent="0" townid="3" size="219"/>
<house name="Venore House 12" houseid="124" entryx="489" entryy="280" entryz="6" rent="0" townid="3" size="210"/>
<house name="Venore House 13" houseid="125" entryx="477" entryy="254" entryz="6" rent="0" townid="3" size="99"/>
<house name="Venore House 14" houseid="126" entryx="477" entryy="246" entryz="6" rent="0" townid="3" size="113"/>
<house name="Venore House 15" houseid="127" entryx="489" entryy="248" entryz="6" rent="0" townid="3" size="288"/>
<house name="Ice House 02" houseid="128" entryx="882" entryy="499" entryz="7" rent="0" townid="7" size="115"/>
<house name="Venore House 16" houseid="129" entryx="505" entryy="251" entryz="6" rent="0" townid="3" size="178"/>
<house name="Ice House 03" houseid="130" entryx="899" entryy="498" entryz="7" rent="0" townid="7" size="22"/>
<house name="Ice House 04" houseid="131" entryx="891" entryy="490" entryz="7" rent="0" townid="7" size="69"/>
<house name="Ice House 05" houseid="132" entryx="897" entryy="490" entryz="7" rent="0" townid="7" size="73"/>
<house name="Ice House 06" houseid="133" entryx="886" entryy="506" entryz="7" rent="0" townid="7" size="117"/>
<house name="Ice House 07" houseid="134" entryx="886" entryy="513" entryz="7" rent="0" townid="7" size="65"/>
<house name="Ice House 08" houseid="135" entryx="877" entryy="512" entryz="7" rent="0" townid="7" size="70"/>
<house name="Ice House 09" houseid="136" entryx="866" entryy="513" entryz="7" rent="0" townid="7" size="37"/>
<house name="Ice House 10" houseid="137" entryx="860" entryy="513" entryz="7" rent="0" townid="7" size="37"/>
<house name="Ice House 11" houseid="138" entryx="864" entryy="532" entryz="7" rent="0" townid="7" size="47"/>
<house name="Ice House 12" houseid="139" entryx="844" entryy="541" entryz="7" rent="0" townid="7" size="38"/>
<house name="Ice House 13" houseid="140" entryx="844" entryy="536" entryz="7" rent="0" townid="7" size="38"/>
<house name="Ankrahmun House 34" houseid="141" entryx="366" entryy="339" entryz="6" rent="0" townid="2" size="8"/>
<house name="Ice House 14" houseid="142" entryx="846" entryy="537" entryz="6" rent="0" townid="7" size="29"/>
<house name="Ice House 15" houseid="143" entryx="840" entryy="537" entryz="6" rent="0" townid="7" size="54"/>
<house name="Ice House 16" houseid="144" entryx="841" entryy="506" entryz="7" rent="0" townid="7" size="37"/>
<house name="Ice House 17" houseid="145" entryx="839" entryy="495" entryz="7" rent="0" townid="7" size="26"/>
<house name="Ice House 18" houseid="146" entryx="832" entryy="488" entryz="7" rent="0" townid="7" size="22"/>
<house name="Ice House 19" houseid="147" entryx="826" entryy="488" entryz="7" rent="0" townid="7" size="236"/>
<house name="Ice House 20" houseid="148" entryx="823" entryy="497" entryz="7" rent="0" townid="7" size="30"/>
<house name="DahLia Guild House" houseid="149" entryx="287" entryy="276" entryz="7" rent="0" townid="1" size="329"/>
<house name="DahLia House 45" houseid="150" entryx="276" entryy="277" entryz="7" rent="0" townid="1" size="191"/>
<house name="Rapax House 20" houseid="151" entryx="461" entryy="569" entryz="7" rent="0" townid="4" size="79"/>
<house name="DahLia House 40" houseid="153" entryx="309" entryy="239" entryz="8" rent="0" townid="1" size="44"/>
<house name="DahLia House 41" houseid="154" entryx="311" entryy="239" entryz="8" rent="0" townid="1" size="43"/>
<house name="DahLia House 42" houseid="155" entryx="309" entryy="231" entryz="8" rent="0" townid="1" size="48"/>
<house name="DahLia House 43" houseid="156" entryx="311" entryy="231" entryz="8" rent="0" townid="1" size="43"/>
<house name="Ankrahmun House 35" houseid="157" entryx="367" entryy="346" entryz="6" rent="0" townid="2" size="9"/>
<house name="DahLia House 49" houseid="158" entryx="277" entryy="250" entryz="7" rent="0" townid="1" size="42"/>
<house name="Ankrahmun House 29" houseid="159" entryx="318" entryy="330" entryz="5" rent="0" townid="2" size="84"/>
<house name="Liberty House 01" houseid="160" entryx="599" entryy="837" entryz="7" rent="0" townid="8" size="89"/>
<house name="Ankrahmun House 30" houseid="161" entryx="331" entryy="304" entryz="7" rent="0" townid="2" size="30"/>
<house name="Ankrahmun House 31" houseid="162" entryx="331" entryy="310" entryz="7" rent="0" townid="2" size="30"/>
<house name="DahLia House 44" houseid="163" entryx="334" entryy="304" entryz="7" rent="0" townid="1" size="36"/>
<house name="Ankrahmun House 32" houseid="164" entryx="334" entryy="310" entryz="7" rent="0" townid="2" size="36"/>
<house name="Venore House 17" houseid="165" entryx="505" entryy="242" entryz="6" rent="0" townid="3" size="180"/>
<house name="Liberty House 02" houseid="166" entryx="603" entryy="833" entryz="7" rent="0" townid="8" size="81"/>
<house name="Liberty House 03" houseid="167" entryx="601" entryy="826" entryz="7" rent="0" townid="8" size="84"/>
<house name="Liberty House 04" houseid="168" entryx="568" entryy="840" entryz="7" rent="0" townid="8" size="61"/>
<house name="Liberty House 05" houseid="169" entryx="585" entryy="825" entryz="7" rent="0" townid="8" size="66"/>
<house name="Liberty House 06" houseid="170" entryx="626" entryy="832" entryz="7" rent="0" townid="8" size="71"/>
<house name="Liberty House 07" houseid="171" entryx="623" entryy="810" entryz="7" rent="0" townid="8" size="108"/>
<house name="Liberty House 08" houseid="172" entryx="609" entryy="813" entryz="7" rent="0" townid="8" size="129"/>
<house name="Liberty House 09" houseid="173" entryx="602" entryy="813" entryz="7" rent="0" townid="8" size="28"/>
<house name="Liberty House 10" houseid="174" entryx="602" entryy="817" entryz="7" rent="0" townid="8" size="28"/>
<house name="Liberty House 11" houseid="175" entryx="590" entryy="816" entryz="7" rent="0" townid="8" size="65"/>
<house name="Liberty House 12" houseid="176" entryx="609" entryy="846" entryz="7" rent="0" townid="8" size="43"/>
<house name="Liberty House 13" houseid="177" entryx="571" entryy="819" entryz="7" rent="0" townid="8" size="84"/>
<house name="Liberty House 14" houseid="178" entryx="563" entryy="825" entryz="7" rent="0" townid="8" size="25"/>
<house name="Liberty House 15" houseid="179" entryx="560" entryy="806" entryz="7" rent="0" townid="8" size="154"/>
<house name="Liberty House 16" houseid="180" entryx="563" entryy="796" entryz="7" rent="0" townid="8" size="100"/>
<house name="Liberty House 17" houseid="181" entryx="560" entryy="796" entryz="7" rent="0" townid="8" size="145"/>
<house name="Liberty Guild House" houseid="182" entryx="562" entryy="786" entryz="7" rent="0" townid="8" size="266"/>
<house name="Liberty House 18" houseid="183" entryx="538" entryy="805" entryz="7" rent="0" townid="8" size="26"/>
<house name="Liberty House 19" houseid="184" entryx="538" entryy="800" entryz="7" rent="0" townid="8" size="26"/>
<house name="Liberty House 20" houseid="185" entryx="538" entryy="797" entryz="7" rent="0" townid="8" size="26"/>
<house name="Liberty House 21" houseid="186" entryx="536" entryy="797" entryz="7" rent="0" townid="8" size="25"/>
<house name="Liberty House 22" houseid="187" entryx="536" entryy="801" entryz="7" rent="0" townid="8" size="25"/>
<house name="Liberty House 23" houseid="188" entryx="536" entryy="806" entryz="7" rent="0" townid="8" size="25"/>
<house name="Liberty House 24" houseid="189" entryx="536" entryy="797" entryz="6" rent="0" townid="8" size="25"/>
<house name="Liberty House 25" houseid="190" entryx="536" entryy="801" entryz="6" rent="0" townid="8" size="25"/>
<house name="Liberty House 26" houseid="191" entryx="536" entryy="806" entryz="6" rent="0" townid="8" size="25"/>
<house name="Liberty House 27" houseid="192" entryx="538" entryy="805" entryz="6" rent="0" townid="8" size="26"/>
<house name="Liberty House 28" houseid="193" entryx="538" entryy="800" entryz="6" rent="0" townid="8" size="25"/>
<house name="Liberty House 29" houseid="194" entryx="538" entryy="797" entryz="6" rent="0" townid="8" size="26"/>
<house name="Liberty House 30" houseid="195" entryx="549" entryy="815" entryz="7" rent="0" townid="8" size="20"/>
<house name="Liberty House 31" houseid="196" entryx="549" entryy="819" entryz="7" rent="0" townid="8" size="20"/>
<house name="Liberty House 32" houseid="197" entryx="549" entryy="824" entryz="7" rent="0" townid="8" size="25"/>
<house name="Liberty House 33" houseid="198" entryx="541" entryy="827" entryz="7" rent="0" townid="8" size="23"/>
<house name="Liberty House 34" houseid="199" entryx="537" entryy="812" entryz="7" rent="0" townid="8" size="51"/>
<house name="Liberty House 35" houseid="200" entryx="533" entryy="827" entryz="7" rent="0" townid="8" size="39"/>
<house name="Liberty House 36" houseid="201" entryx="524" entryy="829" entryz="7" rent="0" townid="8" size="66"/>
<house name="DahLia Guild House 2" houseid="202" entryx="259" entryy="200" entryz="7" rent="0" townid="1" size="334"/>
<house name="Liberty House 37" houseid="203" entryx="519" entryy="829" entryz="7" rent="0" townid="8" size="64"/>
<house name="Liberty Guild House 2" houseid="204" entryx="539" entryy="789" entryz="7" rent="0" townid="8" size="548"/>
<house name="Liberty House 38" houseid="205" entryx="571" entryy="868" entryz="7" rent="0" townid="8" size="83"/>
<house name="Liberty House 39" houseid="206" entryx="562" entryy="888" entryz="7" rent="0" townid="8" size="43"/>
<house name="DahLia House 46" houseid="207" entryx="253" entryy="190" entryz="7" rent="0" townid="1" size="56"/>
<house name="DahLia House 47" houseid="208" entryx="264" entryy="191" entryz="7" rent="0" townid="1" size="145"/>
<house name="Dahlia House 48" houseid="211" entryx="267" entryy="214" entryz="5" rent="0" townid="1" size="16"/>
</houses>

Put 211 and makes the message appear.
 
Code:
<house name="DahLia House 47" houseid="208" entryx="264" entryy="191" entryz="7" rent="0" townid="1" size="145"/>
<house name="Dahlia House 48" houseid="211" entryx="267" entryy="214" entryz="5" rent="0" townid="1" size="16"/>

It skips from houseid="208" to "211" Are you sure you have 211 houses? Maybe try 209 as the number.
 
Back
Top