30.12.2012, 14:23
Don't know if will work.
pawn Код:
CMD:work(playerid, params[]) // Using ZCMD
{
new string[200];
new rand = random(sizeof(ALocations));
new rand2 = random(sizeof(ALocations));
format(string,sizeof(string),"Deliver From %s to %s.", ALocations[rand][0], ALocations[rand2][0]);
// Put the string on your textdraw
return 1;
}