| Author |
Topic: CAN SELECT ALL TEAM WEAPONS IN EACH MAP? |
| MAQUINA |
General Member Since: Nov 4, 2006 Posts: 33 Last: May 11, 2009 [view latest posts] |
|
|
|
Category: CoD2 Scripting Posted: Friday, Jul. 27, 2007 10:11 pm |
 |
Hi all ![[wave]](images/BBCode/smilies/wave.gif) Can somebody make a new mod with this?
Allow to select by menu the corresponding weapons and all weapons from the enemy in each map.
Examples:
MATMATA. Germans can select all english weapons and english can select all german weapons.
ROSTOV. Russians can select all german weapons and german can select all russian weapons.
Only this modifications. THANKS!!
WWW.CLANREGIANOS.COM
AFTER MP_CR_KASSERINE COMING SOON TO DOWNLOAD ---> MP_CR_BRETTEVILLE |
 |
|
|
| playername |
 |
Preferred Member Since: Aug 24, 2006 Posts: 821 Last: Apr 15, 2011 [view latest posts] |
|
|
 |
 |
|
|
| MAQUINA |
General Member Since: Nov 4, 2006 Posts: 33 Last: May 11, 2009 [view latest posts] |
|
|
|
Category: CoD2 Scripting Posted: Monday, Jul. 30, 2007 12:15 pm |
 |
I tried it but I don't know how to do it. Only a little but not proffesional insufficient work I did. Sniff!! ![[duh]](images/BBCode/smilies/duh.gif) Now if somebody were very kind... ![[tongue]](images/BBCode/smilies/tongue.gif)
The mod needs this:
PRIMARY WEAPON: one of the own team
SECONDARY WEAPON: one of the corresponding enemy for each map.
Help with this please!! |
 |
|
|
| Reavensito |
General Member Since: Jul 22, 2006 Posts: 74 Last: Nov 21, 2008 [view latest posts] |
|
|
|
Category: CoD2 Scripting Posted: Monday, Jul. 30, 2007 03:03 pm |
 |
Maquina, en el mod zombies hice menús de armas para que los aliados pudieran elegir las armas del eje, pero eso que dices de que elijan armas segun el contrario, es muy muy dificil.
Creo que habría que poner los menús que quieres que haya en cada mapa. Es decir, si fuera un mapa custom, podrias intentar cambiar el weapons_german.gsc y el weapons_equipoaliadoentumapa.gsc
Supongo que al cargar cada mapa cargaría los diferentes .gsc pero no lo tengo claro :S
Si quieres elegir armas secundarias, además de las primarias, lo puedes sacar del eXtreme+, que supongo que es lo que tu buscas.
edited on Jul. 30, 2007 11:05 am by Reavensito |
 |
|
|
| MAQUINA |
General Member Since: Nov 4, 2006 Posts: 33 Last: May 11, 2009 [view latest posts] |
|
|
|
|
|
|
|
| MAQUINA |
General Member Since: Nov 4, 2006 Posts: 33 Last: May 11, 2009 [view latest posts] |
|
|
|
|
| tourist.Tam |
 |
General Member Since: Feb 2, 2007 Posts: 397 Last: Oct 6, 2009 [view latest posts] |
|
|
|
|
| ejderha_3 |
General Member Since: Aug 23, 2007 Posts: 4 Last: Aug 25, 2007 [view latest posts] |
|
|
|
Category: CoD2 Scripting Posted: Thursday, Aug. 23, 2007 11:39 am |
 |
