This paket ids are changed on every bigger do client update since version change to 5.0 from bigpoints side.
So you need to fix the pakets ids every 7 days when they are updating.
The source code in the first topic will help you to do it more "automatic", so it's less downtime for your bot.
For exampel:
Code:
int Logout = 20952; // 6.5.1
int CollectBox = 0x525c; // 6.5.1 code(string)
has changed from 6.5.1 to 6.6.1 ->
Code:
int Logout = 30066; // 6.6.1
int CollectBox = 0x3778; // 6.6.1 code(string)
So it's not really helping you creating the pakets.
To do so you'll have to sniff network traffic between official client <-> server
and digg deep into the main.swf where the pakethandler is for client/server commands,
from there you use the paket ids usages to the actual methods where the paket ids are used.
hope it helped.
byebye