1
0
mirror of https://github.com/RaidMax/IW4M-Admin.git synced 2025-06-10 07:13:58 -05:00

-added trusted group ( will need a new database or manual update )

-reports capture screenshot
This commit is contained in:
RaidMax
2016-01-16 16:58:24 -06:00
parent c396428282
commit d797be07cf
9 changed files with 87 additions and 25 deletions

View File

@ -26,12 +26,13 @@ namespace SharedLibrary
Banned = -1,
User = 0,
Flagged = 1,
Moderator = 2,
Administrator = 3,
SeniorAdmin = 4,
Owner = 5,
Creator = 6,
Console = 7,
Trusted = 2,
Moderator = 3,
Administrator = 4,
SeniorAdmin = 5,
Owner = 6,
Creator = 7,
Console = 8,
}
public Player(string n, string id, int num, int l)
@ -138,6 +139,11 @@ namespace SharedLibrary
lastEvent.Owner.tempBan(Message, this, Sender);
}
public void Warn(String Message, Player Sender)
{
lastEvent.Owner.Warn(Message, this, Sender);
}
public void Ban(String Message, Player Sender)
{
lastEvent.Owner.Ban(Message, this, Sender);