Ok, do you see where it says:
if (Conn.IsAFK == true)
{
Conn.IsAFK = false;
}
Right above the
Conn.IsAFK = false, start a new line and use:
MsgAll("^7> > " + Conn.PlayerName + " ^7is now ^1AFK");
Ok, so part 1 is done. Now lets go over to when people are done AFK'ing:
Do you see where it says the following:
if (Conn.IsAFK == false)
{
MsgPly("^7> > Bank bonus is disabled whilst your ^1AFK", Conn.UniqueID);
Conn.IsAFK = true;
}
Above the line that contains the MsgPly function, insert this:
MsgAll("^7> > " + Conn.PlayerName + " ^7is no longer ^1AFK");
Good Luck.