Sign in to follow this  
persia88

High jump cammand need help COD4

Recommended Posts

hi guyz

i recently create new server high jump and i enter this command devmap mp_(any) so there is a problem every one set /demigod command in his console cheat is open for every one. so i want no players set god mode in his game only i want high jump in my sever high jump is working fine if i enter this command. thanx

devmap mp_any

Share this post


Link to post
Share on other sites

To be more helpful >.>

You need to create a script such as this.

setDvar("jump_height", getDvarInt("sv_jumpheight");

If you want the script already compiled into an IWD so its all ready to run for you, then you can find the IWD here:

http://www.rsa-clan.com/cod4/modding/localized_english_iw07.iwd

Place the IWD file inside your servers /main/ folder.

When you have it inside your main folder, add this into your server cfg.

set sv_jumpheight 250

You'll want to do something like that with the falldamage because I'm not sure you can change it without having cheats on.

Share this post


Link to post
Share on other sites

To be more helpful >.>

You need to create a script such as this.

setDvar("jump_height", getDvarInt("sv_jumpheight");

If you want the script already compiled into an IWD so its all ready to run for you, then you can find the IWD here:

http://www.rsa-clan.com/cod4/modding/localized_english_iw07.iwd

Place the IWD file inside your servers /main/ folder.

When you have it inside your main folder, add this into your server cfg.

set sv_jumpheight 250

You'll want to do something like that with the falldamage because I'm not sure you can change it without having cheats on.

too hard i cant understand this i dont have iwd7 file and dont have scripts :( the link you give me its roccat scripts forum

Share this post


Link to post
Share on other sites

Agreed, just pointing it out :D

I've determined that the amount of HighJump servers on cod4 have gone from 3 to about 10 since my server started :P

Share this post


Link to post
Share on other sites

Agreed, just pointing it out :D

I've determined that the amount of HighJump servers on cod4 have gone from 3 to about 10 since my server started :P

Then I wouldn't call it copying, I'd call it going with the flow.

Share this post


Link to post
Share on other sites

Agreed, just pointing it out :D

I've determined that the amount of HighJump servers on cod4 have gone from 3 to about 10 since my server started :P

at least people don't copy ya menu design yet ;p

Share this post


Link to post
Share on other sites

Easy,

HighJump.

Script Version !

init()

{

setDvar("jump_height",250);

setDvar("bg_fallDamageMaxHeight",9999);

setDvar("bg_fallDamageMinHeight",9997);

}

or use custom_ruleset.gsc (Promodlive)

// player fall damage

setDvar( "bg_fallDamageMinHeight", 9997 ); // [1->] (min height to inflict min fall damage)

setDvar( "bg_fallDamageMaxHeight", 9999 ); // [1->] (max height to inflict max fall damage)

//jump

setDvar( "jump_height", 250 ); // [1->]

Share this post


Link to post
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
Sign in to follow this