Jump to content

Recommended Posts

So i've been messing up with my psp lastly and tried to create my own mod for the cheatdevice, i know its outdated but for whoever wants it i post it here

#cheat water size changer
static init;
if (!init)
{
	init = true;
	origSize = getfloat(0x96C96B0);
	size = origSize;
}
if ((buttons & CTRL_RTRIGGER) && (buttons & CTRL_UP))
{
	size = size + 0.5;
}
else if ((buttons & CTRL_RTRIGGER) && (buttons & CTRL_DOWN))
{
	size = size - 0.5;
}
setfloat(0x96C96B0, size);
#off
setfloat(0x96C96B0, origSize);

 

Link to comment
https://gtaforums.com/topic/1002459-water-height-changer-mod/
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
  • 0 User Currently Viewing
    0 members, 0 Anonymous, 0 Guests

×
×
  • Create New...

Important Information

By using GTAForums.com, you agree to our Terms of Use and Privacy Policy.