if any1 is kind enoughf 2 translate into english alot ppl would be happy or even make some .cfg with the most used stuff etc ak47/deagle/flash/smoke stopping power and stuff like that
Yeah, that's a pretty strange way of setting it up. Wacky Germans... But, it provides all the necessary base code to do whatever you want. For instance, here's a script I made to cycle between all of the secondary nades with one key:
Acutally, I haven't tested that yet, so it may not be necessary to repeat the "openscriptmenu -1" for every item. In that case, it would look like this:
well i dont think ppl use 100 different combo's anyway, just bind 2 full sets which u use often, and if u really need something different, custom change it manually
yeah, I'm only going to bind a couple loadouts. But the nade cycle script will be very useful for me. I often need to switch to smoke to block a sniper's line of sight but don't get to it in time.
BTW, does anyone know a command that will print text to the screen? Also, the variable for the draw distance?
No, I dont want it to print to everyone on the server, just my screen. In the source engine the echo command does this. Oh, and nevermind on the lod variable, I found it. r_lodBias, if anyone else was interested.
Well, it appears the original author of the script made it the way he did with good reason: it won't let you execute more than one change at a time. So the only way to do whole classes to one key is to continually change the alias it's bound to and repeatedly push the key. Not a very good setup if you ask me. I think I'll just make binds for each of the categories to cycle through each item/perk like I did for the nades. Again, if anyone know a command to print text to the console/screen, please post it. It would be nice to have the script print on the screen the name of the weapon/perk that is selected.
like this bind KP_DOWNARROW "openscriptmenu -1 loadout_primary:ak47; say_team ak47 next round, it tells in say_team that you have selected ak47, a good thing so you are sure you did press the right button, for the weapon you want next round, or do you only want it on your screen..?
#29 flash/smoke cycle dosent work, atleast not on servers where stun is disabled, it might work where all 3 special nades are allowed, havent tested yet though:::EDIT nvm i forgot 2 change the bind key 2 my desire, works well cycling thru smoke/flash, but i have made the nade selection on a bind each
and a bind for switzhing class, would be nice
example bind 2 "openscriptmenu -1 loadout_choose_class_assuelt;say_team assult next round", or something like that? or choose_class and primary/secondery/nades all with one button, but thats not possible or what
restyle i know, i asked cause someone said autoexec.cfg works...
i wanna put my config stuff (netsettings, binds and co) in a autoexec.cfg which is executed automatically on game start. i'm too stupid or it just dont work :D
No, autoexec no longer executes automatically. You do put it in the main folder, but you have to add it to your shortcut, ie: "C:\games\Call of Duty 4 - Modern Warfare\iw3mp.exe" +exec autoexec.cfg
weapon binds
here is what we all want http://forum.esgnserver2.de/thread.php?po..
if any1 is kind enoughf 2 translate into english alot ppl would be happy or even make some .cfg with the most used stuff etc ak47/deagle/flash/smoke stopping power and stuff like that
i want
that.
Translate? <3
Really simple
As you know, the English are notorious for not being able to speak any languages, barely even our own. So give us a break.
#13 bit of both
Vstr s1;
set s1 "vstr s2"
set s2 "openscriptmenu -1 loadout_primary:m4; bind F9 vstr s3"
set s3 "openscriptmenu -1 loadout_primary_attachment:assault:none; bind F9 vstr s4"
set s4 "openscriptmenu -1 loadout_secondary:deserteagle; bind F9 vstr s5"
set s5 "openscriptmenu -1 loadout_secondary_attachment:pistol:none; bind F9 vstr s6"
set s6 "openscriptmenu -1 loadout_grenade:concussion_grenade; bind F9 vstr s7"
set s7 "openscriptmenu -1 loadout_perk1:specialty_extraammo; bind F9 vstr s8"
set s8 "openscriptmenu -1 loadout_perk2:specialty_bulletdamage; bind F9 vstr s9"
set s9 "openscriptmenu -1 loadout_perk3:specialty_holdbreath; bind F9 vstr s10"
set s10 "openscriptmenu changeclass_mw go; set s1 vstr s2; bind F9 exec waffetest.cfg"
And those are the different weapons/perks etc.
WEAPON:
m16
ak47
m4
g3
g36c
m14
mp44
mp5
skorpion
uzi
ak47u
p90
saw
rpd
m60e4
winchester1200
m1014
m40a3
m21
dragonuv
remington700
barrett
WEAPON Attachment:
assault:gl
assault:silencer
assault:reflex
assault:acog
-------------
smg:silencer
smg:reflex
smg:acog
-------------
lmg:reflex
lmg:grip
lmg:acog
-------------
shotgun:reflex
shotgun:grip
sniper:acog
PISTOL:
beretta
usp
colt45
deserteagle
deserteaglegold
PISTOL ATTACHMENT:
silencer
GRENADE:
flash_grenade
concussion_grenade
smoke_grenade
PERK1:
c4_mp
specialty_specialgrenade
claymore_mp
specialty_fraggrenade
specialty_extraammo
specialty_detectexplosive
PERK2:
specialty_bulletdamage
specialty_armorvest
claymore_fastreload
specialty_rof
specialty_gpsjammer
specialty_explosivedamage
PERK2:
specialty_longersprint
specialty_bulletaccuracy
claymore_pistoldeath
specialty_grenadepulldeath
specialty_bulletpenetration
specialty_holdbreath
specialty_quieter
specialty_parabolic
// nade cycle
seta stun "openscriptmenu -1 loadout_grenade:concussion_grenade; set nade_cyc vstr smoke"
seta smoke "openscriptmenu -1 loadout_grenade:smoke_grenade; set nade_cyc vstr flash"
seta flash "openscriptmenu -1 loadout_grenade:flash_grenade; set nade_cyc vstr stun"
seta nade_cyc "vstr stun"
bind 0 "vstr nade_cyc"
You could simply bind individual items to a specific key like so:
bind anykey "openscriptmenu -1 loadout_secondary:deserteagle"
Or you could assign entire loadouts to a key like this:
bind anykey "openscriptmenu -1 loadout_primary:m4;
openscriptmenu -1 loadout_primary_attachment:assault:none;
openscriptmenu -1 loadout_secondary:deserteagle;
openscriptmenu -1 loadout_secondary_attachment:pistol:none;
openscriptmenu -1 loadout_grenade:concussion_grenade;
openscriptmenu -1 loadout_perk1:specialty_extraammo;
openscriptmenu -1 loadout_perk2:specialty_bulletdamage;
openscriptmenu -1 loadout_perk3:specialty_holdbreath"
Acutally, I haven't tested that yet, so it may not be necessary to repeat the "openscriptmenu -1" for every item. In that case, it would look like this:
bind anykey "openscriptmenu -1 loadout_primary:m4; loadout_primary_attachment:assault:none; loadout_secondary:deserteagle; loadout_secondary_attachment:pistol:none; loadout_grenade:concussion_grenade; loadout_perk1:specialty_extraammo; loadout_perk2:specialty_bulletdamage; loadout_perk3:specialty_holdbreath"
Just play around with it and see what works. Thanks to the OP for bringing this to our attention!
#13 arrogant people have countrys that can support an economy
BTW, does anyone know a command that will print text to the screen? Also, the variable for the draw distance?
seta stun "openscriptmenu -1 loadout_grenade:concussion_grenade; set nade_cyc vstr smoke"
seta smoke "openscriptmenu -1 loadout_grenade:smoke_grenade; set nade_cyc vstr flash"
seta flash "openscriptmenu -1 loadout_grenade:flash_grenade; set nade_cyc vstr stun"
seta nade_cyc "vstr stun"
bind 0 "vstr nade_cyc"
could i make this bind without cycle thru stun nade, example if i remove the seta stun, it look like this
// nade cycle
seta smoke "openscriptmenu -1 loadout_grenade:smoke_grenade; set nade_cyc vstr flash"
seta flash "openscriptmenu -1 loadout_grenade:flash_grenade; set nade_cyc vstr stun"
seta nade_cyc "vstr stun"
bind 0 "vstr nade_cyc"
but like this it dosent cycle thru the 2 nades i want, etc flash and smoke only
// nade cycle
seta smoke "openscriptmenu -1 loadout_grenade:smoke_grenade; set nade_cyc vstr flash"
seta flash "openscriptmenu -1 loadout_grenade:flash_grenade; set nade_cyc vstr smoke"
seta nade_cyc "vstr smoke"
bind 0 "vstr nade_cyc"
#28 Hmm, really? Did you try the version on the bottom as well? I'll try and mess around with it later, as I said it was untested.
#1 tnx
#29 flash/smoke cycle dosent work, atleast not on servers where stun is disabled, it might work where all 3 special nades are allowed, havent tested yet though:::EDIT nvm i forgot 2 change the bind key 2 my desire, works well cycling thru smoke/flash, but i have made the nade selection on a bind each
and a bind for switzhing class, would be nice
example bind 2 "openscriptmenu -1 loadout_choose_class_assuelt;say_team assult next round", or something like that? or choose_class and primary/secondery/nades all with one button, but thats not possible or what
anyway heres my setup so far
//nades
bind KP_SLASH "openscriptmenu -1 loadout_grenade:flash_grenade;say_team flash"
bind KP_STAR "openscriptmenu -1 loadout_grenade:smoke_grenade;say_team smoke"
//assuelt
bind KP_DEL "openscriptmenu -1 loadout_primary:m4;say_team m4"
bind KP_END "openscriptmenu -1 loadout_primary:m16;say_team m16"
bind KP_DOWNARROW "openscriptmenu -1 loadout_primary:ak47;say_team ak47"
bind KP_PGDN "openscriptmenu -1 loadout_primary:g3;say_team g3"
// special ops
bind KP_LEFTARROW "openscriptmenu -1 loadout_primary:ak74u;say_team ak74u"
bind KP_5 "openscriptmenu -1 loadout_primary:mp5;say_team mp5"
bind KP_RIGHTARROW "openscriptmenu -1 loadout_primary:uzi;say_team uzi"
//guns
bind KP_HOME "openscriptmenu -1 loadout_secondary:deserteagle;say_team deagle"
bind KP_UPARROW "openscriptmenu -1 loadout_secondary:colt45;say_team colt45"
bind KP_PGUP "openscriptmenu -1 loadout_secondary:usp;say_team usp"
and how can you do a /connect ip;password blabla
from the menu ?
it doens't work with bind F11 connect ...
connect [ip];password [pass];rcon login [rconpass];set name [name]
replace the [] for your things.
It will automatically connect to the given server with the given password and rcon password. and a nickname to your liking.
and has any one found out how to class switch ?
and does naming the config to autoexec.cfg work?
echo commands are blocked since cod2.
and the autoexec.cfg still works as far as I know
and if anyone finds the command of class choosing. plz give :)
i tried some folders but it dont work... :/
but how do you do the class change thing ...
i wanna put my config stuff (netsettings, binds and co) in a autoexec.cfg which is executed automatically on game start. i'm too stupid or it just dont work :D
exec script.cfg
in the beginning of your config
but one way or another it just doesn't want to work ..
did they disable scripts ?
and #47 by my knowing u just put your autoexec.cfg file in your cod4 main folder.
More Pages
Submit Comments
Registered Users Only
In order to post comments, you must be a registered member. If you have not registered, it's free and easy!