ItsMods

Full Version: Jumpheight
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Pages: 1 2
Cool, you should make a config setting to change the height though.
my server wont loaded :\
@nyu_vo Did you update it already?
It uses the new API
ye have update to 1.15, but server console not show on startup plugins loaded..
awesome i cant wait to use this
Recorded with a toaster Troll

OnTopic:

You guys are getting better, maybe i get back to play MW "three" again.

Thanks Barata...
@barata haha, 240p FTW
I'd love to see source code like with your previous plugins.
It's basically this
Code:
//This lowers the protection level of the adress so you can change it.
IntPtr jumpheight = (IntPtr)0x??????;//the jump height address
uint size = 4; //size is 4 bytes because the value is a float.
uint newProtect = 0x40;
uint oldProtect = 0;
VirtualProtect(jumpheight, size, newProtect, out oldProtect);
//The change:
*(float*)0x?????? = 1000f;//the jump height address
Pages: 1 2