Quote:
Originally Posted by Tannz0rz
That's your problem
pawn Код:
#define COLOR_GREEN "{00FF22}"
It should be
pawn Код:
#define COLOR_GREEN 0x00FF22FF
|
That was a simple fix, thanks a lot!
Quote:
Originally Posted by Eric
pawn Код:
YCMD:starttrucking(playerid, params[], help) { #pragma unused params #pragma unused help new string[128]; format(string, sizeof(string), "CB Radio: Well, get che' a truck from ye' ol' HQ!"); SendClientMessage(playerid, COLOR_GREEN, string); format(string, sizeof(string), "Head to the Truckers HQ in Dillimore."); GameTextForPlayer(playerid, string, 3000, 4); SetPlayerCheckpoint(playerid, 807.3625,-610.1833,16.3359, 3.0); return 1; }
public OnPlayerEnterCheckpoint(playerid) { DisablePlayerCheckpoint(playerid); format(string, sizeof(string), "CB Radio: Eh, you've made it. Choose a truck."); SendClientMessage(playerid, COLOR_GREEN, string); return 1; }
Try that.
Edit: Try what the above said first.
|