Created
August 18, 2025 16:26
-
-
Save septor/e75803cab025c453a10406a84ded76bc to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| $userLevels = [ | |
| 'litwick' => [ | |
| 'name' => 'Litwick', | |
| 'description' => 'Fucking Lit...', | |
| 'permissions' => ['view_stats', 'handle_requests', 'verify_codes', 'respace_codes'] | |
| ], | |
| 'vault_monkey' => [ | |
| 'name' => 'Vault Monkey', | |
| 'description' => 'New vault manager - can handle requests and verifications', | |
| 'permissions' => ['view_stats', 'handle_requests', 'verify_codes', 'respace_codes', 'manage_rewards', 'manage_crackers'] | |
| ], | |
| 'senior_vault_monkey' => [ | |
| 'name' => 'Senior Vault Monkey', | |
| 'description' => 'Experienced manager - can handle advanced operations', | |
| 'permissions' => ['basic_manage', 'view_stats', 'handle_requests', 'verify_codes', 'respace_codes', 'manage_rewards', 'manage_crackers', 'apply_hints', 'random_winner'] | |
| ], | |
| 'manager_monkey' => [ | |
| 'name' => 'Manager Monkey', | |
| 'description' => 'Senior manager - can handle most operations except admin functions', | |
| 'permissions' => ['basic_manage', 'view_stats', 'handle_requests', 'verify_codes', 'respace_codes', 'manage_rewards', 'manage_crackers', 'apply_hints', 'random_winner', 'manage_themes', 'generate_vault'] | |
| ] | |
| ]; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment