Valhalla Legends Archive

Programming => Battle.net Bot Development => Topic started by: Yegg on December 12, 2004, 05:23 PM

Title: Tell me if this is right.
Post by: Yegg on December 12, 2004, 05:23 PM
In Python when i do something like PacketId = 0x0E and then type 0x0E (in the Python Shell (Interpreter)) the integer, 14 comes up. Is this correct? Or like visual basic does Python need to do something like &HE. I know that Pascal does 0x0E, I was pretty sure Python did that too. Can someone just clarify this for me.
Title: Re: Tell me if this is right.
Post by: hismajesty on December 12, 2004, 05:43 PM
Yes: 0x0E = 14
Title: Re: Tell me if this is right.
Post by: Banana fanna fo fanna on December 12, 2004, 07:08 PM
Yup. 0x0e is what you want.