16.07.2012, 16:41 
	(
 Последний раз редактировалось ArmandoRamiraz; 16.07.2012 в 17:19.
)
	
	
		Deleted. Fixed the problem
	
	
	
	
| Code: MISSING BRACKET: The { bracket on line 26338 does not have a pair!
Result: 
Opening angle brackets ({): 15932 
Closing angle brackets (}): 15931 
1 angle brackets without pair! Fix it!Code: if(strcmp(cmd, "/dance", true) == 0) 
    {
        if(IsPlayerConnected(playerid))
        {
			// Get the dance style param
      		tmp = strtok(cmdtext, idx);
			if(!strlen(tmp)) {
				SendClientMessage(playerid,0xFF0000FF,"Folosire: /dance [style 1-4]");
				return 1;
			}
			dancestyle = strval(tmp);
			if(dancestyle < 1 || dancestyle > 4) {
			    SendClientMessage(playerid,0xFF0000FF,"Folosire: /dance [style 1-4]");
			    return 1;
			}
			if(dancestyle == 1) {
			    SetPlayerSpecialAction(playerid,SPECIAL_ACTION_DANCE1);
			} else if(dancestyle == 2) {
			    SetPlayerSpecialAction(playerid,SPECIAL_ACTION_DANCE2);
			} else if(dancestyle == 3) {
			    SetPlayerSpecialAction(playerid,SPECIAL_ACTION_DANCE3);
			} else if(dancestyle == 4) {
			    SetPlayerSpecialAction(playerid,SPECIAL_ACTION_DANCE4);
			}
        }
 	  	return 1;
    }Code: else if(TransportDuty[i] == 2)
	                    {
	                        format(string, sizeof(string), "* You paid $%d to the Bus Driver.", TransportValue[i]);
							SendClientMessage(playerid, COLOR_WHITE, string);
							format(string, sizeof(string), "* Passenger %s has entered your Bus.", name);
							SendClientMessage(i, COLOR_WHITE, string);
	                    } | 
 
	 .
.