06.06.2017, 13:50
Quote:
Code:
new CommandCount; CMD:thecommand(playerid,params[]) { new string[60]; CommandCount++; format(string,sizeof(string),"You are number %i in the queue.",CommandCount); SendClientMessage(playerid,-1,string); switch(CommandCount) { case 0: { // do X } case 1: { // do Y } case 2: { // do Z } } return 1; } |