Alliedassault           
FAQ Calendar
Go Back   Alliedassault > Lounge > Tech Questions & Problems
Reload this Page Separate Keys for nades???
Tech Questions & Problems Ask our resident experts about any military shooter game server administration and other technical issues.

Reply
 
Thread Tools Display Modes
Separate Keys for nades???
Old
  (#1)
Rimmel is Offline
Member
 
Posts: 56
Join Date: Nov 2002
   
Default Separate Keys for nades??? - 11-21-2002, 11:27 AM

Does anyone know how to assign the normal frag nades and the smoke nades to their own separate keys?

or....... change this script so that I have it press the button once for frag and have a nother version of the script so it presses the 5 button twice??

So then I can assign the two different scripts to individual keys??

Thanks
Rimmel

script:
bind HOME "+grenade"
alias w5 "wait;wait;wait;wait;wait"
alias w10 "w5;w5"
alias w25 "w10;w10;w5"
alias w50 "w25;w25"
alias +grenade "useweaponclass grenade;wait"
alias -grenade "w50;uselast"
  
Reply With Quote
Old
  (#2)
descry is Offline
2nd Lieutenant
 
Posts: 3,441
Join Date: Oct 2002
   
Default 11-21-2002, 09:57 PM

u got the scroll thing on your mouse? if you do i suggest u try it, its alot better than hitting the keyboard
  
Reply With Quote
Old
  (#3)
Rimmel is Offline
Member
 
Posts: 56
Join Date: Nov 2002
   
Default 11-22-2002, 05:58 AM

do you really think I havent tried that????????????

Keys are alot easier if you have them mapped in the right place......

besides the script returns you automatically to the last wqeapon you were using once the grenade leaves your hand, alot quicker than scrolling.....

Rimmel
  
Reply With Quote
Old
  (#4)
dadclanbob is Offline
Junior Member
 
Posts: 13
Join Date: Sep 2002
   
Default 11-22-2002, 11:49 AM

well.. the only thing we need to know is the assignment for
the regular grenade and the one for the smoke nade......
(instead of weaponclass).
then its easy to customise the script.....anyone know them?
  
Reply With Quote
Old
  (#5)
Rimmel is Offline
Member
 
Posts: 56
Join Date: Nov 2002
   
Default 11-22-2002, 12:24 PM

Usually it would be simple, but they are both mapped to the 5 key.

Single for Frag and double for smoke... anyone???

Rimmel
  
Reply With Quote
Old
  (#6)
ATUCIT_Fox is Offline
Member
 
Posts: 44
Join Date: Nov 2002
  Send a message via MSN to ATUCIT_Fox  
Default 11-22-2002, 03:20 PM

Basically, the script is a bit longer than most, because switching from smoke grenades to the last used weapon brings you to your normal grenades...This is what I have though:

(I use DEL and PGDN to switch to the two types of grenades, and use arrows to walk...)
__________
alias w5 "wait; wait; wait; wait; wait"
alias w25 "w5; w5; w5; w5; w5"
alias w125 "w25; w25; w25; w25; w25"
alias [weapon]gren "useweaponclass grenade; bind PGDN backto[weapon]; bind DEL [weapon]grensmoke"
alias [weapon]smoke "useweaponclass grenade; w125; useweaponclass grenade; bind PGDN backto[weapon]; bind DEL [weapon]smokegren"
alias [weapon]grensmoke "useweaponclass grenade; bind DEL [weapon]smokegren"
alias [weapon]smokegren "useweaponclass grenade; bind DEL [weapon]grensmoke"
alias backto[weapon] "useweaponclass [weapon]; bind PGDN [weapon]gren; bind PGDN [weapon]smoke"
bind [weaponkey] "backto[weapon]"
__________

where [weapon] = {rifle, pistol, smg, mg, heavy} and [weaponkey] is the key where you want to assign the main weapon to.
This script needs initializing to get the main weapon right, and uses DEL to go to smoke grenades and PGDN to normal grenades. Once you have anything other than your main weapon in hand, PGDN is used to switch back to the main weapon, and DEL cycles through the grenades.

If you want two scripts that more resemble the one you already have:

__________
//Wait
alias w5 "wait; wait; wait; wait; wait"
alias w25 "w5; w5; w5; w5; w5"
alias w50 "w25; w25"
alias w125 "w25; w25; w25; w25; w25"
//Normal grenades
alias +grenade[weapon] "useweaponclass grenade; wait"
alias -grenade[weapon] "w50; useweaponclass [weapon]"
//Smoke grenades
alias +smoke[weapon] "useweaponclass grenade; w125; useweaponclass grenade"
alias -smoke[weapon] "w50; useweaponclass [weapon]"
//Other
alias setfor[weapon] "bind HOME +grenade[weapon]; bind END +smoke[weapon]"

bind KP_2 "setforrifle"
bind KP_3 "setforsmg"
bind KP_4 "setformg"
bind KP_6 "setforheavy"
__________

After using these scripts for some time, I have decided to go to a very simple configuration, which is better imo:

alias backtorifle "useweaponclass rifle"
alias backtosmg "useweaponclass smg"
alias backtomg "useweaponclass mg"
alias backtoheavy "useweaponclass heavy"

bind DEL "useweaponclass grenade"
bind KP_2 "backtorifle; bind PGDN backtorifle"
bind KP_3 "backtosmg; bind PGDN backtosmg"
bind KP_4 "backtomg; bind PGDN backtoMG"
bind KP_6 "backtoheavy; bind PGDN backtoheavy"
__________
This script has no direct access to the smoke grenades, but works faster bacause it has no "wait" inside the script: pressing DEL twice is faster than using the w125 (which needs to be that long to ensure it works under all conditions)

Enjoy
Fox
  
Reply With Quote
Old
  (#7)
Rimmel is Offline
Member
 
Posts: 56
Join Date: Nov 2002
   
Default 11-22-2002, 07:21 PM

I cant get any of them to work

was looking at the last one (the one you use). It toggles nades ok, but doesnt go back to a weaponwhen I use the PGDN key



Any ideas?

Rimmel
  
Reply With Quote
Old
  (#8)
ATUCIT_Fox is Offline
Member
 
Posts: 44
Join Date: Nov 2002
  Send a message via MSN to ATUCIT_Fox  
Default 11-23-2002, 03:35 AM

Since you can't use "uselast" to switch back from smoke grenades to your main weapon, every script needs initializing: after you pick your weapon from the menu, you must press the appropriate KP_x key. After that, jusy use DEL and PGDN.

Also, when I used the notation:

----------
alias backto[weapon] "useweaponclass [weapon]; bind PGDN [weapon]gren; bind PGDN [weapon]smoke"
with weapon = { rifle, smg, ms, heavy }
----------

you had to enter this:

----------
alias backtorifle "useweaponclass rifle; bind PGDN riflegren; bind PGDN riflesmoke"
alias backtosmg "useweaponclass smg; bind PGDN smggrengren; bind PGDN smgsmoke"
alias backtomg "useweaponclass mg; bind PGDN mggren; bind PGDN mgsmoke"
alias backtoheavy "useweaponclass heavy; bind PGDN heavygren; bind PGDN heavysmoke"
----------

I'm sorry if it was confusing, but I didn't feel likt typing it all out for the four weapons...

Hope you get it to work now,
Fox
  
Reply With Quote
Old
  (#9)
Rimmel is Offline
Member
 
Posts: 56
Join Date: Nov 2002
   
Default 11-23-2002, 06:29 AM

You've confused me now.....

alias backtorifle "useweaponclass rifle"
alias backtosmg "useweaponclass smg"
alias backtomg "useweaponclass mg"
alias backtoheavy "useweaponclass heavy"

bind DEL "useweaponclass grenade"
bind KP_2 "backtorifle; bind PGDN backtorifle"
bind KP_3 "backtosmg; bind PGDN backtosmg"
bind KP_4 "backtomg; bind PGDN backtoMG"
bind KP_6 "backtoheavy; bind PGDN backtoheavy"

Trying to use above this script..... where does:

-----------------------------------------------------------
alias backtorifle "useweaponclass rifle; bind PGDN riflegren; bind PGDN riflesmoke"
alias backtosmg "useweaponclass smg; bind PGDN smggrengren; bind PGDN smgsmoke"
alias backtomg "useweaponclass mg; bind PGDN mggren; bind PGDN mgsmoke"
alias backtoheavy "useweaponclass heavy; bind PGDN heavygren; bind PGDN heavysmoke"
-----------------------------------------------------------
come into it?

what exactly does KP_x do?

Thanks
Rimmel
  
Reply With Quote
Old
  (#10)
Rimmel is Offline
Member
 
Posts: 56
Join Date: Nov 2002
   
Default 11-23-2002, 06:58 AM

Its Ok sorted it thanks

Rimmel
  
Reply With Quote
Reply



Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump



Powered by vBulletin® Version 3.8.12 by ScriptzBin
Copyright ©2000 - 2025, vBulletin Solutions Inc.
vBulletin Skin developed by: vBStyles.com
© 1998 - 2007 by Rudedog Productions | All trademarks used are properties of their respective owners. All rights reserved.