packets VB sacob could use some help^^

10/23/2007 13:58 Some-Guy#76
Quote:
Originally Posted by Real~Death View Post
if i have the sacob use a pot(life/health)do i need to use the items uniqueId?cus i tryed just resending packets in crack and it would work?And on almost the same subject,droping items do i need the uniqueId or can i just use 4 byte item and a drop packet?(sorry if the question seems stupid or weak and i prolly could figure it out my self,but i get this damn thing to jump/pot/or drop?!?!?Atleast if i know what im supost to do i should be able to find my damn problem
Not sure about using pots, but you need the unique id to drop an item, I was testing that out the other day. Best way to go about it is to store your inventory as an array (1 to 40). with the item ID and unique id there.
10/24/2007 07:02 Question#77
Quote:
Originally Posted by Some-Guy View Post
Best way to go about it is to store your inventory as an array (1 to 40). with the item ID and unique id there.
how would i do that?
10/24/2007 12:44 Some-Guy#78
Quote:
Originally Posted by Question View Post
how would i do that?

Put something like this anywhere in your code
Code:
Public Type Inventory
   ItemID As String
   UniqueID As String
End Type

Public Items(1 to 40) As Inventory
And put this where you're examining incoming packets

Code:
   
Case "Whatever ID for picking up items is"
   While Items(i).ItemID <> ""
      i = i + 1
   Wend

   Items(i).ItemID = mid(IncomingPacket, Where ever the ID is, 4)
   Items(i).UniqueID = mid(IncomingPacket, Where ever the ID is, 4)
Of course you would also want to examine the first inventory packet sent to you in the same way as the item pickup so that your current inventory is also stored. As well as that you will want to record item drop packets and clear certain items from the array.
10/27/2007 08:19 Question#79
how about using the items.frm from crack to view the inventory?it has a lot of syntax errors at the moment but do you think that would work/be easier?everything i tryed to get my inventory to show in a listbox isnt working?!?
06/07/2008 01:07 NovaCygni#80
Bumping because its a value thread ^^ Should be of use to people soon aswell :p
06/07/2008 01:11 IAmHawtness#81
Quote:
Originally Posted by NovaCygni View Post
Bumping because its a value thread ^^ Should be of use to people soon aswell :p
Why? Like ordinary people like us will ever find out how to crack the new encryptions >___________________>
06/07/2008 02:30 Some-Guy#82
Quote:
Originally Posted by IAmHawtness View Post
Why? Like ordinary people like us will ever find out how to crack the new encryptions >___________________>
Well, eventually a proxy is bound to be released, but anyone willing to dedicate some (a lot of) time to learning how to debug the exe and research the method/s used should be able to figure the encryption out, of course logical thinking would help too...not me however, too busy / lazy, both seem appropriate right about now + my brain doesn't work :D
06/07/2008 13:33 NovaCygni#83
Quote:
Originally Posted by Some-Guy View Post
Well, eventually a proxy is bound to be released, but anyone willing to dedicate some (a lot of) time to learning how to debug the exe and research the method/s used should be able to figure the encryption out, of course logical thinking would help too...not me however, too busy / lazy, both seem appropriate right about now + my brain doesn't work :D
:confused: Maybe its just me having a incredibly Logical week but, well,,, theres only 1 thing left to be done now and its done :confused: Oh and thank F*ck the Botchecks havnt changed :D
06/07/2008 19:12 IAmHawtness#84
Quote:
Originally Posted by NovaCygni View Post
:confused: Maybe its just me having a incredibly Logical week but, well,,, theres only 1 thing left to be done now and its done :confused: Oh and thank F*ck the Botchecks havnt changed :D
So, is the encryption the ONLY thing that has changed?
06/08/2008 15:19 NovaCygni#85
Quote:
Originally Posted by IAmHawtness View Post
So, is the encryption the ONLY thing that has changed?
No some packet Structs have changed aswell...