01.10.2011, 22:48
Quote:
Ah, thank you! : )
and one very last question (to not have to make another topic for this in 5 days...) how can I get A random index so that it returns the info out of a random mission? |
pawn Код:
new rand = random(sizeof Mission);
format(string, sizeof string, "Mission: \"%s\" Person: \"%s\"", Mission[rand][mission_name], Mission[rand][person_name]);
SendClientMessage(playerid, COLOR_YELLOW_LABEL, string);