Search results

  1. Help! Using “Contains”

    Aight so I been tryna use Contains to get a player in an with an ID I must be wrong about the way I’m using it cause I get this error Does anyone know the right way to use it? Or a way I could fix what I got going on This is the monoArray struct I’m using template <typename T> struct...
  2. Help! Photon RPC

    Does anyone know how to hook RPC methods in a pun2 game? I tried setting a pointer to the RPC method in the PhotonView class to call a pun method but it didn’t do anything. No crash or anything. I already have a lot of shit done for photon like kicking players and destroying their objects but I...
  3. Help! How do I get the index of a monoArray?

    I was trying to make an ImGui playerlist, and I have the player list printing. I just don't know how to get the index of an item in the array to select, so that whatever I do only happens to that one player.
  4. Help! LLDB attach error

    Video showing my problem: if anyone knows a solution lmk
  5. Help! Array hook errors

    Im trying to get the playerlist... here's the array struct, (found in some unity.h file on github) template <typename T> struct monoArray { void* klass; void* monitor; void* bounds; int max_length; void* vector [1]; int getLength() { return max_length; }...
  6. Solved Help adding scrollbar to custom mono DLL menu

    Im making a DLL mod menu that resembles the LGL menu because ive been seeing a lot of games I wanna mod that use DLL's, and I'm not a fan of the OnGUI look. I just want to add a scrollbar but everything I try crashes the app on launch. I wanted to do the scrollbar before I add the footer because...
  7. Help! How do I remake the obb after i made changes to the assets?

    So I wanted to change textures on a game, when I modified the shared assets i just compressed the extracted obb and changed the file extension, after the game wouldnt load. Any suggestions? tools used: 7zip Asset Studio UABE Paint.net
  8. Solved help, issue with android

    alright so I've been modding android to learn it. Today I tried setting a function pointer. Im using the lgl menu. Heres my pointer: bool (*get_isMine)(void *instance) = (bool (*)(void *))getAbsoluteAddress(targetLibName, 0x914014); bool test; here is my hook: void (*old_Update)(void...
  9. Solved Unity Hook Crashes

    So this happens to every unity framework game I try and mod, I can never hook anything without the game crashing. here's an example (by unityframework I mean games that need to be dumped using the unityframework file, like among us or bullet force) float(*old_speed)(void *_this); float...
  10. Tutorial How To Make A Teleport Hack

    Hello, Im gonna show how to make a basic teleport mod. Isn't the best but its something :). Step one is to add this header, you can either paste it in your tweak.xm or make a Vector3.h file, put it in the same folder as your tweak.xm and import it into your tweak.xm. Like this: #import...
  11. iOS APP SpotUlt++ v8.5.65 Mod IPA

    iTunes Link: ‎Spotify: Discover new music App Name: SpotUlt++ App Version: 8.5.65 Bundle ID: syto203.spotultpp Needs Jailbreak: No! Platform: Apple 64 bit (old devices not working like iPhone 4) Supported iOS: 16 and less. Separate App-Icon: no Supported Devices: - iPhone 5s or newer - iPod...
  12. iOS APP Textastic Code Editor 9 Ver. 9.5.1

    iTunes Link: https://apps.apple.com/app/textastic-code-editor-9/id1049254261 App Name: Textastic Code Editor 9 App Version: v9.5.1 Bundle ID: com.textasticapp.textastic-universal Needs Jailbreak: No! Platform: Apple 64 bit (old devices not working like iPhone 4) Supported iOS: 16 and less...
  13. Help! What types of functions do I need to make esp?

    I've been on many forums and mostly found that I need the enemy's position "get_position" . Are there any other functions I need? (I'm trying to use Mobeans ESP template to start off) here's the info I got so far from forums: Get screen locations of the players Make boxes Put it into a...
  14. Tutorial Hooking Tutorial/Template For Ted's Menu Template

    aight guys so this is my first post on dis account. wanted to start off with something useful. here are a bunch of templates for different function types plus a slider template. float: float(*old_@Function@)(void *_this); float @Function@(void *_this){ if([switches...