26.07.2012, 09:15
easy . .
put this color under includes
put this commands anywhere without any callbacks
put this color under includes
pawn Код:
#define red 0xFF0000AA
pawn Код:
CMD:chatb(playerid, params[])
{
if(isnull(params)) return SendClientMessage(playerid, COLOR_WHITE, "Commands: /chatb [Messages]");
new string[128];
new pName[MAX_PLAYER_NAME];
GetPlayerName(playerid, pName, sizeof(pName));
format(string, sizeof(string), "{99FFFF}%s{FFFFFF}: %s ", pName, params);
SetPlayerChatBubble(playerid, string, red, 7.0, 5000);
return 1;
}