Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- //----------------------------------[ooc]-----------------------------------------------
- if(strcmp(cmd, "/ooc", true) == 0 || strcmp(cmd, "/o", true) == 0)
- {
- 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, " The OOC channel has been disabled by an Admin !");
- return 1;
- }
- if(PlayerInfo[playerid][pMuted] == 1)
- {
- format(string, sizeof(string), "You can not speak, you have been silenced for %d seconds.",PlayerInfo[playerid][pMuteTime]);
- SendClientMessage(playerid, COLOR_LIGHTRED, string);
- return 1;
- }
- GetPlayerName(playerid, sendername, sizeof(sendername));
- new length = strlen(cmdtext);
- while ((idx < length) && (cmdtext[idx] <= ' '))
- {
- idx++;
- }
- new offset = idx;
- new result[64];
- while ((idx < length) && ((idx - offset) < (sizeof(result) - 1)))
- {
- result[idx - offset] = cmdtext[idx];
- idx++;
- }
- result[idx - offset] = EOS;
- result[0] = toupper(result[0]);
- if(!strlen(result))
- {
- SendClientMessage(playerid, COLOR_GRAD2, "USAGE: (/o)oc [ooc chat]");
- return 1;
- }
- format(string, sizeof(string), "(( %s: %s ))", sendername, result);
- OOCOff(COLOR_OOC,string);
- printf("%s", string);
- }
- return 1;
- }
Advertisement
Add Comment
Please, Sign In to add comment