Page 5 of 9 FirstFirst ... 34567 ... LastLast
Results 61 to 75 of 132
  1. #61
    DIA4A's Avatar
    Join Date
    Jan 2020
    Gender
    male
    Posts
    102
    Reputation
    19
    Thanks
    162
    Seemed that entity + 0xB8 wasnt 7 but i guess checking for DWORD64's all throughout entities and seeing if any cast leads to what a minimap entity could be might work

  2. #62
    Azuki's Avatar
    Join Date
    Mar 2015
    Gender
    female
    Location
    京都市
    Posts
    1,110
    Reputation
    195
    Thanks
    20,173
    My Mood
    Angelic
    function:
    Code:
    il2cpp:0000000181369ED0 DecaGames_RotMG_Managers_MiniMap_MiniMapManager$$AddDynamicObjectToMap proc near
    called by these two:
    Code:
    il2cpp:0000000180C9FAE0 ; void __stdcall LAJOKFLOAKL__JEMDPGJIMHK(LAJOKFLOAKL_o *this)
    il2cpp:0000000180CA02C0 ; void __stdcall LAJOKFLOAKL__KCHKDKPIOLO(LAJOKFLOAKL_o *this)
    being in nexus:
    il2cpp:0000000180C9FAE0 gets called but il2cpp:0000000180CA02C0 is not

    callstack:
    Code:
    (random stuff i don't care about) ->
    il2cpp:0000000180C9E470 ; void __stdcall LAJOKFLOAKL__EGGEOIPOJMM(LAJOKFLOAKL_o *this, DecaGames_RotMG_Objects_Map_Data_ViewHandler_o *FHBLCOBOLGP) ->
    il2cpp:0000000180C9FAE0 ; void __stdcall LAJOKFLOAKL__JEMDPGJIMHK(LAJOKFLOAKL_o *this)


    it's late now. im going off for the day
    Last edited by Azuki; 04-17-2020 at 07:23 PM.

    BTC: 1LLm4gaPYCZsczmi8n1ia1GsEMsDRs2ayy
    ETH: 0x7d8045F6e452045439c831D09BAB19Bf9D5263EE



  3. #63
    DIA4A's Avatar
    Join Date
    Jan 2020
    Gender
    male
    Posts
    102
    Reputation
    19
    Thanks
    162
    I'll try look into it later and see if I can find anything that indicates entities but gotta go through that long ass IDA load time first

    edit:
    Oh yeah seems to have some nice stuff here, 0x3A bytes into an entity seems to be 1 if it's the local player (1 byte/boolean), both local and another player seemed to have a integer value of 27 when 0xB4 bytes in whilst a random enemy had 7 and as this seems to go through every entity its probably one hell of a way to get entity list by perhaps clearing the list every 2 seconds or so, but its 6:31 AM for me so I'll go sleep and try find more info and try make the func in normal code as well as detour this function tomorrow
    Last edited by DIA4A; 04-17-2020 at 09:32 PM.

  4. #64
    index.html's Avatar
    Join Date
    Sep 2017
    Gender
    male
    Location
    Genesis 6:7
    Posts
    101
    Reputation
    10
    Thanks
    293


    Making a little library with live memory writing and reading.
    Last edited by index.html; 04-18-2020 at 07:46 AM.

    2=1+1
    2=sqrt(1)+1
    2=sqrt((-1)*(-1))+1
    2=sqrt(-1)*sqrt(-1)+1
    2=i^2 +1
    2=-1+1
    2=0



  5. The Following User Says Thank You to index.html For This Useful Post:

    Alde. (04-18-2020)

  6. #65
    Azuki's Avatar
    Join Date
    Mar 2015
    Gender
    female
    Location
    京都市
    Posts
    1,110
    Reputation
    195
    Thanks
    20,173
    My Mood
    Angelic
    Quote Originally Posted by DIA4A View Post
    I'll try look into it later and see if I can find anything that indicates entities but gotta go through that long ass IDA load time first

    edit:
    Oh yeah seems to have some nice stuff here, 0x3A bytes into an entity seems to be 1 if it's the local player (1 byte/boolean), both local and another player seemed to have a integer value of 27 when 0xB4 bytes in whilst a random enemy had 7 and as this seems to go through every entity its probably one hell of a way to get entity list by perhaps clearing the list every 2 seconds or so, but its 6:31 AM for me so I'll go sleep and try find more info and try make the func in normal code as well as detour this function tomorrow
    well it IS just a "AddEntityToMinimap" which means it'll only add the entities you can see, which is more than enough. Subsequently there has to be some kind of Dispose logic that would dispose these Entities when they disappear off the camera radius

    edit:
    tidying up naru source currently, might release it uwu

    BTC: 1LLm4gaPYCZsczmi8n1ia1GsEMsDRs2ayy
    ETH: 0x7d8045F6e452045439c831D09BAB19Bf9D5263EE



  7. The Following User Says Thank You to Azuki For This Useful Post:

    LilColossal (04-18-2020)

  8. #66
    DIA4A's Avatar
    Join Date
    Jan 2020
    Gender
    male
    Posts
    102
    Reputation
    19
    Thanks
    162
    Little update, it seems that entities only get passed through there once when seen, so local only gets passed whenever map loads and entities once they are viewable but I guess should this be for any kind of aimbot or sth just an origin delta check should be enough to deter enemies farther than ones weapon reach. Also that's pretty neat, I was also thinking of releasing my source sooner or later but post limit not met

  9. #67
    DIA4A's Avatar
    Join Date
    Jan 2020
    Gender
    male
    Posts
    102
    Reputation
    19
    Thanks
    162

    Some fun stuff, still WIP

  10. #68
    Azuki's Avatar
    Join Date
    Mar 2015
    Gender
    female
    Location
    京都市
    Posts
    1,110
    Reputation
    195
    Thanks
    20,173
    My Mood
    Angelic
    yknow we should make some kind of ****** repo to collect information and share decompiled classes and invoke structs

    BTC: 1LLm4gaPYCZsczmi8n1ia1GsEMsDRs2ayy
    ETH: 0x7d8045F6e452045439c831D09BAB19Bf9D5263EE



  11. #69
    DIA4A's Avatar
    Join Date
    Jan 2020
    Gender
    male
    Posts
    102
    Reputation
    19
    Thanks
    162
    Quote Originally Posted by Azuki View Post
    yknow we should make some kind of ****** repo to collect information and share decompiled classes and invoke structs
    Sounds like an interesting idea but for now I might just keep my stuff closed source, but we'll see

  12. #70
    Azuki's Avatar
    Join Date
    Mar 2015
    Gender
    female
    Location
    京都市
    Posts
    1,110
    Reputation
    195
    Thanks
    20,173
    My Mood
    Angelic
    Quote Originally Posted by DIA4A View Post
    Sounds like an interesting idea but for now I might just keep my stuff closed source, but we'll see
    i mean if you don't trust me lololol.

    getfrompool is interesting

    BTC: 1LLm4gaPYCZsczmi8n1ia1GsEMsDRs2ayy
    ETH: 0x7d8045F6e452045439c831D09BAB19Bf9D5263EE



  13. #71
    DIA4A's Avatar
    Join Date
    Jan 2020
    Gender
    male
    Posts
    102
    Reputation
    19
    Thanks
    162
    Seems interesting but I think ill try find the removing of entities through possibly any function calls/offsets from inside the one adding, also I simply don't want to make my cheat open source yet and either way you might even be ahead of me info wise, a private repo could probably be done though, if you want dm me or sth

  14. #72
    Azuki's Avatar
    Join Date
    Mar 2015
    Gender
    female
    Location
    京都市
    Posts
    1,110
    Reputation
    195
    Thanks
    20,173
    My Mood
    Angelic
    Quote Originally Posted by DIA4A View Post
    Seems interesting but I think ill try find the removing of entities through possibly any function calls/offsets from inside the one adding, also I simply don't want to make my cheat open source yet and either way you might even be ahead of me info wise, a private repo could probably be done though, if you want dm me or sth
    here's a list of functions in MiniMapManager that take a MiniMapObject* as argument and call List.Remove(T, T)
    you will have to check yourself if they're related
    Code:
    void __stdcall DecaGames_RotMG_Managers_MiniMap_MiniMapManager__NIJOGANFMCF(DecaGames_RotMG_Managers_MiniMap_MiniMapManager_o *this, DecaGames_RotMG_Managers_MiniMap_MiniMapObject_o *JIGFEFHICJI)
    void __stdcall DecaGames_RotMG_Managers_MiniMap_MiniMapManager__KBKEFFMIMEG(DecaGames_RotMG_Managers_MiniMap_MiniMapManager_o *this, DecaGames_RotMG_Managers_MiniMap_MiniMapObject_o *JIGFEFHICJI)
    void __stdcall DecaGames_RotMG_Managers_MiniMap_MiniMapManager__BEAGLGEIGOK(DecaGames_RotMG_Managers_MiniMap_MiniMapManager_o *this, DecaGames_RotMG_Managers_MiniMap_MiniMapObject_o *JIGFEFHICJI)

    BTC: 1LLm4gaPYCZsczmi8n1ia1GsEMsDRs2ayy
    ETH: 0x7d8045F6e452045439c831D09BAB19Bf9D5263EE



  15. #73
    DIA4A's Avatar
    Join Date
    Jan 2020
    Gender
    male
    Posts
    102
    Reputation
    19
    Thanks
    162
    Because of naming I get like 0 info from this but I'll try look myself

  16. #74
    Azuki's Avatar
    Join Date
    Mar 2015
    Gender
    female
    Location
    京都市
    Posts
    1,110
    Reputation
    195
    Thanks
    20,173
    My Mood
    Angelic
    Quote Originally Posted by DIA4A View Post
    Because of naming I get like 0 info from this but I'll try look myself
    dump the il2cpp then?

    BTC: 1LLm4gaPYCZsczmi8n1ia1GsEMsDRs2ayy
    ETH: 0x7d8045F6e452045439c831D09BAB19Bf9D5263EE



  17. #75
    DIA4A's Avatar
    Join Date
    Jan 2020
    Gender
    male
    Posts
    102
    Reputation
    19
    Thanks
    162
    Quote Originally Posted by Azuki View Post


    dump the il2cpp then?
    Managed to reverse another thing to check if entity is active, 0x50 DWORD64 nonzero = active (15 units away + alive check using this and health has seem to have made my entity list perfect)
    Last edited by DIA4A; 04-19-2020 at 06:13 AM.

Page 5 of 9 FirstFirst ... 34567 ... LastLast

Similar Threads

  1. RotMG Unity Client/Server Speculation
    By tomgie50 in forum Realm of the Mad God Discussions
    Replies: 8
    Last Post: 01-24-2019, 11:39 AM
  2. [Request] RotMG Hacked Client/Multibox for Mac
    By pyropeanut63 in forum Realm of the Mad God Hacks & Cheats
    Replies: 2
    Last Post: 08-12-2012, 07:38 PM
  3. ROTMG Trinity Client
    By Commander X in forum Realm of the Mad God Hacks & Cheats
    Replies: 192
    Last Post: 07-18-2012, 10:40 PM
  4. Need help in downloading rotmg official client
    By merkator in forum Realm of the Mad God Hacks & Cheats
    Replies: 1
    Last Post: 07-05-2012, 04:53 PM
  5. [RELEASE] RotMG Hacked Client [RELEASE]
    By imayoboeii in forum Realm of the Mad God Hacks & Cheats
    Replies: 1
    Last Post: 05-11-2012, 04:35 PM