Numark
Awesome Active Platinian
Slice Cast here, with another tutorial. I will give out a source code of a Player Scale Mod that could work for many games. I don't mind showing you it, but its a simple code.
Get the transform from a players class or Unity's.
Edit: Since many people get errors and don't know what they're doing... You need to put your PlayerScaleUp code by putting it in your Update Hooks so the mod works.
C++:
void PlayerScaleUp(void* myplayer) {
Vector3 mysize = get_localScale(GetTransform(myplayer));
Vector3 mysize2 = mysize + Vector3(0.5,0.5,0.5);
set_localScale(GetTransform(myplayer), mysize2);
}
Get the transform from a players class or Unity's.
Edit: Since many people get errors and don't know what they're doing... You need to put your PlayerScaleUp code by putting it in your Update Hooks so the mod works.
Last edited: