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

Easiest way to debug the client? 1077 TFS 1.2

Tarek

Premium User
Premium User
Joined
Jun 9, 2012
Messages
3,597
Solutions
4
Reaction score
1,186
Location
Sweden
GitHub
Taarek
I am testing a thing on my TFS 1.2 server. How can i debug the client the easiest way?
 
Send a faulty packet?

NetworkMessage msg;
msg.addByte(0x6A);
for(int i = 0; i < 20; i++) {
msg.add<unit32_t>(0);
}

writeToOutputBuffer(msg);
 
Send a faulty packet?

NetworkMessage msg;
msg.addByte(0x6A);
for(int i = 0; i < 20; i++) {
msg.add<unit32_t>(0);
}

writeToOutputBuffer(msg);
Where i am going to add this? :p
 
make a talkaction that debugs you when used, and use something like dosendmagiceffect(cid, 666) or something
 
Just send !x 0 or !z 0 (talkactions), it will debug you and everyone that can see you.
 
Back
Top