04.03.2014, 09:25
why this command (/o) can't use
if /o and result is (usage) /o (Message). this global chat
if /o and result is (usage) /o (Message). this global chat
pawn Код:
if(strcmp(cmd, "/ooc", true) == 0 || strcmp(cmd, "/o", true) == 0) // By Kurnia Rocki
{
if(IsPlayerConnected(playerid))
{
if(gPlayerLogged[playerid] == 0)
{
SendClientMessage(playerid, COLOR_GREY, "** You havent logged in yet !");
return 1;
}
if ((noooc) && PlayerInfo[playerid][pAdmin] < 1)
{
SendClientMessage(playerid, COLOR_GRAD2, "ERROR: OOC channel has been disabled by an Admin !");
return 1;
}
if(PlayerInfo[playerid][pMuted] == 1)
{
SendClientMessage(playerid, TEAM_CYAN_COLOR, "ERROR: You cannot speak, you have been silenced");
return 1;
}
}
new result[128];
new oocstring[128], pname[MAX_PLAYER_NAME];
if(!strlen(result)) return SendClientMessage(playerid, 0xFFFFFFFF, "(usage) /o (Message)");
GetPlayerName(playerid,pname,sizeof(pname));
format(oocstring, sizeof(oocstring), "[GLOBAL] %s(%d) says: %s", pname, playerid, result);
SendClientMessageToAll(0x33AA33AA, oocstring);
return 1;
}