Thread Rating:
  • 1 Vote(s) - 1 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Infected..Jump height set by map?
#1
Hi, i know you can easily set different height, speed etc, but is it possible to have it so each map has different heights? As some maps suit this more than others.
[Image: b_560_95_1.png]


[Image: b_560_95_1.png]

Reply

#2
(03-30-2012, 00:07)hillbilly Wrote: Hi, i know you can easily set different height, speed etc, but is it possible to have it so each map has different heights? As some maps suit this more than others.

Pozzuh has made the jump plugin before and I am sure he can such an option to it in less than 5 minutes

CSHARP Code
  1. //some thing like this will do the trick
  2. public float jump_height_var = 0;
  3. public override void OnMapChange()
  4. {
  5. string mapname = GetDvar("mapname");
  6. mapcfg(mapname);
  7. }
  8. public void mapcfg(string mapname)
  9. {
  10. switch (mapname)
  11. {
  12. case "mp_paris":
  13. jump_height_var = 1;//it can also be read from sv_config file for default jump heights on diffident maps
  14. break;
  15. case "mp_alpha":
  16. jump_height_var = 2;
  17. break;
  18. case "mp_bravo":
  19. jump_height_var = 3;
  20. break;
  21. default:
  22. jump_height_var = 0;
  23. break;
  24. }
  25. }

psConfusedry if I have mistakes
someone call PozzuhWink
Reply

#3
Pozzuh has made the jump plugin before and I am sure he can such an option to it in less than 5 minutes

[/quote]

i hope so Wink

will this be made please.
ty
[Image: b_560_95_1.png]


[Image: b_560_95_1.png]

Reply

#4
anyone willing to do this please?

2 main plugins issues for me is this and the restart issue if no infected.
[Image: b_560_95_1.png]


[Image: b_560_95_1.png]

Reply



Possibly Related Threads…
Thread Author Replies Views Last Post
Thumbs Up [Release] AllInOne! for infected robinvm 4 4,468 10-19-2013, 20:00
Last Post: Casper
  Infected Stuff is semi broken DidUknowiPwn 2 3,245 09-21-2013, 20:22
Last Post: surtek
  [Request] no ammo for infected gamemode ExoGamer* 8 5,061 08-15-2013, 18:59
Last Post: Dr3am95
  [Release] AntiRage for Infected Game Mode yokai134 17 13,306 08-04-2013, 22:22
Last Post: yokai134
  jump higher kerm007 9 4,524 07-29-2013, 10:16
Last Post: Arteq
Wink [Release] Shop system for Infected gametype Nekochan 125 70,204 07-05-2013, 18:09
Last Post: mohammadnanaa
  mw3 infected game restarts SniperViper 1 2,068 05-18-2013, 11:37
Last Post: hillbilly
  Help No infected when infected leaves SniperViper 3 3,064 05-17-2013, 23:55
Last Post: DidUknowiPwn
  Infected Choose Plugin ? Hallla 3 3,190 05-12-2013, 13:55
Last Post: Hallla
  Help Infected Shop Plugin Problem Hallla 2 2,909 05-06-2013, 18:29
Last Post: Hallla

Forum Jump:


Users browsing this thread:
1 Guest(s)

Forum Powered By MyBB, Theme by © 2002-2024 Melroy van den Berg.