16.07.2013, 18:56
Galera nгo tou conseguindo definir a cor dessa profissгo eu defini a de todas desse jeito mais a unica que nгo funcionou foi a profissгo de assistencia
pawn Код:
#define assistance 0xB5B5B599
pawn Код:
case ClassAssistance: // Assistance class
{
format(missiontext, sizeof(missiontext), Assistance_NoJobText); // Preset the missiontext
SetPlayerColor(playerid, assistance); // Set the playercolor (chatcolor for the player and color on the map)
// Start the PlayerCheckTimer to scan for players who need assistance (be sure the timer has been destroyed first)
KillTimer(APlayerData[playerid][PlayerCheckTimer]);
APlayerData[playerid][PlayerCheckTimer] = SetTimerEx("Assistance_CheckPlayers", 1000, true, "i", playerid);
}