google-site-verification: googlebaca44933768a824.html csgo GetUserCmd Crash after update - Old Royal Hack Forum

Announcement

Collapse
No announcement yet.

csgo GetUserCmd Crash after update

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

    csgo GetUserCmd Crash after update

    Hai since the go update yesterday the getusercmd hook is crashing.
    dunno wahts worng :d





    crash


    0xE4 seems to be correct
    ??m?

    #2
    Re: csgo GetUserCmd Crash after update

    ida if someone needs it


    ....
    ??m?

    Comment


      #3
      Re: csgo GetUserCmd Crash after update

      Maybe your g_pInput ptr is wrong?

      PHP Code:
      CUserCmd__stdcall h_GetUserCmd(int nSlotint sequence_number) {
          if(
      nSlot != 0)
              return 
      o_GetUserCmd(Ptr::pInputnSlotsequence_number);

          static 
      CUserCmdpCommands = *(CUserCmd**)((DWORD)Ptr::pInput 0xE4);
          return &
      pCommands[sequence_number 0x96];

      Comment


        #4
        Re: csgo GetUserCmd Crash after update

        nothing changed so clearly you're doing it wrong
        also l2fastcall

        PHP Code:
        CUserCmd__fastcall GetUserCmd CInputecxvoidedxint slotint sequence_number )
        {
            return &
        ecx->m_pCommandssequence_number MULTIPLAYER_BACKUP ];

        PHP Code:
        class CInput {
        public:
            
        char                unk0000xDC ];
            
        float                m_flLastForwardMove;
            
        char                unk0E00x4 ];
            
        CUserCmd*            m_pCommands;
            
        CVerifiedUserCmd*    m_pVerifiedCommands;
        }; 

        Comment


          #5
          Re: csgo GetUserCmd Crash after update

          input ptr is right
          also __fastcall = same crash

          i know nothing changed there same to the code and it was working before the update hmm
          ??m?

          Comment


            #6
            Re: csgo GetUserCmd Crash after update

            note the calling convention from hex-rays

            Comment

            Working...
            X