This is the AMP version of this page.
If you want to load the real page instead, click this text.

Help! Help please

raeivsky234

Platinian
public static GarageCarData AddOnlineCar(string prefab, string name, string instanceID, ObscuredInt sellPrice, byte[] data)

How can I intercept the obscured value in the sell price parameters
 
Last edited:
Obscured stuff is a codestage anticheat thing. You will have to figure out how to bypass the anticheat.

You will need to build a struct for obscured in order to modify obscured values. It is a more advanced modding and not a easy task for new modders.

Best bet is take your time to learn more about modding and possibly find a game that doesn't have an anticheat to start out on.
 
There the anti-cheat does not work, I calmly change the obscured field values, so I need to know how to change the obscured parameter
 
You say you know how to modify

ObscuredInt sellPrice

The obscuredint part. If you have and it didnt work then its not going to work. thats part of the codestage anticheat process. Sometimes modifiying the ObscuredInt etc doesnt work and sometimes it does. If it does then good. if it doesn't then you'll need to bypass codestage anticheat. Which you will need to figure out how to do yourself.
 
Codestage anti-cheat is not configured for hidden values because I change the fields as I want and to what I want I do not know how to change the hidden value in the method parameters that's all
 
Было бы проще, если бы я мог увидеть ваш текущий крючок для этого.
void (*old_AddOnlineCar)(monoString* prefab, monoString* name, monoString* instanceID, int sellPrice, byte* data);

old_AddOnlineCar(CreateString("STRING_B"), CreateString("STRING B"), CreateString("STRING"), 1, nullptr);

old_AddOnlineCar = (void(*)(monoString*, monoString*, monoString*, int, byte*)) getAbsoluteAddress(targetLibName, 0xD5C5F4);
 
Yeah you can't modify obscuredint etc that way. You have to make a custom struct to be able to mod it which requires looking at the obscured struct in codestage anticheat.
 
Yeah you can't modify obscuredint etc that way. You have to make a custom struct to be able to mod it which requires looking at the obscured struct in codestage anticheat.
struct ObscuredInt {
private:
static int cryptoKey;
int currentCryptoKey;
int fakeValue;
bool fakeValueActive;
int hiddenValue;
bool inited;
};

void SetObscuredIntValue(uintptr_t location, int value){
int cryptoKey = *(int *)location;

*(int *)(location + 0x4) = value ^ cryptoKey;
}

void (*old_AddOnlineCar)(monoString* prefab, monoString* name, monoString* instanceID, ObscuredInt* sellPrice, byte* data);

if (btn1) {
uintptr_t test = 0xB0B76C;
old_AddOnlineCar(CreateString("STRING_B"), CreateString("STRING B"), CreateString("STRING"), SetObscuredIntValue(test, 1000000), nullptr);
}

old_AddOnlineCar = (void(*)(monoString*, monoString*, monoString*, ObscuredInt*, byte*)) getAbsoluteAddress(targetLibName, 0xD5CA54);