Quote:
Originally Posted by cbkbud
Round of applause theHAWKER!
Looks like you're learning GS2, good job!
One thing I would like to point out however.
You used
PHP Code:
addWeapon(Axe);
what you should use is
PHP Code:
addWeapon("Axe");
that way it is not trying to add whatever is in the variable 'Axe', which is most likely NULL.
|

thank you.
addWeapon(Axe); works just fine with out the quotes, so is it adding the weapon by fluke?