Quote:
Originally Posted by leong124
pawn Код:
COMMAND:o(playerid, params[]) { new text[129]; if(!sscanf(params, "s[128]", text))//z is optional string so null string is still valid { new name[MAX_PLAYER_NAME], string[64]; GetPlayerName(playerid, name, sizeof(name)); format(string, sizeof(string), "[OOC]%s say: %s ", name, text);//There's no %z in format.Only in sscanf. SendClientMessageToAll(0xFFFFFF, string);//Do you need white colour or cyan?The colour is 32-bit here. return 1; } else return SendClientMessage(playerid, 0xFFFFFF, "USAGE: /o [Text]");//Same as above }
|
If the Alpha isn't set it will automatically be set to FF. as far as i know.