[Help] problems sending buff packets

11/29/2012 13:16 nonosocr1986#1
Hey there , i'm making a bot for cjb / ma , defense buff works fine while all other buffs don't work , str/agi/hp/int buffs don't work , and i'm sure that's i'm sending the right packet.

this is the working def buff:
PHP Code:
SendKoemV2(0x10,"bbd",39,1,PlayerPID); 
and this is for other buffs that ain't working:
PHP Code:
SendKoemV2(0x10,"bbd",50,1,PlayerPID); // health buff
SendKoemV2(0x10,"bbd",49,1,PlayerPID); // str buff
SendKoemV2(0x10,"bbd",51,1,PlayerPID); // agi buff 
any ideas?
11/29/2012 14:22 mohm195#2
Use search function :p

Send(0x10,"bbd",49,0,PlayerID);
11/30/2012 11:22 nonosocr1986#3
worked like a charm , thanks ^^