Admin ooc.
4 posters
Page 1 of 1
Admin ooc.
An ooc channel just for admins.
Like if they need to do an announcement and cant use /say
It helps becuase when they do the screen announcement half of it is blocked by the chat in the top left hand corner and always leaves me like "...Who said that again?..."
It also helps if the OOC channel is enabled.
Like if they need to do an announcement and cant use /say
It helps becuase when they do the screen announcement half of it is blocked by the chat in the top left hand corner and always leaves me like "...Who said that again?..."
It also helps if the OOC channel is enabled.
- Code:
if(strcmp(cmd, "/aooc", true) == 0 || strcmp(cmd, "/ao", true) == 0)
{
if(IsPlayerConnected(playerid))
{
if(gPlayerLogged[playerid] == 0)
{
SendClientMessage(playerid, COLOR_GREY, " You havent logged in yet !");
return 1;
}
if (PlayerInfo[playerid][pAdmin] < 1)
{
SendClientMessage(playerid, COLOR_GRAD2, " The OOC channel has been disabled by an Admin !");
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;
if(!strlen(result))
{
SendClientMessage(playerid, COLOR_GRAD2, "USAGE: (/ao)oc [aooc chat]");
return 1;
}
format(string, sizeof(string), "[AOOC] Admin %s: %s " , sendername, result);
OOCOff(0x62B382AA,string);
printf("%s", string);
}
return 1;
}
Kyol Daniels- Donator
- Posts : 224
Join date : 2011-02-25
Re: Admin ooc.
Admins have /g which they can use at ANY time and they have /gs or whatever which does the big ass screen writing. They also have /a for there own chat. I think the only use of this would be to have a more colorful /g for admins only since the one we currently have is blank and blends in with other OOC which most people tend to ignore anyways.
Re: Admin ooc.
Thats exactly why it would be useful.
Becuase people tend to ignore it like you said.
Besides, it would be good for announcements etc,
Cause its a different colour.
Becuase people tend to ignore it like you said.
Besides, it would be good for announcements etc,
Cause its a different colour.
Kyol Daniels- Donator
- Posts : 224
Join date : 2011-02-25
Re: Admin ooc.
People don't need to listen to what admins say exactly, Especially if they are not in the conversation at hand... TO draw attention to the admin is not the best thing if we are aiming for the best RP.
Peter Greenson- Donator
- Posts : 2558
Join date : 2011-02-01
Location : Australia
Similar topics
» Some admin please look at this
» Admin Rules i though of
» Admin command.
» 300811 - Admin
» Message to Admin Team.
» Admin Rules i though of
» Admin command.
» 300811 - Admin
» Message to Admin Team.
Page 1 of 1
Permissions in this forum:
You cannot reply to topics in this forum