<?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[TProgramming Forums - All Forums]]></title>
		<link>http://www.tpforums.org/forum/</link>
		<description><![CDATA[TProgramming Forums - http://www.tpforums.org/forum]]></description>
		<pubDate>Fri, 03 Sep 2010 23:10:55 +0000</pubDate>
		<generator>MyBB</generator>
		<item>
			<title><![CDATA[Multi Mc Patcher]]></title>
			<link>http://www.tpforums.org/forum/thread-7879.html</link>
			<pubDate>Thu, 02 Sep 2010 19:57:38 +0000</pubDate>
			<guid isPermaLink="false">http://www.tpforums.org/forum/thread-7879.html</guid>
			<description><![CDATA[This is a tool built in visual basic 2010, I open tibia in a new filestream with read and write access.<br />
<br />
I searches for example in 8.61 106BF4 and check if the byte is 117 if it is then patch if the byte is 235 then it is already patched.<br />
<br />
Pretty well commented. This is pretty usefull to learn about filestream.<br />
<br />
SuportList:<br />
8.61<br />
8.60<br />
8.57<br />
8.55<br />
8.54<br />
8.53<br />
8.52<br />
8.50<br />
8.42<br />
8.41<br />
8.40<br />
8.31<br />
8.30<br />
8.22<br />
8.21<br />
8.20<br />
8.10<br />
8.0<br />
<br />
All data came from this thread <a href="http://otland.net/f258/mc-multiclient-hex-8-0-8-55-7-6-a-38039/" target="_blank">http://otland.net/f258/mc-multiclient-he...6-a-38039/</a><br />
<br />
All credits to him!<br />
<br /><img src="images/attachtypes/tar.gif" border="0" alt=".rar" />&nbsp;&nbsp;<a href="attachment.php?aid=743" target="_blank">Mc Patcher.rar</a> (Size: 65.75 KB / Downloads: 2)
]]></description>
			<content:encoded><![CDATA[This is a tool built in visual basic 2010, I open tibia in a new filestream with read and write access.<br />
<br />
I searches for example in 8.61 106BF4 and check if the byte is 117 if it is then patch if the byte is 235 then it is already patched.<br />
<br />
Pretty well commented. This is pretty usefull to learn about filestream.<br />
<br />
SuportList:<br />
8.61<br />
8.60<br />
8.57<br />
8.55<br />
8.54<br />
8.53<br />
8.52<br />
8.50<br />
8.42<br />
8.41<br />
8.40<br />
8.31<br />
8.30<br />
8.22<br />
8.21<br />
8.20<br />
8.10<br />
8.0<br />
<br />
All data came from this thread <a href="http://otland.net/f258/mc-multiclient-hex-8-0-8-55-7-6-a-38039/" target="_blank">http://otland.net/f258/mc-multiclient-he...6-a-38039/</a><br />
<br />
All credits to him!<br />
<br /><img src="images/attachtypes/tar.gif" border="0" alt=".rar" />&nbsp;&nbsp;<a href="attachment.php?aid=743" target="_blank">Mc Patcher.rar</a> (Size: 65.75 KB / Downloads: 2)
]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[TibiaAPI Dragging the Mouse]]></title>
			<link>http://www.tpforums.org/forum/thread-7878.html</link>
			<pubDate>Thu, 02 Sep 2010 17:45:18 +0000</pubDate>
			<guid isPermaLink="false">http://www.tpforums.org/forum/thread-7878.html</guid>
			<description><![CDATA[TibiaApi has the function of dragging the mouse?, Example, a fast rod or a rune maker. I've searched already but what I found not entedi. if anyone knows of something, as some say, or an explanation thank you.]]></description>
			<content:encoded><![CDATA[TibiaApi has the function of dragging the mouse?, Example, a fast rod or a rune maker. I've searched already but what I found not entedi. if anyone knows of something, as some say, or an explanation thank you.]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[New Attack Procedure Problem!]]></title>
			<link>http://www.tpforums.org/forum/thread-7877.html</link>
			<pubDate>Wed, 01 Sep 2010 21:54:53 +0000</pubDate>
			<guid isPermaLink="false">http://www.tpforums.org/forum/thread-7877.html</guid>
			<description><![CDATA[When Tibia 8.61 realeased, the attack procedure changed a little!<br />
<span style="font-weight: bold;"><br />
Attack Packet now have 2 Integer Whats are:<br />
First Integer = Creature ID.<br />
Second Int = Count(The count of how many times you Follow/Atack a Player).<br />
Follow Packet now have 2 Integers,Are the same as above.<br />
</span><br />
<br />
I tried to update my procedure, but it's not working.<br />
<blockquote><cite>Quote:</cite><span style="font-weight: bold;">var<br />
atk_time:Integer = 0;<br />
</span><br />
Procedure Attack(Identifica:Longint);<br />
var<br />
  ProcessID: Cardinal;<br />
  PacketBuffer: array [0..200] of byte;<br />
begin<br />
  GetWindowThreadProcessId(FindWindow(nil, Pchar(NewTitle)), @ProcessID);<br />
WriteMemInt(UAddress.RedSquare, Identifica);<br />
 	PacketBuffer[0] := &#36;05;<br />
 	PacketBuffer[1] := &#36;00;<br />
 	PacketBuffer[2] := &#36;A1;<br />
 	CopyMemory(@PacketBuffer[3], @IDENTIFICA, 4);<br />
 <span style="font-weight: bold;"><span style="color: #FF4500;">CopyMemory(@PacketBuffer[7], @atk_time, 4); // I KNOW THE PROBLEM IS IN THIS LINE :/</span> </span><br />
SendPackett(ProcessID, @PacketBuffer);             ////// but I don't know how to "add" the second integer.<br />
<span style="font-weight: bold;">atk_time:=atk_time+1;</span>                                        //// I tried a lot of times, a lot of ways, and nothing worked D:<br />
end;</blockquote>
Ps.: I tried the TibiaAPI new example, but just the RED line I can't fix :/<br />
<br />
And I want to know:<br />
When the atk Count reset?<br />
When the character re-log ?<br />
Thanks <img src="http://www.tpforums.org/forum/images/smilies/biggrin.gif" style="vertical-align: middle;" border="0" alt="Big Grin" title="Big Grin" />]]></description>
			<content:encoded><![CDATA[When Tibia 8.61 realeased, the attack procedure changed a little!<br />
<span style="font-weight: bold;"><br />
Attack Packet now have 2 Integer Whats are:<br />
First Integer = Creature ID.<br />
Second Int = Count(The count of how many times you Follow/Atack a Player).<br />
Follow Packet now have 2 Integers,Are the same as above.<br />
</span><br />
<br />
I tried to update my procedure, but it's not working.<br />
<blockquote><cite>Quote:</cite><span style="font-weight: bold;">var<br />
atk_time:Integer = 0;<br />
</span><br />
Procedure Attack(Identifica:Longint);<br />
var<br />
  ProcessID: Cardinal;<br />
  PacketBuffer: array [0..200] of byte;<br />
begin<br />
  GetWindowThreadProcessId(FindWindow(nil, Pchar(NewTitle)), @ProcessID);<br />
WriteMemInt(UAddress.RedSquare, Identifica);<br />
 	PacketBuffer[0] := &#36;05;<br />
 	PacketBuffer[1] := &#36;00;<br />
 	PacketBuffer[2] := &#36;A1;<br />
 	CopyMemory(@PacketBuffer[3], @IDENTIFICA, 4);<br />
 <span style="font-weight: bold;"><span style="color: #FF4500;">CopyMemory(@PacketBuffer[7], @atk_time, 4); // I KNOW THE PROBLEM IS IN THIS LINE :/</span> </span><br />
SendPackett(ProcessID, @PacketBuffer);             ////// but I don't know how to "add" the second integer.<br />
<span style="font-weight: bold;">atk_time:=atk_time+1;</span>                                        //// I tried a lot of times, a lot of ways, and nothing worked D:<br />
end;</blockquote>
Ps.: I tried the TibiaAPI new example, but just the RED line I can't fix :/<br />
<br />
And I want to know:<br />
When the atk Count reset?<br />
When the character re-log ?<br />
Thanks <img src="http://www.tpforums.org/forum/images/smilies/biggrin.gif" style="vertical-align: middle;" border="0" alt="Big Grin" title="Big Grin" />]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[FPS Limiter, got the code, need executable programme.]]></title>
			<link>http://www.tpforums.org/forum/thread-7872.html</link>
			<pubDate>Wed, 01 Sep 2010 11:33:13 +0000</pubDate>
			<guid isPermaLink="false">http://www.tpforums.org/forum/thread-7872.html</guid>
			<description><![CDATA[Hi, i need external FPS limiter (Framerate) programme,<br />
the code is here: <a href="http://www.tpforums.org/forum/thread-6343-page-1.html?highlight=framerate" target="_blank">http://www.tpforums.org/forum/thread-634...=framerate</a><br />
Could someone create it? Many players would use it for sure.<br />
Thanks. <br />
<div class="codeblock">
<div class="title">Code:<br />
</div><div class="body" dir="ltr"><code>Public Declare Sub CopyMemory Lib "kernel32" Alias "RtlMoveMemory" (Destination As Any, Source As Any, ByVal Length As Long)<br />
<br />
'--------------------------------------------------------<br />
Public Const MemoryFPS = &amp;H76793C '<br />
<br />
Public Const FrameRateCurrentOffset = &amp;H60<br />
Public Const FrameRateLimitOffset = &amp;H58<br />
'--------------------------------------------------------------------------------------<br />
<br />
Public Function Memory(hwnd As Long, Address As Long, Value As Long, Size As Long, Process As Integer)<br />
&nbsp;&nbsp;&nbsp;&nbsp;Dim Pid As Long<br />
&nbsp;&nbsp;&nbsp;&nbsp;Dim phandle As Long<br />
&nbsp;&nbsp;&nbsp;&nbsp;GetWindowThreadProcessId hwnd, Pid<br />
&nbsp;&nbsp;&nbsp;&nbsp;phandle = OpenProcess(&amp;H1F0FFF, False, Pid)<br />
&nbsp;&nbsp;&nbsp;&nbsp;If Process = 1 Then ReadProcessMemory phandle, Address, Value, Size, 0<br />
&nbsp;&nbsp;&nbsp;&nbsp;If Process = 2 Then WriteProcessMemory phandle, Address, Value, Size, 0<br />
&nbsp;&nbsp;&nbsp;&nbsp;CloseHandle phandle<br />
End Function<br />
'--------------------------------------------------------------------------------------------<br />
Public Function ReadFPS()<br />
Dim LocalizarMemFps As Long<br />
Dim MemRealFPS As Long<br />
Dim MemRealLimiteFPS As Long<br />
Dim i As Integer<br />
Dim B(1 To 8) As Byte<br />
Dim f As Double<br />
Dim Temp As Long<br />
<br />
Memory Tibia_Hwnd, MemoryFPS, LocalizarMemFps, 4, RMem<br />
<br />
MemRealFPS = LocalizarMemFps + FrameRateCurrentOffset<br />
MemRealLimiteFPS = LocalizarMemFps + FrameRateLimitOffset<br />
<br />
For i = 1 To 8<br />
&nbsp;&nbsp;&nbsp;&nbsp;Memory Tibia_Hwnd, MemRealFPS + i - 1, Temp, 1, RMem<br />
&nbsp;&nbsp;&nbsp;&nbsp;B(i) = CInt(Temp)<br />
&nbsp;&nbsp;&nbsp;&nbsp;DoEvents<br />
Next i<br />
<br />
CopyMemory f, B(1), 8<br />
ReadFPS = f<br />
<br />
End Function<br />
'------------------------------------------------------------------------------------------<br />
<br />
<br />
Public Function SetFPS(Fps As Integer)<br />
Dim LocalizarMemFps As Long<br />
Dim MemRealFPS As Long<br />
Dim MemRealLimiteFPS As Long<br />
Dim i As Integer<br />
Dim B(1 To 8) As Byte<br />
Dim f As Double<br />
<br />
Memory Tibia_Hwnd, MemoryFPS, LocalizarMemFps, 4, RMem<br />
<br />
MemRealFPS = LocalizarMemFps + FrameRateCurrentOffset<br />
MemRealLimiteFPS = LocalizarMemFps + FrameRateLimitOffset<br />
<br />
f = Round((1110 / Fps) - 5, 1)<br />
CopyMemory B(1), f, 8<br />
<br />
For i = 1 To 8<br />
&nbsp;&nbsp;&nbsp;&nbsp;Memory Tibia_Hwnd, MemRealLimiteFPS + i - 1, CInt(B(i)), 1, WMem<br />
&nbsp;&nbsp;&nbsp;&nbsp;DoEvents<br />
Next i<br />
<br />
End Function</code></div></div>
]]></description>
			<content:encoded><![CDATA[Hi, i need external FPS limiter (Framerate) programme,<br />
the code is here: <a href="http://www.tpforums.org/forum/thread-6343-page-1.html?highlight=framerate" target="_blank">http://www.tpforums.org/forum/thread-634...=framerate</a><br />
Could someone create it? Many players would use it for sure.<br />
Thanks. <br />
<div class="codeblock">
<div class="title">Code:<br />
</div><div class="body" dir="ltr"><code>Public Declare Sub CopyMemory Lib "kernel32" Alias "RtlMoveMemory" (Destination As Any, Source As Any, ByVal Length As Long)<br />
<br />
'--------------------------------------------------------<br />
Public Const MemoryFPS = &amp;H76793C '<br />
<br />
Public Const FrameRateCurrentOffset = &amp;H60<br />
Public Const FrameRateLimitOffset = &amp;H58<br />
'--------------------------------------------------------------------------------------<br />
<br />
Public Function Memory(hwnd As Long, Address As Long, Value As Long, Size As Long, Process As Integer)<br />
&nbsp;&nbsp;&nbsp;&nbsp;Dim Pid As Long<br />
&nbsp;&nbsp;&nbsp;&nbsp;Dim phandle As Long<br />
&nbsp;&nbsp;&nbsp;&nbsp;GetWindowThreadProcessId hwnd, Pid<br />
&nbsp;&nbsp;&nbsp;&nbsp;phandle = OpenProcess(&amp;H1F0FFF, False, Pid)<br />
&nbsp;&nbsp;&nbsp;&nbsp;If Process = 1 Then ReadProcessMemory phandle, Address, Value, Size, 0<br />
&nbsp;&nbsp;&nbsp;&nbsp;If Process = 2 Then WriteProcessMemory phandle, Address, Value, Size, 0<br />
&nbsp;&nbsp;&nbsp;&nbsp;CloseHandle phandle<br />
End Function<br />
'--------------------------------------------------------------------------------------------<br />
Public Function ReadFPS()<br />
Dim LocalizarMemFps As Long<br />
Dim MemRealFPS As Long<br />
Dim MemRealLimiteFPS As Long<br />
Dim i As Integer<br />
Dim B(1 To 8) As Byte<br />
Dim f As Double<br />
Dim Temp As Long<br />
<br />
Memory Tibia_Hwnd, MemoryFPS, LocalizarMemFps, 4, RMem<br />
<br />
MemRealFPS = LocalizarMemFps + FrameRateCurrentOffset<br />
MemRealLimiteFPS = LocalizarMemFps + FrameRateLimitOffset<br />
<br />
For i = 1 To 8<br />
&nbsp;&nbsp;&nbsp;&nbsp;Memory Tibia_Hwnd, MemRealFPS + i - 1, Temp, 1, RMem<br />
&nbsp;&nbsp;&nbsp;&nbsp;B(i) = CInt(Temp)<br />
&nbsp;&nbsp;&nbsp;&nbsp;DoEvents<br />
Next i<br />
<br />
CopyMemory f, B(1), 8<br />
ReadFPS = f<br />
<br />
End Function<br />
'------------------------------------------------------------------------------------------<br />
<br />
<br />
Public Function SetFPS(Fps As Integer)<br />
Dim LocalizarMemFps As Long<br />
Dim MemRealFPS As Long<br />
Dim MemRealLimiteFPS As Long<br />
Dim i As Integer<br />
Dim B(1 To 8) As Byte<br />
Dim f As Double<br />
<br />
Memory Tibia_Hwnd, MemoryFPS, LocalizarMemFps, 4, RMem<br />
<br />
MemRealFPS = LocalizarMemFps + FrameRateCurrentOffset<br />
MemRealLimiteFPS = LocalizarMemFps + FrameRateLimitOffset<br />
<br />
f = Round((1110 / Fps) - 5, 1)<br />
CopyMemory B(1), f, 8<br />
<br />
For i = 1 To 8<br />
&nbsp;&nbsp;&nbsp;&nbsp;Memory Tibia_Hwnd, MemRealLimiteFPS + i - 1, CInt(B(i)), 1, WMem<br />
&nbsp;&nbsp;&nbsp;&nbsp;DoEvents<br />
Next i<br />
<br />
End Function</code></div></div>
]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Inżynieria odwrotna - wideo]]></title>
			<link>http://www.tpforums.org/forum/thread-7871.html</link>
			<pubDate>Wed, 01 Sep 2010 10:00:30 +0000</pubDate>
			<guid isPermaLink="false">http://www.tpforums.org/forum/thread-7871.html</guid>
			<description><![CDATA[Witam!<br />
Dla osób zainteresowanych tematyką RE polecam serię wideo omawiającą to zagadnienie:<br />
<a href="http://re.coldwind.pl/" target="_blank">http://re.coldwind.pl/</a><br />
<br />
Może komuś się przyda <img src="http://www.tpforums.org/forum/images/smilies/smile.gif" style="vertical-align: middle;" border="0" alt="Smile" title="Smile" />. <br />
<br />
elektro]]></description>
			<content:encoded><![CDATA[Witam!<br />
Dla osób zainteresowanych tematyką RE polecam serię wideo omawiającą to zagadnienie:<br />
<a href="http://re.coldwind.pl/" target="_blank">http://re.coldwind.pl/</a><br />
<br />
Może komuś się przyda <img src="http://www.tpforums.org/forum/images/smilies/smile.gif" style="vertical-align: middle;" border="0" alt="Smile" title="Smile" />. <br />
<br />
elektro]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[[Sources] C/C++ Working with context menus]]></title>
			<link>http://www.tpforums.org/forum/thread-7870.html</link>
			<pubDate>Tue, 31 Aug 2010 21:01:45 +0000</pubDate>
			<guid isPermaLink="false">http://www.tpforums.org/forum/thread-7870.html</guid>
			<description><![CDATA[Hello everybody,<br />
<br />
I have seen many threads about making context menus, but none of them include a full source anymore. This is why I decided to post the sources of this. Also, this example was made with the IDE Code-Blocks, so those who programs with Code-Blocks will see the appropriate format if you want to use ASM in your C/C++ code.<br />
<br />
Thanks to Vitor and Stiju.<br />
<br />
I wanted to make an example with a concrete application of context menus, so I decided add a context menu that will open poeple's tibia page. The code is commented so you can understand what is done. <br />
<br />
However, there is still a minor bug in the context menu. Everytime you click your ownmade contextmenu, <span style="font-weight: bold;">it will act as if you clicked on it twice</span>, so it will open 2 pages. I don't know why this problem occurs, maybe we need to add a timer or something. If anyone knows more about this, you are very welcome to post.<br />
<br />
This is what it will look like :<br />
<img src="http://img840.imageshack.us/img840/5851/59663924.png" border="0" alt="[Image: 59663924.png]" /><br />
<br />
<span style="font-weight: bold;">As I said, the sources are compiled using Code-Blocks (which is FULLY FREE). So if you want to compile it with another compiler, you will need to change the ASM sections to make them work with your compiler.</span><br />
<br />
Remarks/questions/bugs are welcome.<br />
<br /><img src="images/attachtypes/zip.gif" border="0" alt=".zip" />&nbsp;&nbsp;<a href="attachment.php?aid=742" target="_blank">AddContextMenu - Tibia\'s Page.zip</a> (Size: 47.43 KB / Downloads: 9)
]]></description>
			<content:encoded><![CDATA[Hello everybody,<br />
<br />
I have seen many threads about making context menus, but none of them include a full source anymore. This is why I decided to post the sources of this. Also, this example was made with the IDE Code-Blocks, so those who programs with Code-Blocks will see the appropriate format if you want to use ASM in your C/C++ code.<br />
<br />
Thanks to Vitor and Stiju.<br />
<br />
I wanted to make an example with a concrete application of context menus, so I decided add a context menu that will open poeple's tibia page. The code is commented so you can understand what is done. <br />
<br />
However, there is still a minor bug in the context menu. Everytime you click your ownmade contextmenu, <span style="font-weight: bold;">it will act as if you clicked on it twice</span>, so it will open 2 pages. I don't know why this problem occurs, maybe we need to add a timer or something. If anyone knows more about this, you are very welcome to post.<br />
<br />
This is what it will look like :<br />
<img src="http://img840.imageshack.us/img840/5851/59663924.png" border="0" alt="[Image: 59663924.png]" /><br />
<br />
<span style="font-weight: bold;">As I said, the sources are compiled using Code-Blocks (which is FULLY FREE). So if you want to compile it with another compiler, you will need to change the ASM sections to make them work with your compiler.</span><br />
<br />
Remarks/questions/bugs are welcome.<br />
<br /><img src="images/attachtypes/zip.gif" border="0" alt=".zip" />&nbsp;&nbsp;<a href="attachment.php?aid=742" target="_blank">AddContextMenu - Tibia\'s Page.zip</a> (Size: 47.43 KB / Downloads: 9)
]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[The referenced component 'TibiaAPI' could not be found.]]></title>
			<link>http://www.tpforums.org/forum/thread-7869.html</link>
			<pubDate>Tue, 31 Aug 2010 17:07:58 +0000</pubDate>
			<guid isPermaLink="false">http://www.tpforums.org/forum/thread-7869.html</guid>
			<description><![CDATA[I try to creat bot, base in TibiaAPI but i add reference in project and try compilation, show this...<br />
<br />
Warning	1	Resolved file has a bad image, no metadata, or is otherwise inaccessible. Could not load file or assembly 'C:\Documents and Settings\USR\Meus documentos\Visual Studio 2008\Projects\WindowsApplication9\WindowsApplication9\TibiaAPI.dll' or one of its dependencies. This assembly is built by a runtime newer than the currently loaded runtime and cannot be loaded.	WindowsApplication9<br />
Warning	2	The referenced component 'TibiaAPI' could not be found.<hr />
I try again...<br />
add reference...<br />
and show this...<br />
<img src="http://img294.imageshack.us/img294/2365/imagexev.jpg" border="0" alt="[Image: imagexev.jpg]" />]]></description>
			<content:encoded><![CDATA[I try to creat bot, base in TibiaAPI but i add reference in project and try compilation, show this...<br />
<br />
Warning	1	Resolved file has a bad image, no metadata, or is otherwise inaccessible. Could not load file or assembly 'C:\Documents and Settings\USR\Meus documentos\Visual Studio 2008\Projects\WindowsApplication9\WindowsApplication9\TibiaAPI.dll' or one of its dependencies. This assembly is built by a runtime newer than the currently loaded runtime and cannot be loaded.	WindowsApplication9<br />
Warning	2	The referenced component 'TibiaAPI' could not be found.<hr />
I try again...<br />
add reference...<br />
and show this...<br />
<img src="http://img294.imageshack.us/img294/2365/imagexev.jpg" border="0" alt="[Image: imagexev.jpg]" />]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Blocking say packets]]></title>
			<link>http://www.tpforums.org/forum/thread-7868.html</link>
			<pubDate>Tue, 31 Aug 2010 16:23:53 +0000</pubDate>
			<guid isPermaLink="false">http://www.tpforums.org/forum/thread-7868.html</guid>
			<description><![CDATA[Hello,<br />
<br />
I've got some problems with blocking player outgoing speech packets<br />
<br />
<div class='geshicode'>
		<div class='codetype'><a href='javascript:' onClick='fnSelect(this.parentNode.parentNode.childNodes[3]);'>select</a> c#</div>
		<div style='padding:0 1em;'><pre class="csharp" style="font-family:Consolas,Monaco,monospace;">Tibia.<span style="color: #0000FF;">Packets</span>.<span style="color: #0000FF;">Outgoing</span>.<span style="color: #0000FF;">PlayerSpeechPacket</span> p <span style="color: #008000;">=</span> <span style="color: #000000;">&#40;</span>Tibia.<span style="color: #0000FF;">Packets</span>.<span style="color: #0000FF;">Outgoing</span>.<span style="color: #0000FF;">PlayerSpeechPacket</span><span style="color: #000000;">&#41;</span>packet<span style="color: #008000;">;</span>
<span style="color: #0600FF;">if</span> <span style="color: #000000;">&#40;</span>p.<span style="color: #0000FF;">Message</span>.<span style="color: #0000FF;">StartsWith</span><span style="color: #000000;">&#40;</span><span style="color: #666666;">&quot;/navsay&quot;</span><span style="color: #000000;">&#41;</span><span style="color: #000000;">&#41;</span>
<span style="color: #000000;">&#123;</span>
       <span style="color: #FF0000;">string</span> Message <span style="color: #008000;">=</span> p.<span style="color: #0000FF;">Message</span>.<span style="color: #0000FF;">Replace</span><span style="color: #000000;">&#40;</span><span style="color: #666666;">&quot;/navsay &quot;</span>, <span style="color: #666666;">&quot;&quot;</span><span style="color: #000000;">&#41;</span><span style="color: #008000;">;</span>
       Program.<span style="color: #0000FF;">MainForm</span>.<span style="color: #0000FF;">Navigation</span>.<span style="color: #0000FF;">SendMessageTibia</span><span style="color: #000000;">&#40;</span>Message<span style="color: #000000;">&#41;</span><span style="color: #008000;">;</span>
       <span style="color: #0600FF;">return</span> false<span style="color: #008000;">;</span>
<span style="color: #000000;">&#125;</span></pre></div></div><br />
I have that code in event but it fails<br />
<br />
Muttley]]></description>
			<content:encoded><![CDATA[Hello,<br />
<br />
I've got some problems with blocking player outgoing speech packets<br />
<br />
<div class='geshicode'>
		<div class='codetype'><a href='javascript:' onClick='fnSelect(this.parentNode.parentNode.childNodes[3]);'>select</a> c#</div>
		<div style='padding:0 1em;'><pre class="csharp" style="font-family:Consolas,Monaco,monospace;">Tibia.<span style="color: #0000FF;">Packets</span>.<span style="color: #0000FF;">Outgoing</span>.<span style="color: #0000FF;">PlayerSpeechPacket</span> p <span style="color: #008000;">=</span> <span style="color: #000000;">&#40;</span>Tibia.<span style="color: #0000FF;">Packets</span>.<span style="color: #0000FF;">Outgoing</span>.<span style="color: #0000FF;">PlayerSpeechPacket</span><span style="color: #000000;">&#41;</span>packet<span style="color: #008000;">;</span>
<span style="color: #0600FF;">if</span> <span style="color: #000000;">&#40;</span>p.<span style="color: #0000FF;">Message</span>.<span style="color: #0000FF;">StartsWith</span><span style="color: #000000;">&#40;</span><span style="color: #666666;">&quot;/navsay&quot;</span><span style="color: #000000;">&#41;</span><span style="color: #000000;">&#41;</span>
<span style="color: #000000;">&#123;</span>
       <span style="color: #FF0000;">string</span> Message <span style="color: #008000;">=</span> p.<span style="color: #0000FF;">Message</span>.<span style="color: #0000FF;">Replace</span><span style="color: #000000;">&#40;</span><span style="color: #666666;">&quot;/navsay &quot;</span>, <span style="color: #666666;">&quot;&quot;</span><span style="color: #000000;">&#41;</span><span style="color: #008000;">;</span>
       Program.<span style="color: #0000FF;">MainForm</span>.<span style="color: #0000FF;">Navigation</span>.<span style="color: #0000FF;">SendMessageTibia</span><span style="color: #000000;">&#40;</span>Message<span style="color: #000000;">&#41;</span><span style="color: #008000;">;</span>
       <span style="color: #0600FF;">return</span> false<span style="color: #008000;">;</span>
<span style="color: #000000;">&#125;</span></pre></div></div><br />
I have that code in event but it fails<br />
<br />
Muttley]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[How this is possible? ;o]]></title>
			<link>http://www.tpforums.org/forum/thread-7867.html</link>
			<pubDate>Mon, 30 Aug 2010 23:09:19 +0000</pubDate>
			<guid isPermaLink="false">http://www.tpforums.org/forum/thread-7867.html</guid>
			<description><![CDATA[<a href="http://www.youtube.com/watch?v=Dvm3WLeaXDU" target="_blank">http://www.youtube.com/watch?v=Dvm3WLeaXDU</a><br />
<br />
How them make that box with informations, health bar? Oo<br />
<br />
And all the hole modification?]]></description>
			<content:encoded><![CDATA[<a href="http://www.youtube.com/watch?v=Dvm3WLeaXDU" target="_blank">http://www.youtube.com/watch?v=Dvm3WLeaXDU</a><br />
<br />
How them make that box with informations, health bar? Oo<br />
<br />
And all the hole modification?]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[The referenced component 'TibiaAPI' could not be found.]]></title>
			<link>http://www.tpforums.org/forum/thread-7866.html</link>
			<pubDate>Mon, 30 Aug 2010 20:44:26 +0000</pubDate>
			<guid isPermaLink="false">http://www.tpforums.org/forum/thread-7866.html</guid>
			<description><![CDATA[I try to creat bot, base in TibiaAPI but i add reference in project and try compilation, show this...<br />
<br />
Warning	1	Resolved file has a bad image, no metadata, or is otherwise inaccessible. Could not load file or assembly 'C:\Documents and Settings\USR\Meus documentos\Visual Studio 2008\Projects\WindowsApplication9\WindowsApplication9\TibiaAPI.dll' or one of its dependencies. This assembly is built by a runtime newer than the currently loaded runtime and cannot be loaded.	WindowsApplication9<br />
Warning	2	The referenced component 'TibiaAPI' could not be found.<hr />
I try again...<br />
add reference...<br />
and show this...<br />
<img src="http://img294.imageshack.us/img294/2365/imagexev.jpg" border="0" alt="[Image: imagexev.jpg]" />]]></description>
			<content:encoded><![CDATA[I try to creat bot, base in TibiaAPI but i add reference in project and try compilation, show this...<br />
<br />
Warning	1	Resolved file has a bad image, no metadata, or is otherwise inaccessible. Could not load file or assembly 'C:\Documents and Settings\USR\Meus documentos\Visual Studio 2008\Projects\WindowsApplication9\WindowsApplication9\TibiaAPI.dll' or one of its dependencies. This assembly is built by a runtime newer than the currently loaded runtime and cannot be loaded.	WindowsApplication9<br />
Warning	2	The referenced component 'TibiaAPI' could not be found.<hr />
I try again...<br />
add reference...<br />
and show this...<br />
<img src="http://img294.imageshack.us/img294/2365/imagexev.jpg" border="0" alt="[Image: imagexev.jpg]" />]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[OnClick in ContextMenu]]></title>
			<link>http://www.tpforums.org/forum/thread-7865.html</link>
			<pubDate>Mon, 30 Aug 2010 18:25:34 +0000</pubDate>
			<guid isPermaLink="false">http://www.tpforums.org/forum/thread-7865.html</guid>
			<description><![CDATA[Hi i do hook on draw ctx menu but i cant do OnClick<br />
my func<br />
<div class="codeblock">
<div class="title">Code:<br />
</div><div class="body" dir="ltr"><code>procedure MyOnClickContextMenu(eventId:integer);<br />
begin<br />
&nbsp;&nbsp;asm<br />
&nbsp;&nbsp; mov esi, ecx<br />
&nbsp;&nbsp;&nbsp;&nbsp;end;<br />
&nbsp;&nbsp;if eventid &gt;= 2000 then<br />
&nbsp;&nbsp;&nbsp;&nbsp;begin<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;asm<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;push eventId<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;mov ecx, esi<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;mov eax, ptrOnClickContextMenu<br />
&nbsp;&nbsp;&nbsp;&nbsp;call eax<br />
&nbsp;&nbsp;end;<br />
&nbsp;&nbsp;&nbsp;&nbsp; end;<br />
//end;<br />
<br />
<br />
<br />
end;</code></div></div>
But when i click on whatever in menu its debug my tibia and on last line i debug window tak unkow event what is wrong?<br />
Ps. Its always take big event id in error like it <br />
<div class="codeblock">
<div class="title">Code:<br />
</div><div class="body" dir="ltr"><code>Event = 172772632</code></div></div>
]]></description>
			<content:encoded><![CDATA[Hi i do hook on draw ctx menu but i cant do OnClick<br />
my func<br />
<div class="codeblock">
<div class="title">Code:<br />
</div><div class="body" dir="ltr"><code>procedure MyOnClickContextMenu(eventId:integer);<br />
begin<br />
&nbsp;&nbsp;asm<br />
&nbsp;&nbsp; mov esi, ecx<br />
&nbsp;&nbsp;&nbsp;&nbsp;end;<br />
&nbsp;&nbsp;if eventid &gt;= 2000 then<br />
&nbsp;&nbsp;&nbsp;&nbsp;begin<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;asm<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;push eventId<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;mov ecx, esi<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;mov eax, ptrOnClickContextMenu<br />
&nbsp;&nbsp;&nbsp;&nbsp;call eax<br />
&nbsp;&nbsp;end;<br />
&nbsp;&nbsp;&nbsp;&nbsp; end;<br />
//end;<br />
<br />
<br />
<br />
end;</code></div></div>
But when i click on whatever in menu its debug my tibia and on last line i debug window tak unkow event what is wrong?<br />
Ps. Its always take big event id in error like it <br />
<div class="codeblock">
<div class="title">Code:<br />
</div><div class="body" dir="ltr"><code>Event = 172772632</code></div></div>
]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[no client bot]]></title>
			<link>http://www.tpforums.org/forum/thread-7864.html</link>
			<pubDate>Mon, 30 Aug 2010 16:25:02 +0000</pubDate>
			<guid isPermaLink="false">http://www.tpforums.org/forum/thread-7864.html</guid>
			<description><![CDATA[Hello.<br />
I want to write a standalone tibia bot... My question is where to start <img src="http://www.tpforums.org/forum/images/smilies/smile.gif" style="vertical-align: middle;" border="0" alt="Smile" title="Smile" /><br />
Is there a similar project going on? I guess the first thing to do would be writing some kind of a protocol interface... <br />
(btw i prefer java/c(++) or some script languages like ruby or python)]]></description>
			<content:encoded><![CDATA[Hello.<br />
I want to write a standalone tibia bot... My question is where to start <img src="http://www.tpforums.org/forum/images/smilies/smile.gif" style="vertical-align: middle;" border="0" alt="Smile" title="Smile" /><br />
Is there a similar project going on? I guess the first thing to do would be writing some kind of a protocol interface... <br />
(btw i prefer java/c(++) or some script languages like ruby or python)]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Eat Food Not working why? :)]]></title>
			<link>http://www.tpforums.org/forum/thread-7863.html</link>
			<pubDate>Mon, 30 Aug 2010 15:36:26 +0000</pubDate>
			<guid isPermaLink="false">http://www.tpforums.org/forum/thread-7863.html</guid>
			<description><![CDATA[Hiho guys <img src="http://www.tpforums.org/forum/images/smilies/biggrin.gif" style="vertical-align: middle;" border="0" alt="Big Grin" title="Big Grin" /> making an OpenSource Bot based on tibiaAPI... so i'm having a problem. since the update to 8.6 the bot is not working the food eat :|<br />
<br />
<div class='geshicode'>
		<div class='codetype'><a href='javascript:' onClick='fnSelect(this.parentNode.parentNode.childNodes[3]);'>select</a> vbnet</div>
		<div style='padding:0 1em;'><pre class="vbnet" style="font-family:Consolas,Monaco,monospace;"><span style="color: #0600FF;">Dim</span> food <span style="color: #FF8000;">As</span> Item <span style="color: #008000;">=</span> client.<span style="color: #0000FF;">Inventory</span>.<span style="color: #0000FF;">GetItems</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span>.<span style="color: #0000FF;">FirstOrDefault</span><span style="color: #000000;">&#40;</span><span style="color: #0600FF;">Function</span><span style="color: #000000;">&#40;</span>i<span style="color: #000000;">&#41;</span> i.<span style="color: #0000FF;">IsInList</span><span style="color: #000000;">&#40;</span>Tibia.<span style="color: #0000FF;">Constants</span>.<span style="color: #0000FF;">ItemLists</span>.<span style="color: #0000FF;">Foods</span>.<span style="color: #0000FF;">Values</span><span style="color: #000000;">&#41;</span><span style="color: #000000;">&#41;</span>
            <span style="color: #0600FF;">If</span> food <span style="color: #FF8000;">IsNot</span> <span style="color: #FF8000;">Nothing</span> <span style="color: #FF8000;">Then</span>
                <span style="color: #008080; font-style: italic;">'make sure the returned item is not nothing and that it's a food </span>
                food.<span style="color: #0000FF;">Use</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> <span style="color: #008080; font-style: italic;">'use the item </span>
            <span style="color: #0600FF;">end</span> <span style="color: #0600FF;">if</span></pre></div></div><br />
<br />
Helpi? <img src="http://www.tpforums.org/forum/images/smilies/biggrin.gif" style="vertical-align: middle;" border="0" alt="Big Grin" title="Big Grin" />]]></description>
			<content:encoded><![CDATA[Hiho guys <img src="http://www.tpforums.org/forum/images/smilies/biggrin.gif" style="vertical-align: middle;" border="0" alt="Big Grin" title="Big Grin" /> making an OpenSource Bot based on tibiaAPI... so i'm having a problem. since the update to 8.6 the bot is not working the food eat :|<br />
<br />
<div class='geshicode'>
		<div class='codetype'><a href='javascript:' onClick='fnSelect(this.parentNode.parentNode.childNodes[3]);'>select</a> vbnet</div>
		<div style='padding:0 1em;'><pre class="vbnet" style="font-family:Consolas,Monaco,monospace;"><span style="color: #0600FF;">Dim</span> food <span style="color: #FF8000;">As</span> Item <span style="color: #008000;">=</span> client.<span style="color: #0000FF;">Inventory</span>.<span style="color: #0000FF;">GetItems</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span>.<span style="color: #0000FF;">FirstOrDefault</span><span style="color: #000000;">&#40;</span><span style="color: #0600FF;">Function</span><span style="color: #000000;">&#40;</span>i<span style="color: #000000;">&#41;</span> i.<span style="color: #0000FF;">IsInList</span><span style="color: #000000;">&#40;</span>Tibia.<span style="color: #0000FF;">Constants</span>.<span style="color: #0000FF;">ItemLists</span>.<span style="color: #0000FF;">Foods</span>.<span style="color: #0000FF;">Values</span><span style="color: #000000;">&#41;</span><span style="color: #000000;">&#41;</span>
            <span style="color: #0600FF;">If</span> food <span style="color: #FF8000;">IsNot</span> <span style="color: #FF8000;">Nothing</span> <span style="color: #FF8000;">Then</span>
                <span style="color: #008080; font-style: italic;">'make sure the returned item is not nothing and that it's a food </span>
                food.<span style="color: #0000FF;">Use</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> <span style="color: #008080; font-style: italic;">'use the item </span>
            <span style="color: #0600FF;">end</span> <span style="color: #0600FF;">if</span></pre></div></div><br />
<br />
Helpi? <img src="http://www.tpforums.org/forum/images/smilies/biggrin.gif" style="vertical-align: middle;" border="0" alt="Big Grin" title="Big Grin" />]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[contextMenu bugs Tibia, why?]]></title>
			<link>http://www.tpforums.org/forum/thread-7862.html</link>
			<pubDate>Mon, 30 Aug 2010 13:23:09 +0000</pubDate>
			<guid isPermaLink="false">http://www.tpforums.org/forum/thread-7862.html</guid>
			<description><![CDATA[Hello, im trying to make a simple contextmenu and i receive this debug on Tibia:<br />
<br />
<img src="http://img72.imageshack.us/img72/5899/errorewi.jpg" border="0" alt="[Image: errorewi.jpg]" /><br />
<br />
My code:<br />
<div class='geshicode'>
		<div class='codetype'><a href='javascript:' onClick='fnSelect(this.parentNode.parentNode.childNodes[3]);'>select</a> c#</div>
		<div style='padding:0 1em;'><pre class="csharp" style="font-family:Consolas,Monaco,monospace;"><span style="color: #0600FF;">using</span> <span style="color: #008080;">System</span><span style="color: #008000;">;</span>
<span style="color: #0600FF;">using</span> <span style="color: #008080;">System.Collections.Generic</span><span style="color: #008000;">;</span>
<span style="color: #0600FF;">using</span> <span style="color: #008080;">System.ComponentModel</span><span style="color: #008000;">;</span>
<span style="color: #0600FF;">using</span> <span style="color: #008080;">System.Data</span><span style="color: #008000;">;</span>
<span style="color: #0600FF;">using</span> <span style="color: #008080;">System.Drawing</span><span style="color: #008000;">;</span>
<span style="color: #0600FF;">using</span> <span style="color: #008080;">System.Linq</span><span style="color: #008000;">;</span>
<span style="color: #0600FF;">using</span> <span style="color: #008080;">System.Text</span><span style="color: #008000;">;</span>
<span style="color: #0600FF;">using</span> <span style="color: #008080;">System.Windows.Forms</span><span style="color: #008000;">;</span>
<span style="color: #0600FF;">using</span> <span style="color: #008080;">Tibia</span><span style="color: #008000;">;</span>
<span style="color: #0600FF;">using</span> <span style="color: #008080;">Tibia.Objects</span><span style="color: #008000;">;</span>
&nbsp;
<span style="color: #0600FF;">namespace</span> TATest
<span style="color: #000000;">&#123;</span>
    <span style="color: #0600FF;">public</span> <span style="color: #0600FF;">partial</span> <span style="color: #FF0000;">class</span> Form1 <span style="color: #008000;">:</span> Form
    <span style="color: #000000;">&#123;</span>
        <span style="color: #0600FF;">private</span> Client client<span style="color: #008000;">;</span>
&nbsp;
        <span style="color: #0600FF;">public</span> Form1<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span>
        <span style="color: #000000;">&#123;</span>
            InitializeComponent<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span><span style="color: #008000;">;</span>
        <span style="color: #000000;">&#125;</span>
&nbsp;
        <span style="color: #0600FF;">private</span> <span style="color: #0600FF;">void</span> Form1_Load<span style="color: #000000;">&#40;</span><span style="color: #FF0000;">object</span> sender, EventArgs e<span style="color: #000000;">&#41;</span>
        <span style="color: #000000;">&#123;</span>
            client <span style="color: #008000;">=</span> Tibia.<span style="color: #0000FF;">Util</span>.<span style="color: #0000FF;">ClientChooser</span>.<span style="color: #0000FF;">ShowBox</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span><span style="color: #008000;">;</span>
            <span style="color: #0600FF;">if</span> <span style="color: #000000;">&#40;</span>client <span style="color: #008000;">==</span> <span style="color: #0600FF;">null</span><span style="color: #000000;">&#41;</span>
            <span style="color: #000000;">&#123;</span>
                MessageBox.<span style="color: #0000FF;">Show</span><span style="color: #000000;">&#40;</span><span style="color: #666666;">&quot;Client not started correctly!&quot;</span><span style="color: #000000;">&#41;</span><span style="color: #008000;">;</span>
                MessageBox.<span style="color: #0000FF;">Show</span><span style="color: #000000;">&#40;</span><span style="color: #666666;">&quot;Exiting...&quot;</span><span style="color: #000000;">&#41;</span><span style="color: #008000;">;</span>
                Application.<span style="color: #0000FF;">Exit</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span><span style="color: #008000;">;</span>
            <span style="color: #000000;">&#125;</span>
        <span style="color: #000000;">&#125;</span>
&nbsp;
        <span style="color: #0600FF;">private</span> <span style="color: #0600FF;">void</span> button3_Click<span style="color: #000000;">&#40;</span><span style="color: #FF0000;">object</span> sender, EventArgs e<span style="color: #000000;">&#41;</span>
        <span style="color: #000000;">&#123;</span>
            <span style="color: #FF0000;">int</span> cmId <span style="color: #008000;">=</span> <span style="color: #FF0000;">1000</span><span style="color: #008000;">;</span>
            <span style="color: #FF0000;">string</span> cmText <span style="color: #008000;">=</span> <span style="color: #666666;">&quot;Test&quot;</span><span style="color: #008000;">;</span>
            <span style="color: #FF0000;">bool</span> cmHasSeparator <span style="color: #008000;">=</span> true<span style="color: #008000;">;</span>
&nbsp;
            client.<span style="color: #0000FF;">ContextMenu</span>.<span style="color: #0000FF;">AddContextMenu</span><span style="color: #000000;">&#40;</span>cmId, cmText, Tibia.<span style="color: #0000FF;">Constants</span>.<span style="color: #0000FF;">ContextMenuType</span>.<span style="color: #0000FF;">SetOutfitContextMenu</span>, cmHasSeparator<span style="color: #000000;">&#41;</span><span style="color: #008000;">;</span>
            client.<span style="color: #0000FF;">ContextMenu</span>.<span style="color: #0000FF;">Click</span> <span style="color: #008000;">+=</span> <a href="http://www.google.com/search?q=new+msdn.microsoft.com"><span style="color: #008000;">new</span></a> Tibia.<span style="color: #0000FF;">Objects</span>.<span style="color: #0000FF;">ContextMenu</span>.<span style="color: #0000FF;">ContextMenuEvent</span><span style="color: #000000;">&#40;</span>ContextMenu_Click<span style="color: #000000;">&#41;</span><span style="color: #008000;">;</span>
        <span style="color: #000000;">&#125;</span>
&nbsp;
        <span style="color: #0600FF;">void</span> ContextMenu_Click<span style="color: #000000;">&#40;</span><span style="color: #FF0000;">int</span> eventId<span style="color: #000000;">&#41;</span>
        <span style="color: #000000;">&#123;</span>
            <span style="color: #0600FF;">if</span> <span style="color: #000000;">&#40;</span>eventId <span style="color: #008000;">==</span> <span style="color: #FF0000;">1000</span><span style="color: #000000;">&#41;</span>
                client.<span style="color: #0000FF;">Console</span>.<span style="color: #0000FF;">Say</span><span style="color: #000000;">&#40;</span><span style="color: #666666;">&quot;Hmm&quot;</span><span style="color: #000000;">&#41;</span><span style="color: #008000;">;</span>
        <span style="color: #000000;">&#125;</span>
    <span style="color: #000000;">&#125;</span>
<span style="color: #000000;">&#125;</span></pre></div></div><br />
<br />
Thanks for any help..<br />
<br />
Ps.: Using latest TibiaAPI.<br />
<br />
I also tryed the Smart Update Test that comes with TibiaAPI SVN and thats bugs Tibia too. :/]]></description>
			<content:encoded><![CDATA[Hello, im trying to make a simple contextmenu and i receive this debug on Tibia:<br />
<br />
<img src="http://img72.imageshack.us/img72/5899/errorewi.jpg" border="0" alt="[Image: errorewi.jpg]" /><br />
<br />
My code:<br />
<div class='geshicode'>
		<div class='codetype'><a href='javascript:' onClick='fnSelect(this.parentNode.parentNode.childNodes[3]);'>select</a> c#</div>
		<div style='padding:0 1em;'><pre class="csharp" style="font-family:Consolas,Monaco,monospace;"><span style="color: #0600FF;">using</span> <span style="color: #008080;">System</span><span style="color: #008000;">;</span>
<span style="color: #0600FF;">using</span> <span style="color: #008080;">System.Collections.Generic</span><span style="color: #008000;">;</span>
<span style="color: #0600FF;">using</span> <span style="color: #008080;">System.ComponentModel</span><span style="color: #008000;">;</span>
<span style="color: #0600FF;">using</span> <span style="color: #008080;">System.Data</span><span style="color: #008000;">;</span>
<span style="color: #0600FF;">using</span> <span style="color: #008080;">System.Drawing</span><span style="color: #008000;">;</span>
<span style="color: #0600FF;">using</span> <span style="color: #008080;">System.Linq</span><span style="color: #008000;">;</span>
<span style="color: #0600FF;">using</span> <span style="color: #008080;">System.Text</span><span style="color: #008000;">;</span>
<span style="color: #0600FF;">using</span> <span style="color: #008080;">System.Windows.Forms</span><span style="color: #008000;">;</span>
<span style="color: #0600FF;">using</span> <span style="color: #008080;">Tibia</span><span style="color: #008000;">;</span>
<span style="color: #0600FF;">using</span> <span style="color: #008080;">Tibia.Objects</span><span style="color: #008000;">;</span>
&nbsp;
<span style="color: #0600FF;">namespace</span> TATest
<span style="color: #000000;">&#123;</span>
    <span style="color: #0600FF;">public</span> <span style="color: #0600FF;">partial</span> <span style="color: #FF0000;">class</span> Form1 <span style="color: #008000;">:</span> Form
    <span style="color: #000000;">&#123;</span>
        <span style="color: #0600FF;">private</span> Client client<span style="color: #008000;">;</span>
&nbsp;
        <span style="color: #0600FF;">public</span> Form1<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span>
        <span style="color: #000000;">&#123;</span>
            InitializeComponent<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span><span style="color: #008000;">;</span>
        <span style="color: #000000;">&#125;</span>
&nbsp;
        <span style="color: #0600FF;">private</span> <span style="color: #0600FF;">void</span> Form1_Load<span style="color: #000000;">&#40;</span><span style="color: #FF0000;">object</span> sender, EventArgs e<span style="color: #000000;">&#41;</span>
        <span style="color: #000000;">&#123;</span>
            client <span style="color: #008000;">=</span> Tibia.<span style="color: #0000FF;">Util</span>.<span style="color: #0000FF;">ClientChooser</span>.<span style="color: #0000FF;">ShowBox</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span><span style="color: #008000;">;</span>
            <span style="color: #0600FF;">if</span> <span style="color: #000000;">&#40;</span>client <span style="color: #008000;">==</span> <span style="color: #0600FF;">null</span><span style="color: #000000;">&#41;</span>
            <span style="color: #000000;">&#123;</span>
                MessageBox.<span style="color: #0000FF;">Show</span><span style="color: #000000;">&#40;</span><span style="color: #666666;">&quot;Client not started correctly!&quot;</span><span style="color: #000000;">&#41;</span><span style="color: #008000;">;</span>
                MessageBox.<span style="color: #0000FF;">Show</span><span style="color: #000000;">&#40;</span><span style="color: #666666;">&quot;Exiting...&quot;</span><span style="color: #000000;">&#41;</span><span style="color: #008000;">;</span>
                Application.<span style="color: #0000FF;">Exit</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span><span style="color: #008000;">;</span>
            <span style="color: #000000;">&#125;</span>
        <span style="color: #000000;">&#125;</span>
&nbsp;
        <span style="color: #0600FF;">private</span> <span style="color: #0600FF;">void</span> button3_Click<span style="color: #000000;">&#40;</span><span style="color: #FF0000;">object</span> sender, EventArgs e<span style="color: #000000;">&#41;</span>
        <span style="color: #000000;">&#123;</span>
            <span style="color: #FF0000;">int</span> cmId <span style="color: #008000;">=</span> <span style="color: #FF0000;">1000</span><span style="color: #008000;">;</span>
            <span style="color: #FF0000;">string</span> cmText <span style="color: #008000;">=</span> <span style="color: #666666;">&quot;Test&quot;</span><span style="color: #008000;">;</span>
            <span style="color: #FF0000;">bool</span> cmHasSeparator <span style="color: #008000;">=</span> true<span style="color: #008000;">;</span>
&nbsp;
            client.<span style="color: #0000FF;">ContextMenu</span>.<span style="color: #0000FF;">AddContextMenu</span><span style="color: #000000;">&#40;</span>cmId, cmText, Tibia.<span style="color: #0000FF;">Constants</span>.<span style="color: #0000FF;">ContextMenuType</span>.<span style="color: #0000FF;">SetOutfitContextMenu</span>, cmHasSeparator<span style="color: #000000;">&#41;</span><span style="color: #008000;">;</span>
            client.<span style="color: #0000FF;">ContextMenu</span>.<span style="color: #0000FF;">Click</span> <span style="color: #008000;">+=</span> <a href="http://www.google.com/search?q=new+msdn.microsoft.com"><span style="color: #008000;">new</span></a> Tibia.<span style="color: #0000FF;">Objects</span>.<span style="color: #0000FF;">ContextMenu</span>.<span style="color: #0000FF;">ContextMenuEvent</span><span style="color: #000000;">&#40;</span>ContextMenu_Click<span style="color: #000000;">&#41;</span><span style="color: #008000;">;</span>
        <span style="color: #000000;">&#125;</span>
&nbsp;
        <span style="color: #0600FF;">void</span> ContextMenu_Click<span style="color: #000000;">&#40;</span><span style="color: #FF0000;">int</span> eventId<span style="color: #000000;">&#41;</span>
        <span style="color: #000000;">&#123;</span>
            <span style="color: #0600FF;">if</span> <span style="color: #000000;">&#40;</span>eventId <span style="color: #008000;">==</span> <span style="color: #FF0000;">1000</span><span style="color: #000000;">&#41;</span>
                client.<span style="color: #0000FF;">Console</span>.<span style="color: #0000FF;">Say</span><span style="color: #000000;">&#40;</span><span style="color: #666666;">&quot;Hmm&quot;</span><span style="color: #000000;">&#41;</span><span style="color: #008000;">;</span>
        <span style="color: #000000;">&#125;</span>
    <span style="color: #000000;">&#125;</span>
<span style="color: #000000;">&#125;</span></pre></div></div><br />
<br />
Thanks for any help..<br />
<br />
Ps.: Using latest TibiaAPI.<br />
<br />
I also tryed the Smart Update Test that comes with TibiaAPI SVN and thats bugs Tibia too. :/]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Adresses]]></title>
			<link>http://www.tpforums.org/forum/thread-7861.html</link>
			<pubDate>Mon, 30 Aug 2010 09:42:26 +0000</pubDate>
			<guid isPermaLink="false">http://www.tpforums.org/forum/thread-7861.html</guid>
			<description><![CDATA[Is it possible to change adresses in already compiled bot?]]></description>
			<content:encoded><![CDATA[Is it possible to change adresses in already compiled bot?]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Jak uzupełniać pakiety free proxy]]></title>
			<link>http://www.tpforums.org/forum/thread-7859.html</link>
			<pubDate>Mon, 30 Aug 2010 07:20:30 +0000</pubDate>
			<guid isPermaLink="false">http://www.tpforums.org/forum/thread-7859.html</guid>
			<description><![CDATA[Witam mam takie pytanie jak uzupełniać pakiety.<br />
W poradniku od Yaboomaster'a było mówione o uzupełnianiu pakietów ale w poradniku brakuje zdj przez to nic nie rozumiem <br />
<blockquote><cite>Quote:</cite>Jak odpalić i sprawdzić pakiet? <br />
Uruchamiasz freeproxy, odpalasz Tibie logujesz się do gry z okienka freeproxy wybierasz "PROXY" i na górze po lewej zaznaczasz "Log Packets" Teraz wystarczy że poruszysz postacią powiedzmy w prawo a zobaczysz coś takiego<br />
<br />
<br />
<br />
Tak wygląda pakiet odpowiedzialny za poruszenie postaci w prawo. <br />
<br />
Jeżeli chcecie sprawdzić pakiet możecie wybrać z okienka Freeproxy <br />
"TOOLS" zaznaczyć Send to Server nacisnąć SEND HEX... i wkleić pakiet <img src="http://www.tpforums.org/forum/images/smilies/smile.gif" style="vertical-align: middle;" border="0" alt="Smile" title="Smile" /><br />
<br />
Tak wygląda pakiet już ładnie uzupełniony i z dodanym nagłówkiem (my tych shitów nie widzimy ale są one niezbędne) Do czasu aż sami nie nauczymy się uzupełniać pakietów pomoże nam w tym biblioteka packet.dll</blockquote>
wysnifowałem taki pakiet<br />
<br />
0E 00 6B AF 00 EF 00 06 01 63 00 EF A1 01 10 03 <br />
<br />
Jest on odpowiedzialny za obrót w lewo ale jak go uzupełnić niewiem dlatego proszę o pomoc]]></description>
			<content:encoded><![CDATA[Witam mam takie pytanie jak uzupełniać pakiety.<br />
W poradniku od Yaboomaster'a było mówione o uzupełnianiu pakietów ale w poradniku brakuje zdj przez to nic nie rozumiem <br />
<blockquote><cite>Quote:</cite>Jak odpalić i sprawdzić pakiet? <br />
Uruchamiasz freeproxy, odpalasz Tibie logujesz się do gry z okienka freeproxy wybierasz "PROXY" i na górze po lewej zaznaczasz "Log Packets" Teraz wystarczy że poruszysz postacią powiedzmy w prawo a zobaczysz coś takiego<br />
<br />
<br />
<br />
Tak wygląda pakiet odpowiedzialny za poruszenie postaci w prawo. <br />
<br />
Jeżeli chcecie sprawdzić pakiet możecie wybrać z okienka Freeproxy <br />
"TOOLS" zaznaczyć Send to Server nacisnąć SEND HEX... i wkleić pakiet <img src="http://www.tpforums.org/forum/images/smilies/smile.gif" style="vertical-align: middle;" border="0" alt="Smile" title="Smile" /><br />
<br />
Tak wygląda pakiet już ładnie uzupełniony i z dodanym nagłówkiem (my tych shitów nie widzimy ale są one niezbędne) Do czasu aż sami nie nauczymy się uzupełniać pakietów pomoże nam w tym biblioteka packet.dll</blockquote>
wysnifowałem taki pakiet<br />
<br />
0E 00 6B AF 00 EF 00 06 01 63 00 EF A1 01 10 03 <br />
<br />
Jest on odpowiedzialny za obrót w lewo ale jak go uzupełnić niewiem dlatego proszę o pomoc]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[[VB.Net] Trade Channel]]></title>
			<link>http://www.tpforums.org/forum/thread-7858.html</link>
			<pubDate>Sun, 29 Aug 2010 21:22:21 +0000</pubDate>
			<guid isPermaLink="false">http://www.tpforums.org/forum/thread-7858.html</guid>
			<description><![CDATA[How can I know which channel active, but asiim or less:<br />
<br />
<br />
<div class='geshicode'>
		<div class='codetype'><a href='javascript:' onClick='fnSelect(this.parentNode.parentNode.childNodes[3]);'>select</a> vbnet</div>
		<div style='padding:0 1em;'><pre class="vbnet" style="font-family:Consolas,Monaco,monospace;"><span style="color: #0600FF;">Dim</span> x <span style="color: #FF8000;">As</span> Tibia.<span style="color: #0000FF;">Constants</span>.<span style="color: #0000FF;">ChatChannel</span> <span style="color: #008000;">=</span> Constants.<span style="color: #0000FF;">ChatChannel</span>.<span style="color: #0000FF;">Trade</span>
        <span style="color: #0600FF;">If</span> x <span style="color: #008000;">=</span> <span style="color: #0600FF;">False</span> <span style="color: #FF8000;">Then</span>
            c.<span style="color: #FF8000;">Input</span>.<span style="color: #0000FF;">SendMessage</span> <span style="color: #000000;">&#40;</span>WM_CHAR, Keys.<span style="color: #0600FF;">Tab</span>, <span style="color: #FF0000;">0</span> <span style="color: #008000;">&#x26;</span><span style="color: #000000;">&#41;</span>
        <span style="color: #FF8000;">Else</span>
            <span style="color: #FF8000;">For</span> <span style="color: #0600FF;">Each</span> i <span style="color: #FF8000;">As</span> Char In <span style="color: #808080;">&quot;Sell Item&quot;</span>
                c.<span style="color: #FF8000;">Input</span>.<span style="color: #0000FF;">SendMessage</span> <span style="color: #000000;">&#40;</span>WM_CHAR, Convert.<span style="color: #0000FF;">ToInt32</span> <span style="color: #000000;">&#40;</span>i<span style="color: #000000;">&#41;</span>, <span style="color: #FF0000;">0</span><span style="color: #000000;">&#41;</span>
            <span style="color: #FF8000;">Next</span>
            c.<span style="color: #FF8000;">Input</span>.<span style="color: #0000FF;">SendMessage</span> <span style="color: #000000;">&#40;</span>WM_CHAR, Keys.<span style="color: #0000FF;">Enter</span>, <span style="color: #FF0000;">0</span><span style="color: #000000;">&#41;</span>
        <span style="color: #0600FF;">End</span> <span style="color: #0600FF;">If</span></pre></div></div><br />
<br />
<br />
Thanks]]></description>
			<content:encoded><![CDATA[How can I know which channel active, but asiim or less:<br />
<br />
<br />
<div class='geshicode'>
		<div class='codetype'><a href='javascript:' onClick='fnSelect(this.parentNode.parentNode.childNodes[3]);'>select</a> vbnet</div>
		<div style='padding:0 1em;'><pre class="vbnet" style="font-family:Consolas,Monaco,monospace;"><span style="color: #0600FF;">Dim</span> x <span style="color: #FF8000;">As</span> Tibia.<span style="color: #0000FF;">Constants</span>.<span style="color: #0000FF;">ChatChannel</span> <span style="color: #008000;">=</span> Constants.<span style="color: #0000FF;">ChatChannel</span>.<span style="color: #0000FF;">Trade</span>
        <span style="color: #0600FF;">If</span> x <span style="color: #008000;">=</span> <span style="color: #0600FF;">False</span> <span style="color: #FF8000;">Then</span>
            c.<span style="color: #FF8000;">Input</span>.<span style="color: #0000FF;">SendMessage</span> <span style="color: #000000;">&#40;</span>WM_CHAR, Keys.<span style="color: #0600FF;">Tab</span>, <span style="color: #FF0000;">0</span> <span style="color: #008000;">&</span><span style="color: #000000;">&#41;</span>
        <span style="color: #FF8000;">Else</span>
            <span style="color: #FF8000;">For</span> <span style="color: #0600FF;">Each</span> i <span style="color: #FF8000;">As</span> Char In <span style="color: #808080;">&quot;Sell Item&quot;</span>
                c.<span style="color: #FF8000;">Input</span>.<span style="color: #0000FF;">SendMessage</span> <span style="color: #000000;">&#40;</span>WM_CHAR, Convert.<span style="color: #0000FF;">ToInt32</span> <span style="color: #000000;">&#40;</span>i<span style="color: #000000;">&#41;</span>, <span style="color: #FF0000;">0</span><span style="color: #000000;">&#41;</span>
            <span style="color: #FF8000;">Next</span>
            c.<span style="color: #FF8000;">Input</span>.<span style="color: #0000FF;">SendMessage</span> <span style="color: #000000;">&#40;</span>WM_CHAR, Keys.<span style="color: #0000FF;">Enter</span>, <span style="color: #FF0000;">0</span><span style="color: #000000;">&#41;</span>
        <span style="color: #0600FF;">End</span> <span style="color: #0600FF;">If</span></pre></div></div><br />
<br />
<br />
Thanks]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[[C++] How to enale light hack on active client?]]></title>
			<link>http://www.tpforums.org/forum/thread-7857.html</link>
			<pubDate>Sun, 29 Aug 2010 12:58:54 +0000</pubDate>
			<guid isPermaLink="false">http://www.tpforums.org/forum/thread-7857.html</guid>
			<description><![CDATA[Can someone write for me simple code, which enable light hack on active tibia window?<br />
<br />
Yours, Xadrian]]></description>
			<content:encoded><![CDATA[Can someone write for me simple code, which enable light hack on active tibia window?<br />
<br />
Yours, Xadrian]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Open Non-existing channel]]></title>
			<link>http://www.tpforums.org/forum/thread-7853.html</link>
			<pubDate>Fri, 27 Aug 2010 14:27:16 +0000</pubDate>
			<guid isPermaLink="false">http://www.tpforums.org/forum/thread-7853.html</guid>
			<description><![CDATA[Hello,<br />
<br />
I'm doing something similar to Elfbot's navigation server and I need to open fake channel which doesn't exist.<br />
<br />
<div class='geshicode'>
		<div class='codetype'><a href='javascript:' onClick='fnSelect(this.parentNode.parentNode.childNodes[3]);'>select</a> c#</div>
		<div style='padding:0 1em;'><pre class="csharp" style="font-family:Consolas,Monaco,monospace;">Tibia.<span style="color: #0000FF;">Packets</span>.<span style="color: #0000FF;">Incoming</span>.<span style="color: #0000FF;">ChannelOpenPacket</span> cop <span style="color: #008000;">=</span> <a href="http://www.google.com/search?q=new+msdn.microsoft.com"><span style="color: #008000;">new</span></a> Tibia.<span style="color: #0000FF;">Packets</span>.<span style="color: #0000FF;">Incoming</span>.<span style="color: #0000FF;">ChannelOpenPacket</span><span style="color: #000000;">&#40;</span>core.<span style="color: #0000FF;">Client</span><span style="color: #000000;">&#41;</span><span style="color: #008000;">;</span>
cop.<span style="color: #0000FF;">ChannelId</span> <span style="color: #008000;">=</span> ChatChannel.<span style="color: #0000FF;">Custom1</span><span style="color: #008000;">;</span>
cop.<span style="color: #0000FF;">ChannelName</span> <span style="color: #008000;">=</span> <span style="color: #666666;">&quot;Navigation&quot;</span><span style="color: #008000;">;</span>
cop.<span style="color: #0000FF;">Send</span><span style="color: #000000;">&#40;</span>Packet.<span style="color: #0000FF;">SendMethod</span>.<span style="color: #0000FF;">Proxy</span><span style="color: #000000;">&#41;</span><span style="color: #008000;">;</span></pre></div></div><br />
<br />
I tried that code and also with PrivateChannelCreatePacket<br />
<br />
What to do?<br />
<br />
Muttley]]></description>
			<content:encoded><![CDATA[Hello,<br />
<br />
I'm doing something similar to Elfbot's navigation server and I need to open fake channel which doesn't exist.<br />
<br />
<div class='geshicode'>
		<div class='codetype'><a href='javascript:' onClick='fnSelect(this.parentNode.parentNode.childNodes[3]);'>select</a> c#</div>
		<div style='padding:0 1em;'><pre class="csharp" style="font-family:Consolas,Monaco,monospace;">Tibia.<span style="color: #0000FF;">Packets</span>.<span style="color: #0000FF;">Incoming</span>.<span style="color: #0000FF;">ChannelOpenPacket</span> cop <span style="color: #008000;">=</span> <a href="http://www.google.com/search?q=new+msdn.microsoft.com"><span style="color: #008000;">new</span></a> Tibia.<span style="color: #0000FF;">Packets</span>.<span style="color: #0000FF;">Incoming</span>.<span style="color: #0000FF;">ChannelOpenPacket</span><span style="color: #000000;">&#40;</span>core.<span style="color: #0000FF;">Client</span><span style="color: #000000;">&#41;</span><span style="color: #008000;">;</span>
cop.<span style="color: #0000FF;">ChannelId</span> <span style="color: #008000;">=</span> ChatChannel.<span style="color: #0000FF;">Custom1</span><span style="color: #008000;">;</span>
cop.<span style="color: #0000FF;">ChannelName</span> <span style="color: #008000;">=</span> <span style="color: #666666;">&quot;Navigation&quot;</span><span style="color: #008000;">;</span>
cop.<span style="color: #0000FF;">Send</span><span style="color: #000000;">&#40;</span>Packet.<span style="color: #0000FF;">SendMethod</span>.<span style="color: #0000FF;">Proxy</span><span style="color: #000000;">&#41;</span><span style="color: #008000;">;</span></pre></div></div><br />
<br />
I tried that code and also with PrivateChannelCreatePacket<br />
<br />
What to do?<br />
<br />
Muttley]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[LightHack on 7.6 [help]]]></title>
			<link>http://www.tpforums.org/forum/thread-7852.html</link>
			<pubDate>Fri, 27 Aug 2010 11:53:53 +0000</pubDate>
			<guid isPermaLink="false">http://www.tpforums.org/forum/thread-7852.html</guid>
			<description><![CDATA[~Delete~<br />
All working close :]]]></description>
			<content:encoded><![CDATA[~Delete~<br />
All working close :]]]></content:encoded>
		</item>
	</channel>
</rss>