Step #5 – Make Multiple Buy Aliases

Now lets make multiple buy aliases that buy the weapon + armor + primary ammo. Once again I will use MP5 for an example:

You will want to name these different than the ones before.

alias +MP5X "buy; ms3; ms1; arm; ammo1"

alias -MP5X "mclr; wait, wait; mclr"

Lets dissect this alias so it makes sense to everyone:

alias +MP5X "buy; ms3; ms1; arm; ammo1"

I buy an MP5 in bold,

I buy armor here in italics

I buy full primary ammo where it is underlined

The armor and ammo are using the equipment aliases from above.

alias -MP5X "mclr; wait, wait; mclr"

I use the mclr alias and some waits since we buy more than one item. One is probably safe, but I just made two for double protection from the dreaded open menu.

Now lets make an alias to buy the weapon + armor + full primary ammo for all the submachineguns and assault rifles:

alias +MP5X "buy; ms3; ms1; arm; ammo1"

alias -MP5X "mclr; wait, wait; mclr"

alias +TMPX "buy; ms3; ms2; arm; ammo1"

alias -TMPX "mclr; wait, wait; mclr"

alias +P90X "buy; ms3; ms3; arm; ammo1"

alias -P90X "mclr; wait, wait; mclr"

alias +UZIX "buy; ms3; ms4; arm; ammo1"

alias -UZIX "mclr; wait, wait; mclr"

alias +AK47X "buy; ms4; ms1; arm; ammo1"

alias -AK47X "mclr; wait, wait; mclr"

alias +SIGX "buy; ms4; ms2; arm; ammo1"

alias -SIGX "mclr; wait, wait; mclr"

alias +M4X "buy; ms4; ms3; arm; ammo1"

alias -M4X "mclr; wait, wait; mclr"

alias +AUGX "buy; ms4; ms4; arm; ammo1"

alias -AUGX "mclr; wait, wait; mclr"

Now to bind these you would do it like this:

bind "x" "+MP5X"

bind "y" "+UZIX"

bind "z" "+SIGX"

Do you see how that works now. So you can make any combination you want and make an alias and bind it to a key.

NEXT
BACK


Step1
Step2
Step3
Step4
Step5
Step6
Step7
Scripting Page
Main