Skip to content

Commit 230655a

Browse files
Merge pull request #53 from Aperture-Development/development
Feature Update and Bugfix
2 parents a6c0619 + 529e054 commit 230655a

File tree

6 files changed

+356
-113
lines changed

6 files changed

+356
-113
lines changed

README.md

Lines changed: 18 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ The server_group option allows you to do just that. Just sub-categorise your ser
103103
>
104104
>MBSync allos you to synchronise your bans across all servers ( network bans ). This Module is also server_group bound, means when you ban a user on a server in the group darkrp they dont get banned on servers with a different group.
105105
>
106-
>Commands:
106+
>**Commands:**
107107
>
108108
>!mban - Opens ban GUI
109109
>
@@ -114,6 +114,23 @@ The server_group option allows you to do just that. Just sub-categorise your ser
114114
>!munban [SteamID/SteamID64] - unbans a player
115115
>
116116
>!mbsync - Opens Ban list
117+
>
118+
>!mcheck [SteamID/SteamID64] - Checks if the given steamid if it is banned
119+
>
120+
>!medit [BanID] [Length] [Global] [Reason] - Edits a ban
121+
>
122+
>
123+
>**Console Commands:**
124+
>
125+
>msync.mbsync.banPlayer [Name] [Length] [global] [Reason] - bans a player
126+
>
127+
>msync.mbsync.bansteamid [SteamID/SteamID64] [Length] [global] [Reason] - bans a players steamid
128+
>
129+
>msync.mbsync.unbanid [SteamID/SteamID64] - unbans a player
130+
>
131+
>msync.mbsync.checkBan [SteamID/SteamID64] - Checks if the given steamid if it is banned
132+
>
133+
>msync.mbsync.editBan [BanID] [Length] [Global] [Reason] - Edits a ban
117134
118135

119136
**Planned Features**

lua/msync/client_gui/modules/cl_mbsync.lua

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ MSync.modules = MSync.modules or {}
55
* @package MySQL Ban Sync
66
* @author Aperture Development
77
* @license root_dir/LICENCE
8-
* @version 1.0.0
8+
* @version 1.1.1
99
]]
1010

1111
--[[
@@ -15,7 +15,7 @@ local info = {
1515
Name = "MySQL Ban Sync",
1616
ModuleIdentifier = "MBSync",
1717
Description = "Synchronise bans across your servers",
18-
Version = "1.0.0"
18+
Version = "1.1.1"
1919
}
2020

2121
--[[

lua/msync/client_gui/modules/cl_mrsync.lua

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ MSync.modules.MRSync = MSync.modules.MRSync or {}
66
* @package MySQL Rank Sync
77
* @author Aperture Development
88
* @license root_dir/LICENCE
9-
* @version 2.1.3
9+
* @version 2.2.0
1010
]]
1111

1212
--[[
@@ -16,7 +16,7 @@ MSync.modules.MRSync.info = {
1616
Name = "MySQL Rank Sync",
1717
ModuleIdentifier = "MRSync",
1818
Description = "Synchronise your ranks across your servers",
19-
Version = "2.1.3"
19+
Version = "2.2.0"
2020
}
2121

2222
--[[

0 commit comments

Comments
 (0)