Author | Message | Time |
---|---|---|
ChR0NiC | LoL.......I think I messed up a clan using this packet incorrectly..... [code] Packet ID: 0x78 Direction: Client -> Server (Sent) Format: (DWORD) Cookie (STRING) Target User Remarks: Remove a member from your clan, only shaman or chieftain can send this packet [/code] I used a Null Terminated ;) String For the Target User Because I basically copied and pasted from my promote code. And it literally disbanded the clan....and I was a shaman... [code] With pBuffer .InsertDWORD &H0 .InsertNTString frmMain.W3Clan.SelectedItem.text .SendPacket frmMain.sckBnet, &H78 End With [/code] Is what I did, which I then changed to [code] With pBuffer .InsertDWORD &H0 .InsertNonNTString frmMain.W3Clan.SelectedItem.text .SendPacket frmMain.sckBnet, &H78 End With [/code] I am too afraid to try it again, so is my second version of the Remove from clan code correct?? I don't wanna disband another clan. So yeah, if you wanna mess up someone's clan....use my first code =P | February 29, 2004, 10:55 PM |
UserLoser. | You must have been selected, because 0x73 disbands a clan, while 0x78 removes a user from a clan | February 29, 2004, 11:01 PM |
ChR0NiC | [quote author=UserLoser. link=board=17;threadid=5520;start=0#msg46784 date=1078095664] You must have been selected, because 0x73 disbands a clan, while 0x78 removes a user from a clan [/quote] I did 0x78, because I haven't coded 0x73 yet, plus only a cheftain can disband a clan, I was a shaman. | February 29, 2004, 11:47 PM |
tA-Kane | [quote author=UserLoser. link=board=17;threadid=5520;start=0#msg46784 date=1078095664]You must have been selected, because 0x73 disbands a clan, while 0x78 removes a user from a clan[/quote] [quote author=ChR0NiC link=board=17;threadid=5520;start=0#msg46788 date=1078098426]I did 0x78, because I haven't coded 0x73 yet, plus only a cheftain can disband a clan, I was a shaman.[/quote] I think you missed what UserLoser said: Maybe you had yourself selected? Maybe you removed yourself from the clan? | March 1, 2004, 2:14 AM |
ChR0NiC | [quote author=tA-Kane link=board=17;threadid=5520;start=0#msg46841 date=1078107278] I think you missed what UserLoser said: Maybe you had yourself selected? Maybe you removed yourself from the clan? [/quote] I wish that were the case, the leader of the clan messaged me 1 minute later asking me what I had done, as the clan had been disbanded, and the cheftain was not logged on at the time of this occurance, being all my fault. | March 1, 2004, 3:47 AM |
tA-Kane | Perhaps Battle.net disbands the clan if you send invalid data, or cause some sort of database error? Very weird. Have you done the obvious thing and try to reproduce what you did, with a dummy clan (since you don't want to do it again with your real clan)? | March 1, 2004, 5:26 AM |