<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/">
	<channel>
		<title><![CDATA[Lineage 2 Tower Forum - Help, Tutorial, F.A.Q]]></title>
		<link>http://forum.l2tower.eu/</link>
		<description><![CDATA[Lineage 2 Tower Forum - http://forum.l2tower.eu]]></description>
		<pubDate>Thu, 09 Apr 2026 22:47:08 +0000</pubDate>
		<generator>MyBB</generator>
		<item>
			<title><![CDATA[Help me with Premium fishing and crystallization]]></title>
			<link>http://forum.l2tower.eu/thread-help-me-with-premium-fishing-and-crystallization</link>
			<pubDate>Tue, 10 Jan 2023 03:40:58 +0100</pubDate>
			<guid isPermaLink="false">http://forum.l2tower.eu/thread-help-me-with-premium-fishing-and-crystallization</guid>
			<description><![CDATA[Hello，I bought the premium, but i still cant find fishing and item crystallization botton,i searched but nothing i can use, plz help me.]]></description>
			<content:encoded><![CDATA[Hello，I bought the premium, but i still cant find fishing and item crystallization botton,i searched but nothing i can use, plz help me.]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Help-me AntiCheat]]></title>
			<link>http://forum.l2tower.eu/thread-help-me-anticheat</link>
			<pubDate>Mon, 01 Feb 2021 20:08:42 +0100</pubDate>
			<guid isPermaLink="false">http://forum.l2tower.eu/thread-help-me-anticheat</guid>
			<description><![CDATA[I would like to know if anyone can help me inject the tower into the active antcheat, if they know somehow I tried some and I was not successful. The specific server would be l2megapvp.com<br />
<br />
<br />
thankful]]></description>
			<content:encoded><![CDATA[I would like to know if anyone can help me inject the tower into the active antcheat, if they know somehow I tried some and I was not successful. The specific server would be l2megapvp.com<br />
<br />
<br />
thankful]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[A little help]]></title>
			<link>http://forum.l2tower.eu/thread-a-little-help--33987</link>
			<pubDate>Wed, 30 Sep 2020 01:15:01 +0200</pubDate>
			<guid isPermaLink="false">http://forum.l2tower.eu/thread-a-little-help--33987</guid>
			<description><![CDATA[hello everyone, I am returning to play lineage now, I would like to know if the tower is working normally in the official and how do I configure it?<br />
<br />
since already thank you all.]]></description>
			<content:encoded><![CDATA[hello everyone, I am returning to play lineage now, I would like to know if the tower is working normally in the official and how do I configure it?<br />
<br />
since already thank you all.]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Unsupported game version,]]></title>
			<link>http://forum.l2tower.eu/thread-unsupported-game-version--33937</link>
			<pubDate>Fri, 22 May 2020 06:15:31 +0200</pubDate>
			<guid isPermaLink="false">http://forum.l2tower.eu/thread-unsupported-game-version--33937</guid>
			<description><![CDATA[I'm playing on a C4 server. Downgrading doesn't seem to work. Is it still possible somehow?]]></description>
			<content:encoded><![CDATA[I'm playing on a C4 server. Downgrading doesn't seem to work. Is it still possible somehow?]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[How to create a test server]]></title>
			<link>http://forum.l2tower.eu/thread-how-to-create-a-test-server</link>
			<pubDate>Fri, 23 Nov 2018 07:25:32 +0100</pubDate>
			<guid isPermaLink="false">http://forum.l2tower.eu/thread-how-to-create-a-test-server</guid>
			<description><![CDATA[Anyone can give me a guide on how to make a test / private server off the current official server? I just want to play it myself, so don't need the setup host. <br />
<br />
Thanks,]]></description>
			<content:encoded><![CDATA[Anyone can give me a guide on how to make a test / private server off the current official server? I just want to play it myself, so don't need the setup host. <br />
<br />
Thanks,]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Cant find ID of custom NPC tab]]></title>
			<link>http://forum.l2tower.eu/thread-cant-find-id-of-custom-npc-tab</link>
			<pubDate>Fri, 04 May 2018 13:08:48 +0200</pubDate>
			<guid isPermaLink="false">http://forum.l2tower.eu/thread-cant-find-id-of-custom-npc-tab</guid>
			<description><![CDATA[Hi I am trying to make automatic Vote script for L2Ireal but I am stucked on one vote window where i am not able to select thing.<br />
<br />
Image :  <a href="https://imgur.com/RaH52Z6" target="_blank">https://imgur.com/RaH52Z6</a><br />
<br />
I need Click on that Vitality Belt in Vitality item window, But when i try record it with .recstart it wont record this part, Anyone can help me? Thank you<br />
This is what i have: <div class="codeblock">
<div class="title">Code:<br />
</div><div class="body" dir="ltr"><code>-- L2TOWER:LUA | Voting on Ireal<br />
ShowToClient("Vote","Voting : Enabled!");<br />
repeat<br />
TargetNpc("Denkus", 30082);<br />
Talk();<br />
ClickAndWait("npc_268498820_cm_getreward", "Get Premium Item.");<br />
<br />
 <br />
function DeleteItems(ItemId)<br />
&nbsp;&nbsp;&nbsp;&nbsp;local invList = GetInventory();<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;for item in invList.list do<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;if(item.displayId == ItemId) then<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;DeleteItem(item.objectId, item.ItemNum);<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;ShowToClient("GOD","Item found and delete!")<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;end;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;end<br />
end;<br />
 <br />
 <br />
&nbsp;&nbsp;&nbsp;&nbsp;DeleteItems(15393); -- Vitality Belt<br />
&nbsp;&nbsp;&nbsp;&nbsp;Sleep(1000)<br />
&nbsp;&nbsp;&nbsp;&nbsp;<br />
 <br />
&nbsp;&nbsp;&nbsp;&nbsp;Sleep(320*1000); -- 10 sec<br />
until false;</code></div></div>
[/php]]]></description>
			<content:encoded><![CDATA[Hi I am trying to make automatic Vote script for L2Ireal but I am stucked on one vote window where i am not able to select thing.<br />
<br />
Image :  <a href="https://imgur.com/RaH52Z6" target="_blank">https://imgur.com/RaH52Z6</a><br />
<br />
I need Click on that Vitality Belt in Vitality item window, But when i try record it with .recstart it wont record this part, Anyone can help me? Thank you<br />
This is what i have: <div class="codeblock">
<div class="title">Code:<br />
</div><div class="body" dir="ltr"><code>-- L2TOWER:LUA | Voting on Ireal<br />
ShowToClient("Vote","Voting : Enabled!");<br />
repeat<br />
TargetNpc("Denkus", 30082);<br />
Talk();<br />
ClickAndWait("npc_268498820_cm_getreward", "Get Premium Item.");<br />
<br />
 <br />
function DeleteItems(ItemId)<br />
&nbsp;&nbsp;&nbsp;&nbsp;local invList = GetInventory();<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;for item in invList.list do<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;if(item.displayId == ItemId) then<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;DeleteItem(item.objectId, item.ItemNum);<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;ShowToClient("GOD","Item found and delete!")<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;end;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;end<br />
end;<br />
 <br />
 <br />
&nbsp;&nbsp;&nbsp;&nbsp;DeleteItems(15393); -- Vitality Belt<br />
&nbsp;&nbsp;&nbsp;&nbsp;Sleep(1000)<br />
&nbsp;&nbsp;&nbsp;&nbsp;<br />
 <br />
&nbsp;&nbsp;&nbsp;&nbsp;Sleep(320*1000); -- 10 sec<br />
until false;</code></div></div>
[/php]]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Help with premium please]]></title>
			<link>http://forum.l2tower.eu/thread-help-with-premium-please--23305</link>
			<pubDate>Sat, 17 Feb 2018 18:19:10 +0100</pubDate>
			<guid isPermaLink="false">http://forum.l2tower.eu/thread-help-with-premium-please--23305</guid>
			<description><![CDATA[Hi, i bought premium right now but it is not working for l2destiny.ws? Or maybe yes but i'm a monkey with the confi ( i am 100%) could you help me please, i bought it to play in this server but it is not working... FeelsBadMan<br />
<br />
<br />
1-Sorry for re-post, had not idea about where to post it <br />
2-Sorry for my bad english<br />
<img src="images/smilies/angel.gif" style="vertical-align: middle;" border="0" alt="Angel" title="Angel" /> <img src="images/smilies/angel.gif" style="vertical-align: middle;" border="0" alt="Angel" title="Angel" /><br /><!-- start: postbit_attachments_attachment -->
<br /><img src="images/attachtypes/image.gif" border="0" alt=".png" />&nbsp;&nbsp;<a href="attachment.php?aid=2757" target="_blank">Sin título.png</a> (Size: 63.87 KB / Downloads: 56)
<!-- end: postbit_attachments_attachment -->]]></description>
			<content:encoded><![CDATA[Hi, i bought premium right now but it is not working for l2destiny.ws? Or maybe yes but i'm a monkey with the confi ( i am 100%) could you help me please, i bought it to play in this server but it is not working... FeelsBadMan<br />
<br />
<br />
1-Sorry for re-post, had not idea about where to post it <br />
2-Sorry for my bad english<br />
<img src="images/smilies/angel.gif" style="vertical-align: middle;" border="0" alt="Angel" title="Angel" /> <img src="images/smilies/angel.gif" style="vertical-align: middle;" border="0" alt="Angel" title="Angel" /><br /><!-- start: postbit_attachments_attachment -->
<br /><img src="images/attachtypes/image.gif" border="0" alt=".png" />&nbsp;&nbsp;<a href="attachment.php?aid=2757" target="_blank">Sin título.png</a> (Size: 63.87 KB / Downloads: 56)
<!-- end: postbit_attachments_attachment -->]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[looking for version # that works with l2j server infine odyssey]]></title>
			<link>http://forum.l2tower.eu/thread-looking-for-version-that-works-with-l2j-server-infine-odyssey</link>
			<pubDate>Mon, 05 Feb 2018 22:14:28 +0100</pubDate>
			<guid isPermaLink="false">http://forum.l2tower.eu/thread-looking-for-version-that-works-with-l2j-server-infine-odyssey</guid>
			<description><![CDATA[so set up my own server and would like to run a bot party will l2tower still work and if so what #? thank you]]></description>
			<content:encoded><![CDATA[so set up my own server and would like to run a bot party will l2tower still work and if so what #? thank you]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Help me Pvp - Ajuda aqui pfvor]]></title>
			<link>http://forum.l2tower.eu/thread-help-me-pvp-ajuda-aqui-pfvor</link>
			<pubDate>Wed, 04 Oct 2017 12:15:56 +0200</pubDate>
			<guid isPermaLink="false">http://forum.l2tower.eu/thread-help-me-pvp-ajuda-aqui-pfvor</guid>
			<description><![CDATA[-Alguém poderia me informar se existe algum script ou alguma configuração no tower que quando alguém me atacar e eu estiver afk eu revidar automaticamente , tipo um auto ataque para quem me atacar ? <br />
<br />
<br />
-Could someone please let me know if there is any script or some configuration in the tower that when someone attacks me and I am afk I automatically retaliate, type an auto attack for anyone who attacks me?<br />
<br />
<img src="images/smilies/confused.gif" style="vertical-align: middle;" border="0" alt="Confused" title="Confused" />]]></description>
			<content:encoded><![CDATA[-Alguém poderia me informar se existe algum script ou alguma configuração no tower que quando alguém me atacar e eu estiver afk eu revidar automaticamente , tipo um auto ataque para quem me atacar ? <br />
<br />
<br />
-Could someone please let me know if there is any script or some configuration in the tower that when someone attacks me and I am afk I automatically retaliate, type an auto attack for anyone who attacks me?<br />
<br />
<img src="images/smilies/confused.gif" style="vertical-align: middle;" border="0" alt="Confused" title="Confused" />]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[can be colesed]]></title>
			<link>http://forum.l2tower.eu/thread-can-be-colesed</link>
			<pubDate>Tue, 04 Jul 2017 21:03:58 +0200</pubDate>
			<guid isPermaLink="false">http://forum.l2tower.eu/thread-can-be-colesed</guid>
			<description><![CDATA[can be closed]]></description>
			<content:encoded><![CDATA[can be closed]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Ramona Official server botting]]></title>
			<link>http://forum.l2tower.eu/thread-ramona-official-server-botting</link>
			<pubDate>Sun, 18 Jun 2017 14:54:14 +0200</pubDate>
			<guid isPermaLink="false">http://forum.l2tower.eu/thread-ramona-official-server-botting</guid>
			<description><![CDATA[hello folks. <br />
<br />
Is there any guide how to bot on Ramona oficial server? 4game Innova.<br />
<br />
can anyone  help me pls?<br />
<br />
Thanks in advance]]></description>
			<content:encoded><![CDATA[hello folks. <br />
<br />
Is there any guide how to bot on Ramona oficial server? 4game Innova.<br />
<br />
can anyone  help me pls?<br />
<br />
Thanks in advance]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Request Restart Point]]></title>
			<link>http://forum.l2tower.eu/thread-request-restart-point</link>
			<pubDate>Tue, 14 Feb 2017 21:47:22 +0100</pubDate>
			<guid isPermaLink="false">http://forum.l2tower.eu/thread-request-restart-point</guid>
			<description><![CDATA[I want to create a script to revive, but not "to village". Instead revive to another "area" which is custom. How do I do that? What are<br />
 the options for RequestRestartPoint()?]]></description>
			<content:encoded><![CDATA[I want to create a script to revive, but not "to village". Instead revive to another "area" which is custom. How do I do that? What are<br />
 the options for RequestRestartPoint()?]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[I want to hide my ID on the target]]></title>
			<link>http://forum.l2tower.eu/thread-i-want-to-hide-my-id-on-the-target</link>
			<pubDate>Tue, 13 Sep 2016 20:35:32 +0200</pubDate>
			<guid isPermaLink="false">http://forum.l2tower.eu/thread-i-want-to-hide-my-id-on-the-target</guid>
			<description><![CDATA[I want to hide my ID on the target.<br />
<br />
I do not want others to see my target..<br />
<br />
There is a method for invisibly target?]]></description>
			<content:encoded><![CDATA[I want to hide my ID on the target.<br />
<br />
I do not want others to see my target..<br />
<br />
There is a method for invisibly target?]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[High Five Protocol]]></title>
			<link>http://forum.l2tower.eu/thread-high-five-protocol</link>
			<pubDate>Fri, 05 Aug 2016 02:49:15 +0200</pubDate>
			<guid isPermaLink="false">http://forum.l2tower.eu/thread-high-five-protocol</guid>
			<description><![CDATA[Hello everyone !<br />
i am sorry if im repeating someones question but i couldnt find it anywhere , <br />
what L2Tower Versions Work for Lineage 2 High Five?<br />
<br />
i tried v1.4.1.112 and still get the Protocol error.<br />
<br />
some help here would be much appreciated ! Thank You]]></description>
			<content:encoded><![CDATA[Hello everyone !<br />
i am sorry if im repeating someones question but i couldnt find it anywhere , <br />
what L2Tower Versions Work for Lineage 2 High Five?<br />
<br />
i tried v1.4.1.112 and still get the Protocol error.<br />
<br />
some help here would be much appreciated ! Thank You]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Please help i am a newbie thank you]]></title>
			<link>http://forum.l2tower.eu/thread-please-help-i-am-a-newbie-thank-you</link>
			<pubDate>Tue, 19 Jul 2016 13:47:17 +0200</pubDate>
			<guid isPermaLink="false">http://forum.l2tower.eu/thread-please-help-i-am-a-newbie-thank-you</guid>
			<description><![CDATA[Hello all .<br />
<br />
I am just buy the client l2tower with 1 year <br />
<br />
But now my computer got virus. I need to renew my window.<br />
<br />
I want to ask what happen with me if i setup a new window.<br />
<br />
Or need to buy a new. thank you all]]></description>
			<content:encoded><![CDATA[Hello all .<br />
<br />
I am just buy the client l2tower with 1 year <br />
<br />
But now my computer got virus. I need to renew my window.<br />
<br />
I want to ask what happen with me if i setup a new window.<br />
<br />
Or need to buy a new. thank you all]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Default Timeout]]></title>
			<link>http://forum.l2tower.eu/thread-default-timeout</link>
			<pubDate>Mon, 13 Jun 2016 01:24:57 +0200</pubDate>
			<guid isPermaLink="false">http://forum.l2tower.eu/thread-default-timeout</guid>
			<description><![CDATA[Hello, I need to setup an if statement, using the Default Timeout as a value. It will look like this:<br />
<br />
<div class="codeblock">
<div class="title">Code:<br />
</div><div class="body" dir="ltr"><code>if (defaultTimeout == 5000) then<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;do this;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;end;</code></div></div>
<br />
I searched a bit and thought about using tostring(DefaultTimeout) but I don't really understand how to use it.<br />
Any help appreciated]]></description>
			<content:encoded><![CDATA[Hello, I need to setup an if statement, using the Default Timeout as a value. It will look like this:<br />
<br />
<div class="codeblock">
<div class="title">Code:<br />
</div><div class="body" dir="ltr"><code>if (defaultTimeout == 5000) then<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;do this;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;end;</code></div></div>
<br />
I searched a bit and thought about using tostring(DefaultTimeout) but I don't really understand how to use it.<br />
Any help appreciated]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[[GUIDE] L2Tower as a scanbot for private stores, and a bit more]]></title>
			<link>http://forum.l2tower.eu/thread-guide-l2tower-as-a-scanbot-for-private-stores-and-a-bit-more</link>
			<pubDate>Mon, 25 Apr 2016 00:36:15 +0200</pubDate>
			<guid isPermaLink="false">http://forum.l2tower.eu/thread-guide-l2tower-as-a-scanbot-for-private-stores-and-a-bit-more</guid>
			<description><![CDATA[Hi guys, first of all I would like to thank all the forum guys, who answer stupid nooby questions, to all who shared there master crafted lua scripts and special thanks to the L2Tower creators. <br />
In the end of 2015 I experimented with tower, packets and market in Giran <img src="images/smilies/smile.gif" style="vertical-align: middle;" border="0" alt="Smile" title="Smile" /> and finally I get some time to open source results and write step by step tutorial how to use it.<br />
<br />
Some links:<br />
1) <a href="https://www.youtube.com/watch?v=zXhmcn5j4a8" target="_blank">Youtube video</a> - short demo. Sorry for sound quality and my bad English <img src="images/smilies/sad.gif" style="vertical-align: middle;" border="0" alt="Sad" title="Sad" /><br />
2) <a href="https://medium.com/@dimkk/lineage-2-broker-1a1ae0384108" target="_blank">Step-by-step tutorial</a> - how to make it work<br />
3) <a href="https://github.com/dimkk/l2broker" target="_blank">Github repo</a>.<br />
<br />
Few words about L2Tower here.<br />
<br />
L2Tower is used to scan private stores(In my case - High Five private server) in towns, you can see realization right here:<br />
1) <a href="https://github.com/dimkk/l2broker/blob/master/tower/plugins/PacketLogger.lua" target="_blank">PacketLogger plugin</a> - we parse packets and save it to disk here, some commands init here too.<br />
2) <a href="https://github.com/dimkk/l2broker/blob/master/tower/scripts/roaming.lua" target="_blank">roaming.lua</a><br />
Is the main roaming script, which controls all other aspects of roaming - moving in the towns, teleporting, path creation based on nearest private stores etc.<br />
<br />
All the other stuff of this project is to process and show this scanned data to visitors.<br />
<br />
I hope you guys will find this share useful, cheers.]]></description>
			<content:encoded><![CDATA[Hi guys, first of all I would like to thank all the forum guys, who answer stupid nooby questions, to all who shared there master crafted lua scripts and special thanks to the L2Tower creators. <br />
In the end of 2015 I experimented with tower, packets and market in Giran <img src="images/smilies/smile.gif" style="vertical-align: middle;" border="0" alt="Smile" title="Smile" /> and finally I get some time to open source results and write step by step tutorial how to use it.<br />
<br />
Some links:<br />
1) <a href="https://www.youtube.com/watch?v=zXhmcn5j4a8" target="_blank">Youtube video</a> - short demo. Sorry for sound quality and my bad English <img src="images/smilies/sad.gif" style="vertical-align: middle;" border="0" alt="Sad" title="Sad" /><br />
2) <a href="https://medium.com/@dimkk/lineage-2-broker-1a1ae0384108" target="_blank">Step-by-step tutorial</a> - how to make it work<br />
3) <a href="https://github.com/dimkk/l2broker" target="_blank">Github repo</a>.<br />
<br />
Few words about L2Tower here.<br />
<br />
L2Tower is used to scan private stores(In my case - High Five private server) in towns, you can see realization right here:<br />
1) <a href="https://github.com/dimkk/l2broker/blob/master/tower/plugins/PacketLogger.lua" target="_blank">PacketLogger plugin</a> - we parse packets and save it to disk here, some commands init here too.<br />
2) <a href="https://github.com/dimkk/l2broker/blob/master/tower/scripts/roaming.lua" target="_blank">roaming.lua</a><br />
Is the main roaming script, which controls all other aspects of roaming - moving in the towns, teleporting, path creation based on nearest private stores etc.<br />
<br />
All the other stuff of this project is to process and show this scanned data to visitors.<br />
<br />
I hope you guys will find this share useful, cheers.]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[When i try and inject it says wrong game version]]></title>
			<link>http://forum.l2tower.eu/thread-when-i-try-and-inject-it-says-wrong-game-version</link>
			<pubDate>Fri, 01 Apr 2016 05:33:38 +0200</pubDate>
			<guid isPermaLink="false">http://forum.l2tower.eu/thread-when-i-try-and-inject-it-says-wrong-game-version</guid>
			<description><![CDATA[When i try and inject it says unsupported game version<br />
<hr />
anyone?]]></description>
			<content:encoded><![CDATA[When i try and inject it says unsupported game version<br />
<hr />
anyone?]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[[HELP] Smartguard!!!]]></title>
			<link>http://forum.l2tower.eu/thread-help-smartguard</link>
			<pubDate>Thu, 24 Mar 2016 06:18:24 +0100</pubDate>
			<guid isPermaLink="false">http://forum.l2tower.eu/thread-help-smartguard</guid>
			<description><![CDATA[Pessoal, não estou conseguindo passar do Smartguard, em servidores interlude ele está bloqueando totalmente o L2 Tower, já tentei de diversas formas, por favor me ajudem!<br />
<br />
--------------------------------------------<br />
<br />
Guys, I'm not getting over SmartGuard in Interlude servers it is fully blocking L2 Tower , I've tried a number of ways , please help me !]]></description>
			<content:encoded><![CDATA[Pessoal, não estou conseguindo passar do Smartguard, em servidores interlude ele está bloqueando totalmente o L2 Tower, já tentei de diversas formas, por favor me ajudem!<br />
<br />
--------------------------------------------<br />
<br />
Guys, I'm not getting over SmartGuard in Interlude servers it is fully blocking L2 Tower , I've tried a number of ways , please help me !]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[how to use the GetHtml.lua plugin]]></title>
			<link>http://forum.l2tower.eu/thread-how-to-use-the-gethtml-lua-plugin</link>
			<pubDate>Wed, 13 Jan 2016 01:31:21 +0100</pubDate>
			<guid isPermaLink="false">http://forum.l2tower.eu/thread-how-to-use-the-gethtml-lua-plugin</guid>
			<description><![CDATA[im trying to automate the augment process on a server.<br />
<br />
i want to record the html dialogs while talking to blacksmith and doing augment on a weapon.<br />
<br />
I have scripts for automatic augmentation but i need to modify them for this specific server and I don't understand how to get the GetHtml.lua make me an html.txt with the recorded dialog.]]></description>
			<content:encoded><![CDATA[im trying to automate the augment process on a server.<br />
<br />
i want to record the html dialogs while talking to blacksmith and doing augment on a weapon.<br />
<br />
I have scripts for automatic augmentation but i need to modify them for this specific server and I don't understand how to get the GetHtml.lua make me an html.txt with the recorded dialog.]]></content:encoded>
		</item>
	</channel>
</rss>