Disabled WANTED, Enable PVP

This commit is contained in:
2025-11-13 02:58:19 +01:00
parent 5653247e3b
commit be881f79b2
2 changed files with 64 additions and 0 deletions

22
shared/shared.lua Normal file
View File

@@ -0,0 +1,22 @@
GB = GB or {}
GB.Core = GB.Core or {}
GB.Player = GB.Player or {}
GB.Players = GB.Players or {}
GB.APlayer = GB.APlayer or {}
GB.APlayers = GB.APlayers or {}
GB.Functions = GB.Functions or {}
GB.PlayerData = GB.PlayerData or {}
GB.Commands = GB.Commands or {}
GB.Admin = GB.Admin or {}
GB.NewCharacter = {
Cash = 50,
Bank = 0
}
GB.UserGroups = {
['user'] = {label = 'User'},
['mod'] = {label = 'Moderator'},
['admin'] = {label = 'Admin'},
['dev'] = {label = 'Developer'}
}