20.08.2009, 13:54
Hey everyone..
I got this command:
I want it to be " ( " instead of " /o "...
How do you make that? =/
Thanks =)
I got this command:
pawn Код:
dcmd_o(playerid,params[])
{
new pName[MAX_PLAYER_NAME],string[256];
GetPlayerName(playerid,pName,sizeof(pName));
format(string,sizeof(string),"((%s: %s))",pName,params[0]);
if(OOCChat == 1)
{
SendClientMessageToAll(0xD0F3D4AA,string);
}
else if(OOCChat == 0) return SendClientMessage(playerid,COLOR_DARKRED,"OOC CHAT DISABLED");
return 1;
}
How do you make that? =/
Thanks =)