PHP Code:
new bool:leftHand;
new bool:rightHand;
you don't need 2 booleans, not a must b, or here will go wrong
PHP Code:
if (leftHand == true) {
menu_additem(menu, "\dLeft Hand \r[current hand]", "", 0);
} else {
menu_additem(menu, "\wLeft Hand", "", 0);
}
if (rightHand == true) {
menu_additem(menu, "\dRight Hand \r[current hand]", "", 0);
} else {
menu_additem(menu, "\wRight Hand", "", 0);
}
and you should check player's hand setting instead this boolean.
PHP Code:
new firstJoin[33];
use boolean instead this, will more readable.