MAQUINA writes...Quote: Hi all ![[wave]](images/BBCode/smilies/wave.gif) Can somebody make a new mod with this?
Allow to select by menu the corresponding weapons and all weapons from the enemy in each map.
Examples:
MATMATA. Germans can select all english weapons and english can select all german weapons.
ROSTOV. Russians can select all german weapons and german can select all russian weapons.
Only this modifications. THANKS!!
WWW.CLANREGIANOS.COM
AFTER MP_CR_KASSERINE COMING SOON TO DOWNLOAD ---> MP_CR_BRETTEVILLE
Well, that is not a mod, but what u want is possible with some script bindings in ur cfg.
Like that:
F5 to select enemy team, than F6 to select enemy weapon.
Code:
bind F5 "vstr german;"
seta german "bind F6 vstr german00; bind F5 vstr brit"
seta brit "bind F6 vstr brit00; bind F5 vstr usa"
seta usa "bind F6 vstr usa00; bind F5 vstr rus"
seta rus "bind F6 vstr rus00; bind F5 vstr german"
seta german00 "openscriptmenu weapon_german mp40_mp; bind F6 vstr german01"
seta german01 "openscriptmenu weapon_german kar98k_mp; bind F6 vstr german02"
seta german02 "openscriptmenu weapon_german g43_mp; bind F6 vstr german03"
seta german03 "openscriptmenu weapon_german kar98k_sniper_mp; bind F6 vstr german04"
seta german04 "openscriptmenu weapon_german shotgun_mp; bind F6 vstr german05"
seta german05 "openscriptmenu weapon_german mp44_mp; bind F6 vstr german00"
seta brit00 "openscriptmenu weapon_british sten_mp; bind F6 vstr brit01"
seta brit01 "openscriptmenu weapon_british enfield_mp; bind F6 vstr brit02"
seta brit02 "openscriptmenu weapon_british m1garand_mp; bind F6 vstr brit03"
seta brit03 "openscriptmenu weapon_british enfield_scoped_mp; bind F6 vstr brit04"
seta brit04 "openscriptmenu weapon_british shotgun_mp; bind F6 vstr brit05"
seta brit05 "openscriptmenu weapon_british thompson_mp; bind F6 vstr brit06"
seta brit06 "openscriptmenu weapon_british bren_mp; bind F6 vstr brit00"
seta usa00 "openscriptmenu weapon_american greasegun_mp; bind F6 vstr usa01"
seta usa01 "openscriptmenu weapon_american m1carbine_mp; bind F6 vstr usa02"
seta usa02 "openscriptmenu weapon_american m1garand_mp; bind F6 vstr usa03"
seta usa03 "openscriptmenu weapon_american springfield_mp; bind F6 vstr usa04"
seta usa04 "openscriptmenu weapon_american shotgun_mp; bind F6 vstr usa05"
seta usa05 "openscriptmenu weapon_american thompson_mp; bind F6 vstr usa06"
seta usa06 "openscriptmenu weapon_american bar_mp; bind F6 vstr usa00"
seta rus00 "openscriptmenu weapon_russian pps42_mp; bind F6 vstr rus01"
seta rus01 "openscriptmenu weapon_russian mosin_nagant_mp; bind F6 vstr rus02"
seta rus02 "openscriptmenu weapon_russian SVT40_mp; bind F6 vstr rus03"
seta rus03 "openscriptmenu weapon_russian mosin_nagant_sniper_mp; bind F6 vstr rus04"
seta rus04 "openscriptmenu weapon_russian shotgun_mp; bind F6 vstr rus05"
seta rus05 "openscriptmenu weapon_russian ppsh_mp; bind F6 vstr rus00"
|
 |
|
|
| OLD_MAN_WITH_GUN |
General Member Since: May 13, 2006 Posts: 754 Last: Jan 23, 2010 [view latest posts] |
|
|
|
Category: CoD2 Scripting Posted: Thursday, Aug. 23, 2007 01:56 pm |
 |
MAQUINA writes...Quote: I saw that mod but I had try to modify it and I don't Know how. You don't need to modify it. The settings you want are already implemented.
Download the mod, put it on your server and make the adjustments you want in the awe.cfg
The dvar awe_secondary_weapon controls the weapon load out.
set awe_secondary_weapon "0" // only a primary weapon
set awe_secondary_weapon "1" // a primary and a secondary weapon (secondary is from the own team)
set awe_secondary_weapon "2" // a primary and a secondary weapon (secondary is from the opposing team).
So, all the things you want can be set by one dvar. |
 |
|
|
|
|
mp_TempleCall of Duty: Mods: Multiplayer (624.12Kb)
|