mirror of
https://github.com/ClassiCube/MCGalaxy.git
synced 2025-09-24 05:03:34 -04:00
98 lines
3.7 KiB
C#
98 lines
3.7 KiB
C#
/*
|
|
Copyright 2011 MCGalaxy
|
|
|
|
Dual-licensed under the Educational Community License, Version 2.0 and
|
|
the GNU General Public License, Version 3 (the "Licenses"); you may
|
|
not use this file except in compliance with the Licenses. You may
|
|
obtain a copy of the Licenses at
|
|
|
|
http://www.opensource.org/licenses/ecl2.php
|
|
http://www.gnu.org/licenses/gpl-3.0.html
|
|
|
|
Unless required by applicable law or agreed to in writing,
|
|
software distributed under the Licenses are distributed on an "AS IS"
|
|
BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express
|
|
or implied. See the Licenses for the specific language governing
|
|
permissions and limitations under the Licenses.
|
|
*/
|
|
using System.IO;
|
|
namespace MCGalaxy.Commands
|
|
{
|
|
/// <summary>
|
|
/// Bug:
|
|
/// Doesn't save mute.txt
|
|
/// Players with the defaultRank can unmute themself
|
|
/// </summary>
|
|
public sealed class CmdMute : Command
|
|
{
|
|
public override string name { get { return "mute"; } }
|
|
public override string shortcut { get { return ""; } }
|
|
public override string type { get { return "mod"; } }
|
|
public override bool museumUsable { get { return true; } }
|
|
public override LevelPermission defaultRank { get { return LevelPermission.Operator; } }
|
|
public CmdMute() { }
|
|
|
|
public override void Use(Player p, string message)
|
|
{
|
|
if (message == "" || message.Split(' ').Length > 2) { Help(p); return; }
|
|
Player who = Player.Find(message);
|
|
if (Server.forgeProtection == ForgeProtection.Mod && who != null && who.isGCMod)
|
|
{
|
|
Player.SendMessage(p, "%cGlobal Chat Moderators can't be muted");
|
|
return;
|
|
}
|
|
if (who == null)
|
|
{
|
|
if (Server.muted.Contains(message))
|
|
{
|
|
Server.muted.Remove(message);
|
|
Player.GlobalMessage(message + Server.DefaultColor + " is not online but is now &bun-muted");
|
|
Extensions.DeleteLineWord("ranks/muted.txt", who.name.ToLower());
|
|
return;
|
|
}
|
|
}
|
|
|
|
if (who == p)
|
|
{
|
|
if (p.muted)
|
|
{
|
|
p.muted = false;
|
|
Player.SendMessage(p, "You &bun-muted" + Server.DefaultColor + " yourself!");
|
|
Extensions.DeleteLineWord("ranks/muted.txt", p.name.ToLower());
|
|
return;
|
|
}
|
|
else
|
|
{
|
|
Player.SendMessage(p, "You cannot mute yourself!");
|
|
}
|
|
return;
|
|
}
|
|
|
|
if (who.muted)
|
|
{
|
|
who.muted = false;
|
|
Player.GlobalChat(who, who.color + who.name + Server.DefaultColor + " has been &bun-muted", false);
|
|
Extensions.DeleteLineWord("ranks/muted.txt", who.name.ToLower());
|
|
}
|
|
else
|
|
{
|
|
if (p != null)
|
|
{
|
|
if (who != p) if (who.group.Permission >= p.group.Permission) { Player.SendMessage(p, "Cannot mute someone of a higher or equal rank."); return; }
|
|
}
|
|
who.muted = true;
|
|
Player.GlobalChat(who, who.color + who.name + Server.DefaultColor + " has been &8muted", false);
|
|
using (StreamWriter writer = new StreamWriter("ranks/muted.txt", true))
|
|
{
|
|
writer.WriteLine(who.name.ToLower());
|
|
}
|
|
Server.s.Log("SAVED: ranks/muted.txt");
|
|
}
|
|
}
|
|
|
|
public override void Help(Player p)
|
|
{
|
|
Player.SendMessage(p, "/mute <player> - Mutes or unmutes the player.");
|
|
}
|
|
}
|
|
} |