Valhalla Legends Forums Archive | Battle.net Bot Development | [vb6] Mcp_Charcreate 0x02 , can some1 check.

AuthorMessageTime
fataly
Call iClear
Call iDWORD(race)  ' this is 0 to 7
Call iWORD(&H2040) ' ladder expansion (do i even need send 40 if i do barb sorc pala necro or amazon? )
Call iSTRING(newname) ' heh, my new hero name
Call iHEADER(&H2, BNRS_HEADER)
Call iPacket(Form1.Winsock2.SocketHandle)
ShowChat vbGreen, "Creating new character " & newname & " " & race


Im getting connection drop after i send this, and dunno why.
Here log :
12 00 02 00 00 00 00 00 00 6A 65 70 73 6D 69 6E  .........jepsmin
61 73                                                                          as
January 24, 2009, 6:50 PM
Ringo
First, you're flag looks screwed up.
Second, you're character name string has no null terminator..

You're flag should be somthing like this:
Dim Flag as integer
If LADDER then flag = flag or &H40
if LOD then flag = flag or &H20
if HARDCORE then flag = flag or &H4
January 24, 2009, 8:31 PM
fataly
Ohh, thanks now its working flawless :)
January 24, 2009, 9:20 PM

Search