Author Topic: Wish List! - What would you like to see in eXtreme+  (Read 7092 times)

Offline dkhr4

  • Rank: Private
  • *
  • Posts: 12
Parachuting
« Reply #15 on: September 23, 2008, 02:30:19 pm »
Default Color: currently supported in 2.4
Red: My Suggestions for the future

// ***************************************************************************
// Parachute players
// ***************************************************************************
// 0 = disabled (default)
// 1 = once for each map
// 2 = roundbased: never parachute in after matchstarts
// 3 = always
// 4 = random based (set chance with ex_parachute_chance)
set ex_parachutes "4"

// Chance (percentage) that a player is parachuted, when option "ex_parachutes" is set to "4"
// min = 0 (disabled), max = 100, default = 10
set ex_parachute_chance "10"

Offline 5STAR

  • Rank: Private
  • *
  • Posts: 62
Re: Wish List! - What would you like to see in eXtreme+
« Reply #16 on: November 08, 2008, 11:36:42 am »
What about adding in The Dogs. I know W@W has them but what about us CoD2 players. Any plans on this? Thanks in advance

Offline dkhr4

  • Rank: Private
  • *
  • Posts: 12
Re: Wish List! - What would you like to see in eXtreme+
« Reply #17 on: September 21, 2009, 12:38:59 pm »
Many thanks for following my suggestion regarding the parachuting in v2.5. I've configured it to random and it's working as desired. You're great guys!

Offline ViZo

  • Rank: Private
  • *
  • Posts: 20
    • http://www.pitzklan.hu
Re: Wish List! - What would you like to see in eXtreme+
« Reply #18 on: September 27, 2009, 01:13:44 pm »
FPS controll for client from config?

For example:   cfg:  set maxfps=xxx, when client connect to server, server set client_maxfps= xxx

I try the following and it seems working, but not from config.
My server PB setting is maxfps=250 for client, and i write following line in extreme _ex_clientcontrol.gsc: self setClientCvar("com_maxfps", "250");  

When client connect to server, server set client maxfps=250. If player write it to high in game, the PB first warn after kick player....

Offline anodoz

  • Rank: Private
  • *
  • Posts: 62
Re: Wish List! - What would you like to see in eXtreme+
« Reply #19 on: December 08, 2010, 01:09:16 pm »
i have a suggestion for the tactical/realism options how about doing something about limiting hip shooting so a player has to raise there sites.this would be so much of a help on my tactical server,and force crouch for runners.the anti is ok but were problems, where people just spawn or go up ladders and get warned for running.i really hope you consider the hip shooting thing and more tactical options.we would be willing to help any way we can

thanks

Offline anodoz

  • Rank: Private
  • *
  • Posts: 62
Re: Wish List! - What would you like to see in eXtreme+
« Reply #20 on: December 10, 2010, 02:16:36 pm »
any thoughts about the hip shooting thing.i sure would like to see this added in 2.7

Offline PatmanSan

  • Administrator
  • Rank: Private
  • *****
  • Posts: 2527
Re: Wish List! - What would you like to see in eXtreme+
« Reply #21 on: December 10, 2010, 07:45:56 pm »
If you don't care about warnings and messages, you could add this feature with just one line of code.
Bullets would just not do any damage unless fired when ADS. What do you think?

Offline anodoz

  • Rank: Private
  • *
  • Posts: 62
Re: Wish List! - What would you like to see in eXtreme+
« Reply #22 on: December 10, 2010, 08:24:09 pm »
yes i think that would work for now.how can it be done? :D. normally we  would allow it in a surprise situation only,but it is just to hard to police,so that would great!!

Offline PatmanSan

  • Administrator
  • Rank: Private
  • *****
  • Posts: 2527
Re: Wish List! - What would you like to see in eXtreme+
« Reply #23 on: December 11, 2010, 12:23:11 pm »
Open extreme\_ex_main.gsc

Search for exPlayerDamage
First occurence should be:

exPlayerDamage(eInflictor, eAttacker, iDamage, iDFlags, sMeansOfDeath, sWeapon, vPoint, vDir, sHitLoc, psOffsetTime)

Couple of lines down you'll see:

if(level.ex_readyup && !isDefined(game["readyup_done"])) return;

Below that line add:

if(isPlayer(eAttacker) && !eAttacker playerADS()) return;

Offline anodoz

  • Rank: Private
  • *
  • Posts: 62
Re: Wish List! - What would you like to see in eXtreme+
« Reply #24 on: December 11, 2010, 02:02:49 pm »
wow, thanks ok we went in and tested and that did work! but on the flip side the grenades are not working, cant even kill yourself with one,so what can we do now?

Offline PatmanSan

  • Administrator
  • Rank: Private
  • *****
  • Posts: 2527
Re: Wish List! - What would you like to see in eXtreme+
« Reply #25 on: December 11, 2010, 02:15:08 pm »
Change this line:

if(isPlayer(eAttacker) && !eAttacker playerADS()) return;

Into:

if(isPlayer(eAttacker) && maps\mp\gametypes\_weapons::isMainWeapon(sWeapon) && !eAttacker playerADS()) return;

Offline anodoz

  • Rank: Private
  • *
  • Posts: 62
Re: Wish List! - What would you like to see in eXtreme+
« Reply #26 on: December 11, 2010, 02:56:35 pm »
ok we tested that and grenades are working and no hipping with primary weapons are working,ok what weve notice now is that you can still hip with a pistol and bash is not working at all.so we are making progress hopefully just a couple more things to sort out.thanks for all your help it is much appreciated :D .so what now?

Offline PatmanSan

  • Administrator
  • Rank: Private
  • *****
  • Posts: 2527
Re: Wish List! - What would you like to see in eXtreme+
« Reply #27 on: December 11, 2010, 03:32:29 pm »
Change this line:

if(isPlayer(eAttacker) && maps\mp\gametypes\_weapons::isMainWeapon(sWeapon) && !eAttacker playerADS()) return;

Into:

if(isPlayer(eAttacker) && sMeansOfDeath != "MOD_MELEE" && (maps\mp\gametypes\_weapons::isMainWeapon(sWeapon) || isWeaponType(sWeapon, "pistol")) && !eAttacker playerADS()) return;

(line may wrap in the browser window, but it is ONE line... just like I promised)

Offline anodoz

  • Rank: Private
  • *
  • Posts: 62
Re: Wish List! - What would you like to see in eXtreme+
« Reply #28 on: December 12, 2010, 11:16:20 am »
thank you very much.this seems to be working fine.we'll give it a good test today :)

Offline anodoz

  • Rank: Private
  • *
  • Posts: 62
Re: Wish List! - What would you like to see in eXtreme+
« Reply #29 on: April 28, 2011, 02:06:19 am »
hi pat ,could these ADS settings be causing the turrets and mg's not to work from a mounted position,ive lost my turrets.thanks