Advertisement
Guest User

HD Admin

a guest
Jun 23rd, 2018
9,748
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 3.45 KB | None | 0 0
  1. --[[ << PERMISSION TYPES >>                                                                                                                                                        
  2. <PermissionNumber>      <PermissionName>                                                                                                                                                                                                    ]]local Owner local HeadAdmin local Admin local Mod local VIP--[[
  3. auto                    Owner           -- Type ;cmds to view all Owner commands
  4. 4                       HeadAdmin       -- Type ;cmds to view all HeadAdmin commands
  5. 3                       Admin           -- Type ;cmds to view all Admin commands
  6. 2                       Mod             -- Type ;cmds to view all Mod commands
  7. 1                       VIP             -- Can only use commands on theirself. Type ;cmds to view all VIP commands                                                                     
  8. 0                       Everyone        -- Setting a command to this permission type will allow anyone to use it                                                                                                                            ]]
  9.  
  10.  
  11. --[[ << INDIVIDUAL PERMISSIONS >>
  12. Format:  "PlayerName", or UserId,                                                                                                                                                                                                       ]]return{Individual_Permissions = {
  13. HeadAdmins  = {"BioicDoomAttack_232",156,}                                                                                                                                                                                              ;
  14. Admins      = {}                                                                                                                                                                                                                            ;
  15. Mods        = {}                                                                                                                                                                                                                            ;
  16. VIPs        = {}                                                                                                                                                                                                                            ;           };
  17.  
  18.  
  19. --[[ << GROUP PERMISSIONS >>                                                                                                                                                       
  20. Format:  [GroupId] = { [GroupRoleNumber] = "PermissionName", OR PermissionNumber, };                                                                                                                                                            ]]
  21. Group_Permissions={
  22.     [0] = { [254]="HeadAdmin", [1]="VIP", };
  23. }                                                                                                                                                                                                                                           ;
  24.  
  25.  
  26. --[[ << ASSET PERMISSIONS >> (e.g. Gamepasses, Shirts, Models etc)
  27. Format:  [AssetId] = "PermissionName" OR PermissionNumber ;                                                                                                                                                                                 ]]
  28. Asset_Permissions={
  29.     [0] = "Mod";
  30. }                                                                                                                                                                                                                                           ;
  31.  
  32.  
  33. --[[ << BANLAND >>                                                                                                                                                                                                                          ]]
  34. Banned = {"PlayerName1","PlayerName2",};
  35.  
  36.  
  37. -- << SETTINGS >>
  38. Settings={
  39.     -- <Prefix>
  40.     Prefix          =";" ;          -- The character used to begin each command
  41.    
  42.     -- <Owner chat colour>
  43.     OwnerChatColour = "y" ;         --w/r/g/b/p/y    OR    white/red/green/blue/purple/yellow
  44.  
  45.     -- <Donor Perks>   **Please keep enabled to help support the development of HD Admin Commands**
  46.     DonorItem       = true ;
  47.     DonorItemId     = 10472779 ;
  48.     DonorCommands   = true ;
  49.    
  50.     -- <Other>
  51.     CmdBar          = true ;        -- Enabled/disales the cmdbar - press @ to open the cmdbar
  52.     HDIcon          = false ;       -- The HD Icon in the corner of screen (helps support the development HD Admin Commands)
  53.     AutoPrompt      = true ;        -- This prompts all players to take a free copy of the model. Set to 'false' to disable.
  54.     FreeAdmin       = false ;       -- Allows everyone in server to have the chosen admin. e.g.' FreeAdmin = "VIP" '. Set to False if not. You can not set to 'Owner'.
  55.     NoticeSound     = 261082034 ;   -- Notification sound ID
  56.     NoticeSoundVol  = 0.5 ;         -- How loud the notification sound is. Must be between 0 and 1.
  57.     ErrorSound      = 138090596 ;   -- Error sound ID
  58.     ErrorSoundVol   = 0.5 ;         -- How loud the error sound is. Must be between 0 and 1.
  59. }                                                                                                                                                                                                                                           ;
  60.  
  61.  
  62. --[[ << MODIFY COMMANDS >>
  63. This allows you to change the permission type required to use a command
  64. Format:  ["CommandName"] = "PermissionName" ;                                                                                                                                                                                               ]]
  65. ModifiedCommands={
  66.     ["fly"] = "Mod" ; -- This changes the command so that Mods (or above) can use it
  67. }                                                                                                                                                                                                                                           ;Version = 1.3;--[[Don't edit this, otherwise the commands may break]]}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement