if (strcmp("/healall", cmdtext, true, 10) == 0) { for(new i = 0; i < MAX_PLAYERS; i++) { SetPlayerHealth(playerid, 100.0); } return 1; } if (strcmp("/armourall", cmdtext, true, 10) == 0) { for(new i = 0; i < MAX_PLAYERS; i++) { SetPlayerArmour(playerid, 100.0); } return 1; }