Quote:
Originally Posted by oo_jazz_oo
player.selectedweapon is the index of the selected weapon in the players weapon aray.
PHP Code:
if (player.selectedweapon == player.weapons.index(findweapon("Name")))
|
Shouldn't it be
PHP Code:
if ( player.selectedweapon == player.weapons.index[ blah ] ) {
?