iisp33dii / si0n-Source

Release of my vb.net csgo cheat source.
GNU General Public License v3.0
17 stars 11 forks source link

Crashes when searching for csgo #12

Closed id535 closed 6 years ago

id535 commented 6 years ago

If you open the cheat and then csgo, the program crashes

Can you fix please

iisp33dii commented 6 years ago

Working fine for me, did you forget to put the configs in the folder of the exe?

id535 commented 6 years ago

I have the configs in the folder with the cheat but idk why it still crashes. But it doesn't matter so much because i can start csgo first and then the cheat and it works fine.

id535 commented 6 years ago

But i have another issue now. After the new csgo update, i updated the offsets, but the aimbot only works with weapons that don't have skins. If you use a weapon with skins it just doesn't work...

iisp33dii commented 6 years ago

Ill update it within the next few days

id535 commented 6 years ago

oh I figured it out. You now need to read the memory for item definition index as short not integer.

Public Function ID()
        Return mem.rdShort(ptr + m_iItemDefinitionIndex) 
    End Function

Instead of:

Public Function ID()
        Return mem.rdInt(ptr + m_iItemDefinitionIndex) 
    End Function
    Public Function rdInt(pOffset As Integer) As Integer
        Return BitConverter.ToInt32(rdMem(pOffset, 4), 0)
    End Function

    Public Function rdShort(pOffset As Integer) As Short
        Return BitConverter.ToInt16(rdMem(pOffset, 4), 0)
    End Function
iisp33dii commented 6 years ago

Aight, ill update it now