Recent content by ·҉ dollaz·҉. .

  1. Help! Chams Shader

    Dump the shaders and log them
  2. Help! Need Help Modding Currency Multiplier

    Some shit like this for a mod menu or something int(*old_function)(void *instance); int function(void *instance) { if (instance != NULL) { if (boolean) { return -99; } } return old_function(instance); } or to return -99 in a hex patch use this...
  3. Help! Need Help Modding Currency Multiplier

    Find a method that deals with money spending and hook it. Then return a high negative number like -999
  4. Help! Help with this code hex

    Bruh you can type the whole hex in. That’s just where the function starts at
  5. Help! How to hook a method with a parameter of PhotonMessageInfo?

    That’s a dumbass question he shows you how to use it there
  6. Solved Features not working

    You only need to call update once. You don’t need 2 different ones to call the fields. You can put it in the same one like this for example since both the fields have the same update void (*old_Update)(void *instance); void Update(void *instance) { if(Field1) { *(int...
  7. Solved Infinite Nitrous mod for NFS Most Wanted

    Memory editor to try and edit the nitrous and debugger to find the offset then patch it in the binary
  8. Help! How to hook a method with a parameter of PhotonMessageInfo?

    Null pointer maybe since you don’t know what it does
  9. Help! how can i use this?

    🤷🏽‍♂️ I’ve been trying to figure out the same thing
  10. Help! how can i use this?

    In the dump the methods you can use have [PunRPC] above it