Jump to content

DeutscherRitterPlatz's Wishlist

  1. More information about "Promo Status"

    $3.99

    Promo Status

    The plugin allows displaying promo codes in the status bar. Depends on AdvancedStatus plugin.
     

    The ability to display promo codes in the status bar; The ability to specify the order of the bar; The ability to change the height of the bar; The abillity to customize the color and transparency of the background; The ability to set a material for the background; The ability to switch between CuiRawImageComponent and CuiImageComponent for the image; The ability to get images from the local folder(*SERVER*\oxide\data\AdvancedStatus\Images); The abillity to set own image and customize the color and transparency of the image; The abillity to set sprite instead of the image; The ability to customize the color, size and font of the text.  

    promostatus.admin - Provides the ability to admin commands.  

    { "Chat command": "promo", "Is it worth enabling GameTips for messages?": true, "Default time in seconds for displaying the promo code in the status bar. A value of 0 will keep the bar visible until the promo code expires": 600.0, "Status. Bar - Height": 26, "Status. Bar - Order": 20, "Status. Background - Color(Hex or RGBA)": "#FFD33A", "Status. Background - Transparency": 0.7, "Status. Background - Material(empty to disable)": "", "Status. Image - Url": "https://i.imgur.com/q15Cmu5.png", "Status. Image - Local(Leave empty to use Image_Url)": "PromoStatus_Promo", "Status. Image - Sprite(Leave empty to use Image_Local or Image_Url)": "", "Status. Image - Is raw image": false, "Status. Image - Color(Hex or RGBA)": "#FFD33A", "Status. Image - Transparency": 1.0, "Status. Image Outline - Is it worth enabling an outline for the image?": false, "Status. Image Outline - Color(Hex or RGBA)": "0.1 0.3 0.8 0.9", "Status. Image Outline - Transparency": 1.0, "Status. Image Outline - Distance": "0.75 0.75", "Status. Text - Size": 12, "Status. Text - Color(Hex or RGBA)": "#FFFFFF", "Status. Text - Font(https://umod.org/guides/rust/basic-concepts-of-gui#fonts)": "RobotoCondensed-Bold.ttf", "Status. Text - Offset Horizontal": 0, "Status. Text Outline - Is it worth enabling an outline for the text?": false, "Status. Text Outline - Color(Hex or RGBA)": "#000000", "Status. Text Outline - Transparency": 1.0, "Status. Text Outline - Distance": "0.75 0.75", "Status. SubText - Size": 12, "Status. SubText - Color(Hex or RGBA)": "#FFFFFF", "Status. SubText - Font": "RobotoCondensed-Bold.ttf", "Status. SubText Outline - Is it worth enabling an outline for the sub text?": false, "Status. SubText Outline - Color(Hex or RGBA)": "0.5 0.6 0.7 0.5", "Status. SubText Outline - Transparency": 1.0, "Status. SubText Outline - Distance": "0.75 0.75", "List of promo codes. Note: Dates should be in UTC(yyyy-MM-dd HH:mm). Example: 2025-01-25 13:00": {}, "Version": { "Major": 0, "Minor": 1, "Patch": 3 } }  

    EN: { "MsgStatusText": "PROMO CODE:", "MsgNotAllowed": "You do not have permissions to use this command!", "MsgWrongCommand": "You entered an incorrect command!\nExample: /{0} toggle", "MsgWrongArguments": "You have not provided enough arguments for this command!", "MsgPromoNotFound": "Promo code {0} not found!", "MsgAddFailed": "Failed to add promo code. Invalid format or expiration date is earlier than the current date.\nExample: /{1} add \"{0}\" \"{2}\" \"{3}\"(optional)", "MsgPromoAdded": "Promo code {0} has been successfully added. Valid until {1}.", "MsgPromoUpdated": "Promo code {0} has been successfully updated. Valid until {1}.", "MsgPromoRemoved": "Promo code {0} has been successfully removed!", "MsgDisplayFailed": "Failed to update promo code display time.\nExample: /{1} display \"{0}\" 600", "MsgDisplayUpdated": "A new display time({1} sec) has been set in the status bar for promo code {0}.", "MsgBarEnabled": "Displaying the promo bar is enabled!", "MsgBarDisabled": "Displaying the promo bar is disabled!", "MsgPromoEmpty": "No available promo codes!", "MsgPromoList": "List of available promo codes(UTC):\n{0}" } RU: { "MsgStatusText": "ПРОМОКОД:", "MsgNotAllowed": "У вас недостаточно прав для использования этой команды!", "MsgWrongCommand": "Вы ввели не правильную команду!\nПример: /{0} toggle", "MsgWrongArguments": "Вы ввели не достаточно аргументов для этой команды!", "MsgPromoNotFound": "Промокод {0} не найден!", "MsgAddFailed": "Не удалось добавить промокод. Не верный формат, либо дата истечения меньше текущей даты.\nПример: /{1} add \"{0}\" \"{2}\" \"{3}\"(опционально)", "MsgPromoAdded": "Промокод {0} был успешно добавлен. Действителен до {1}.", "MsgPromoUpdated": "Промокод {0} был успешно обновлен. Действителен до {1}.", "MsgPromoRemoved": "Промокод {0} был успешно удален!", "MsgDisplayFailed": "Не удалось обновить время отображения промокода.\nПример: /{1} display \"{0}\" 600", "MsgDisplayUpdated": "Установлено новое время({1} сек) отображения в статус баре для промокода {0}.", "MsgBarEnabled": "Отображение промо баров включено!", "MsgBarDisabled": "Отображение промо баров выключено!", "MsgPromoEmpty": "Нет доступных промокодов!", "MsgPromoList": "Список доступных промокодов(UTC):\n{0}" }  

    bar - personal toggle for displaying promo status bars; all - displays a list of all active promo codes in the chat. Admins also see inactive ones; add *code* *expireDate* *startDate*(optional) - adds a new promo code. Permission "promostatus.admin" required; remove *code* - removes a promo code. Permission "promostatus.admin" required; display *code* *seconds* - changes the display time(in seconds) of the promo code for each player. Permission "promostatus.admin" required. Example:
    /promo bar /promo all /promo add "test" "2024-12-23 14:06" /promo display "test" 360  

     There are 2 hooks that the plugin is subscribed to:
    OnPromoCodeAdded OnPromoCodeRemoved  
    OnPromoCodeAdded:
    Used to add a new promo code.
    To call the OnPromoCodeAdded hook, you need to pass 3 parameters, 1 of which is optional:
    <string>promoCode - The promo code; <DateTime>expireDate - The expiration date; <DateTime>startDate - Optional. The start date of validity.  
    Interface.CallHook("OnPromoCodeAdded", "*Your promo*", expireDate, startDate);//Calling the OnPromoCodeAdded hook to add a new promo code.  
    OnPromoCodeRemoved:
    Used to remove a promo code.
    To call the OnPromoCodeRemoved hook, you need to pass 1 parameter:
    <string>promoCode - The promo code.  
    Interface.CallHook("OnPromoCodeRemoved", "*Your promo*");//Calling the OnPromoCodeRemoved hook to remove a promo code.  
  2. More information about "ZLogs"

    $14.99

    ZLogs

    What is it?
    ZLogs is a comprehensive logging solution for Rust servers, designed to keep admins informed and in control. With a sleek GUI, extensive category coverage, and advanced customization, ZLogs ensures you never miss a crucial server event. Whether it’s player interactions, combat logs, or tool cupboard activity, ZLogs provides detailed insights to maintain transparency and order.
    Usage
    Keep your server operations smooth and well-documented with ZLogs.
    Monitor every key activity with categorized logs, from player connections to combat events. Stay informed with Discord notifications for critical actions like heli spawns or team changes. Effortlessly browse logs with a user-friendly interface featuring search functionality, light/dark mode, and auto-deletion options for old logs. ZLogs puts powerful server management tools right at your fingertips.
    Permission
    zlogs.use -- Gives you permission to use the command
    zlogs.resetall -- Gives you permission to wipe all data files
    zlogs.heli.spawn -- Gives player a permission to get notified in chat when heli spawns(must be set in config)
    zlogs.heli.down -- Gives player a permission to get notified in chat when heli gets shot down(must be set in config)
    Chat Command
    /zlogs  --  Opens the GUI
    /zlogs.resetall -- Completely wipes all ZLogs datafile (zlogs.resetall permission required)
    Discord Logging:
    In config you can set a webhook for each category to have the important info right on your discord 🙂 
    Data
    All the datas are being saved into data folders and each category has it's data file
    Path to data files: Your_Server\oxide\data\ZLogs

    Features & some info:
    I've decided to completely rewrite ZLogs because of some performance mistake I've made and also to add more features and generally make the plugin better.
    New version brings you also new features like Auto log deletion which can be set in config, more detailed logging, nicer UI, dark and light mode for the UI, search option and more.. 🙂
    Localization:
     
    { "Log Explosive": "{0} has used {1}!", "Log Animal": "{0} has killed a {1}", "Log Connect": "{0} has connected to the server", "Log Disconnect": "{0} has disconnected from the server", "Log Command": "{0} has used command: {1}", "Log Chat": "{0} wrote: {1}", "Log Combat": "{0} has killed {1}", "Log Vending": "{0} has bought: {1} for: {2}", "Log HeliSpawn": "Patrol heli has spawned", "Log HeliDeath": "Patrol heli has been destroyed by: {0}", "Log ItemPick": "{0} has picked up a {1}", "Log ItemDrop": "{0} has dropped a {1}", "Log TCPlace": "{0} has placed a TC", "Log TCDestroy": "{0} has destroyed a TC", "Log TCAuth": "{0} has authed a TC", "Log TCDeAuth": "{0} has deauthed from TC", "Log TCClear": "{0} has cleared a TC", "Log TeamCreate": "{0} has created a team", "Log TeamInvite": "{0} has invited {1} to team", "Log TeamReject": "{0} has rejected invite", "Log TeamPromote": "{0} has been promoted to leader", "Log TeamLeave": "{0} has left the team", "Log TeamKick": "{0} has kicked {1} from the team", "Log TeamAccept": "{0} has accepted team invite", "Log TeamDisband": "{0} has disbanded team", "Log TriggerPick": "{0} has picked up {1}+ items over {2} seconds", "Log TriggerDrop": "{0} has dropped {1}+ items over {2} seconds", "Notify HeliSpawn": "A patrol heli has spawned at: {0}", "Notify HeliDown": "A patrol heli has been shot down at: {0} by {1}", "CUI Categories": "Categories", "CUI Settings": "Settings", "CUI Animal": "Animal Logs", "CUI Chat": "Chat Logs", "CUI Combat": "Combat Logs", "CUI Command": "Command Logs", "CUI Connection": "Connection Logs", "CUI Explosive": "Explosive Logs", "CUI Heli": "Heli Logs", "CUI Item": "Item Logs", "CUI Team": "Team Logs", "CUI TC": "Tool Cupboard Logs", "CUI Trigger": "Trigger Logs", "CUI Vending": "Vending Logs", "CUI TargetPlayerInfo": "Target Player Information", "CUI PlayerName": "Player name: {0}", "CUI SteamID": "SteamID: {0}", "CUI Status": "Status: {0}", "CUI StatusAlive": "Alive", "CUI StatusDead": "Dead", "CUI StatusNull": "?", "CUI Ping": "Ping: {0}", "CUI NotConnected": "Not connected", "CUI TPto": "Teleport to", "CUI TPhere": "Teleport here", "CUI AnimalInfo": "Animal Information", "CUI AnimalName": "Animal name: {0}", "CUI AnimalDeathPos": "Animal death pos:\nx: {0}\ny: {1}\nz: {2}", "CUI LogInfo": "Log Information", "CUI LogID": "Log ID: {0}", "CUI LogDate": "Log Date: {0}", "CUI LogRemoveIn": "Log will be removed in: {0}", "CUI ChatInfo": "Chat Information", "CUI ChatType": "Channel type: {0}", "CUI Initiator": "Initiator Information", "CUI Victim": "Victim Information", "CUI Distance": "Distance: {0}m", "CUI Weapon": "Weapon: {0}", "CUI ConnectionInfo": "Connection Information", "CUI ConnectionIp": "IP: {0}", "CUI ConnectionType": "Type: {0}", "CUI ExplosiveInfo": "Explosive Information", "CUI ExplosivePos": "Explosive pos:\nx: {0}\ny: {1}\nz: {2}", "CUI ExplosiveName": "Explosive name: {0}", "CUI HeliInfo": "Heli Information", "CUI HeliPos": "Heli pos:\nx: {0}\ny: {1}\nz: {2}", "CUI HeliAttacker": "Destroyed by: {0}", "CUI ItemInfo": "Item Information", "CUI ItemName": "Item name: {0} x{1}", "CUI ItemPos": "Item pos:\nx: {0}\ny: {1}\nz: {2}", "CUI ItemType": "Type: {0}", "CUI TeamInfo": "Team Information", "CUI TeamType": "Type: {0}", "CUI TeamKicked": "Kicked player: {0}", "CUI TcInfo": "Tool Cupboard Information", "CUI TcType": "Type: {0}", "CUI TcAttacker": "Attacker: {0}", "CUI TcPos": "TC pos:\nx: {0}\ny: {1}\nz: {2}", "CUI TriggerType": "Type: {0}", "CUI DetectTime": "Detect time: {0} seconds", "CUI DetectAmount": "Detect amount: {0} items", "CUI TriggerInfo": "Trigger Information", "CUI VendingItem": "Bought item: {0} x{1}", "CUI VendingPrice": "Price: {0} x{1}", "CUI VendingPos": "Vending pos:\nx: {0}\ny: {1}\nz: {2}", "CUI VendingInfo": "Vending Information", "CUI Search": "Search:", "CUI ColorMode": "Color Mode: {0}" } Configuration:
     
    { "Combat logs?": { "WebhookURL": "", "Enabled?": true }, "Item Picks & Drops logs?": { "WebhookURL": "", "Enabled?": true }, "Connection and Disconnection logs?": { "WebhookURL": "", "Enabled?": true }, "Command logs?": { "WebhookURL": "", "Enabled?": true }, "Animal Kills logs?": { "WebhookURL": "", "Enabled?": true }, "Explosives logs?": { "WebhookURL": "", "Enabled?": true }, "Chat logs?": { "WebhookURL": "", "Enabled?": true }, "Heli Logs?": { "WebhookURL": "", "Enabled?": true, "NotifyOnHeliSpawn?": true, "NotifyOnHeliDown?": true }, "Tool Cupboard logs?": { "WebhookURL": "", "Enabled?": true }, "Vending Machine logs?": { "WebhookURL": "", "Enabled?": true }, "Item drop spam detection:": { "Enabled?": true, "WebhookURL": "", "Items needed to detect:": 15, "Time(seconds)": 8.0, "Ignored items(shortnames like: ammo.rifle etc..):": [ "item_shortname", "item_shortname" ] }, "Item pick spam detection:": { "Enabled?": true, "WebhookURL": "", "Items needed to detect:": 15, "Time(seconds)": 8.0, "Ignored items(shortnames like: ammo.rifle etc..):": [ "item_shortname", "item_shortname" ] }, "Team logs?": { "WebhookURL": "", "Enabled?": true }, "Auto-Delete logs after x amount of hours(0 will disable this feature)": 0.0 }  

  3. More information about "Z-Billboards"

    $25.00

    Z-Billboards

    The Z-Billboards plugin gives you the ability to make billboards in no-time! With the size of these eye catchers, people WILL see your server info, vending ads or king size memes.
     
    Z-Billboards
    The Z-Billboards plugin gives you the ability to make billboards of any size you want!
    After creation, it is possible to add any image from the internet like you are used to with other sign mods. Multiple images are possible too. What is the first 10 x 10 sized 5 frame video you paste on your base? With the size of these eye-catchers, people WILL see your server info, vending ads, or king-size memes.
    No need to edit the image yourself: When pasting an image to a billboard, it will be resized to fit your billboard perfectly. The process of splitting the image into the right amount of pieces is also done automatically. It is really as simple as pasting a normal image on a single sign.
    Added in 1.4.0:
    Pass an optional brightness parameter to your paste command to set the brightness of your images:
    /billboard sil <url> 0.0 – 1.0 (0 = darkest, 1 = lightest)  

    Product features
    Automatic placement of (neon) signs so they are always aligned No photo editing required, insert the image URL and resizing, splitting and pasting is all automatically done for you 3 tiers + admin tier for limiting the size of billboards Limit the total amount of billboards per tier Animated signs possible, pasting an image will use the next free sign Toggle power & Adjust animation speed with 1 command In theory, no limits regarding total size Adjust brightness of the image in game  
    Usage
    Always start with the top left Large Animated Neon Sign or an XL Picture Frame. After that, look at the sign and create the billboard:
    /billboard create <horizontal signs> <vertical signs> To paste an image, look at your billboard and use:
    /billboard sil <image url> The plugin will now download your image, stretch it to make it fit the full billboard, cut it in equal parts (the amount of neon signs) and paste every part onto the right neon sign.
    Synchronize animated billboards
    When pasting more than one image on a billboard made of neon signs, it will start to animate. Because not all images are pasted at the same time, it is possible the neon signs are not synchronized with each other. To solve this problem, wait for the pasting to be done and toggle your billboard’s power or speed. Both commands will ‘restart’ your billboard. All neon signs will start at the first image again.
    Brightness
    Most images on neon signs look better when they are made a little darker. Since version 1.4.0 there is an optional brightness value you can add to the paste command. The image is pasted at it’s brightest (1.0 or 100%) by default. Lower the value to make an image darker, 0.5 means the image will be pasted at 50% brightness. To use this functionality, simply add the brightness after the URL.
     
    Commands
    /billboard create 2 2 /billboard sil <image url> /billboard sil <image url> [brightness 0.0 - 1.0] /billboard toggle --> toggle all power on/off (this also syncs animated signs) /billboard destroy --> removes your billboard /billboard speed 1.5 --> changes speed of animated signs /billboard info --> get billboard ID and location  
    Console commands
    billboard.toggle <billboard ID> --> power on/off billboard (needs permission zbillboards.console)  
    Configuration
    The mod comes with 4 different permissions to determine the maximum size of a billboard per player (group). It also has some other settings to tweak performance:
    { "Maximum amount of signs in total (width x height) Tier 1": 6, "Maximum amount of billboards (any size, 0 = unlimited) Tier 1": 1, "Maximum amount of signs in total (width x height) Tier 2": 12, "Maximum amount of billboards (any size, 0 = unlimited) Tier 2": 3, "Maximum amount of signs in total (width x height) Tier 3": 16, "Maximum amount of billboards (any size, 0 = unlimited) Tier 3": 5, "Maximum amount of signs in total (width x height) Admin": 150, "Width and height of each neon sign image in pixels": 150, --> higher has better quality but uses more performance "Lock signs to owner after creating billboard": true, "Give back a Neon Sign when a billboard is removed with the destroy command": true, "Seconds between pasting images": 0.25 --> pasting too many image parts too fast will product lag, "Destroy billboard when any of it's signs gets removed, picked up or destroyed": true --> this prevents players from duplicating and selling their signs on the black market } Above (default) settings would mean a player with tier 1 can place a maximum of 1 billboard, containing 6 or less signs. 
    A tier 3 player can place 5 billboards, each made of maximal 16 signs.
    Permissions
    zbillboards.admin zbillboards.console --> to use console commands zbillboards.tier1 zbillboards.tier2 zbillboards.tier3 Performance
    I managed to create billboards as big as 12 x 12 and they perform very well. Do keep in mind that the process of downloading, resizing and splitting the images is very heavy for your server. Billboards this size WILL produce lag and I recommend to let only admins have the ability to make them this big.
    Since version 1.3.0, normal XL Picture Frames are supported. These signs do a lot better in terms of performance!
    Support
    If you have any problems, suggestions or questions, then please let me know!
    The quickest way to contact me is on Discord (josh.z) or join my Discord server to meet and discuss with other victims of my plugins!
    https://discord.gg/7ApTVphM7f
  4. More information about "HardcoreEntities"

    $15.00

    HardcoreEntities

    🌟 Introducing "Hardcore Entities": A Game-Changing Rust Plugin 🌟
    Embark on a thrilling Rust experience like never before with our new plugin, "Hardcore Entities". Designed for players who crave an extra layer of challenge and excitement, this plugin redefines the concept of survival and strategy in the game.
    Key Features:
    🔁 Reset and Rebuild: Upon death, players are prompted to start anew, making each life in the game precious and each decision critical. This feature significantly ramps up the gameplay difficulty, perfect for those who love a good challenge.
    🔑 Exclusive Bypass Permission: For players who prefer a more forgiving experience, the bypass permission grants immunity from the reset-on-death feature. This flexibility allows server admins to tailor the gameplay experience to suit different player preferences.
    🛠️ Customizable and Controlled: "Hardcore Entities" comes with a Default Use permission that is not automatically assigned. Server admins have complete control to activate it for specific groups as desired, ensuring a balanced and fair environment for all players.
    Elevate Your Server's Gameplay: Whether you're looking to intensify the survival aspect or provide a diverse range of experiences for your players, "Hardcore Entities" offers the perfect blend of challenge and control.
    Plugin Permissions:
    hardcoreentities.use: Activate the hardcore reset feature for a group.
    hardcoreentities.bypass: Grant immunity from the reset feature for a select group.
    Your Feedback Matters: We are committed to continuously enhancing the "Hardcore Entities" plugin. Your suggestions and feedback are invaluable to us, and we welcome your ideas to make this plugin even better.
    Elevate your Rust server experience with "Hardcore Entities" – where every life counts, and every death is a new beginning.
    Enjoy the challenge!
  5. More information about "PostManager"

    $13.45

    PostManager

    PostManager
    The "PostManager" plugin offers Rust players a unique tool for managing and switching between different groups based on their permissions. This is especially useful for staff management through permissions and allows players to easily move from one role to another. Everything can be customized to suit specific server needs.
     
    Key Features:


    CARBON Compatibility: Smooth integration with the CARBON framework.
    Group Management: Players can seamlessly join or leave groups based on their permissions.
    Staff Management: Facilitate the management of staff roles via permissions.
    Role Transition: Allow players to switch to specific roles with ease.
    High Customizability: Everything, from group settings to role permissions, can be tailored to specific requirements.
     
    Examples:
     
    If you have a moderator role, you can define its permissions within the plugin. The moderator can play as a regular player and then switch to the moderator role using the /post command, gaining the moderator's permissions. When they leave the role, they lose these permissions.
    Another use-case is for role-playing jobs. Define groups for different professions and set their salaries within these groups. When players assume these roles, they will receive their respective job salaries (in conjunction with the RolePlay Salary plugin).
     
    Commands:
     
    /post: Access the group and role management system, allowing players and administrators to interact with roles and permissions.

    /takepost : For take post but you can use /post with button.
    /leavepost : For leave post but you can use /post with button.


    Config File : 
    { "MainPostButton": "MAIN JOB", "MaxJobsPerPlayer": 1, "ModerationPostButton": "MODERATION", "Posts": [ { "Category": 1, "EndMessage": "You have closed your gun shop.", "Group": "gunsmith", "Name": "Gunsmith", "Permission": "postmanager.gunsmith", "PublicEndMessage": "{0} has closed their gun shop.", "PublicStartMessage": "{0} has opened their gun shop.", "StartMessage": "You have opened your gun shop." }, { "Category": 1, "EndMessage": "You have ended your work as a cabinet maker.", "Group": "cabinetmaker", "Name": "Cabinet-Maker", "Permission": "postmanager.cabinetmaker", "PublicEndMessage": "{0} has ended their work as a cabinet maker.", "PublicStartMessage": "{0} has started their work as a cabinet maker.", "StartMessage": "You have started your work as a cabinet maker." }, { "Category": 1, "EndMessage": "You have ended your work as a blacksmith.", "Group": "blacksmith", "Name": "Blacksmith", "Permission": "postmanager.blacksmith", "PublicEndMessage": "{0} has ended their work as a blacksmith.", "PublicStartMessage": "{0} has started their work as a blacksmith.", "StartMessage": "You have started your work as a blacksmith." }, { "Category": 1, "EndMessage": "You have ended your work as a mechanic.", "Group": "mechanic", "Name": "Mechanic", "Permission": "postmanager.mechanic", "PublicEndMessage": "{0} has ended their work as a mechanic.", "PublicStartMessage": "{0} has started their work as a mechanic.", "StartMessage": "You have started your work as a mechanic." }, { "Category": 1, "EndMessage": "You have closed your fashion studio.", "Group": "fashiondesigner", "Name": "Fashion-Designer", "Permission": "postmanager.fashiondesigner", "PublicEndMessage": "{0} has closed their fashion studio.", "PublicStartMessage": "{0} has opened their fashion studio.", "StartMessage": "You have opened your fashion studio." }, { "Category": 1, "EndMessage": "You have ended your work as an electrician.", "Group": "electrician", "Name": "Electrician", "Permission": "postmanager.electrician", "PublicEndMessage": "{0} has ended their work as an electrician.", "PublicStartMessage": "{0} has started their work as an electrician.", "StartMessage": "You have started your work as an electrician." }, { "Category": 2, "EndMessage": "You have finished your work as a repairman.", "Group": "repairman", "Name": "Repairman", "Permission": "postmanager.repairman", "PublicEndMessage": "{0} has finished their work as a repairman.", "PublicStartMessage": "{0} has started their work as a repairman.", "StartMessage": "You have started your work as a repairman." }, { "Category": 2, "EndMessage": "You have finished your work as a gardener.", "Group": "gardener", "Name": "Gardener", "Permission": "postmanager.gardener", "PublicEndMessage": "{0} has finished their work as a gardener.", "PublicStartMessage": "{0} has started their work as a gardener.", "StartMessage": "You have started your work as a gardener." }, { "Category": 2, "EndMessage": "You have ended your shift as a doctor.", "Group": "doctor", "Name": "Doctor", "Permission": "postmanager.doctor", "PublicEndMessage": "{0} has ended their shift as a doctor.", "PublicStartMessage": "{0} has started their shift as a doctor.", "StartMessage": "You have started your shift as a doctor." }, { "Category": 2, "EndMessage": "You have finished your work as a cook.", "Group": "cook", "Name": "Cook", "Permission": "postmanager.cook", "PublicEndMessage": "{0} has finished their work as a cook.", "PublicStartMessage": "{0} has started their work as a cook.", "StartMessage": "You have started your work as a cook." }, { "Category": 2, "EndMessage": "You have finished your work as a driller.", "Group": "driller", "Name": "Driller", "Permission": "postmanager.driller", "PublicEndMessage": "{0} has finished their work as a driller.", "PublicStartMessage": "{0} has started their work as a driller.", "StartMessage": "You have started your work as a driller." }, { "Category": 2, "EndMessage": "You have finished your work as a fisherman.", "Group": "fisherman", "Name": "Fisherman", "Permission": "postmanager.fisherman", "PublicEndMessage": "{0} has finished their work as a fisherman.", "PublicStartMessage": "{0} has started their work as a fisherman.", "StartMessage": "You have started your work as a fisherman." }, { "Category": 2, "EndMessage": "You have finished your work as a pyrotechnician.", "Group": "pyrotechnician", "Name": "Pyrotechnician", "Permission": "postmanager.pyrotechnician", "PublicEndMessage": "{0} has finished their work as a pyrotechnician.", "PublicStartMessage": "{0} has started their work as a pyrotechnician.", "StartMessage": "You have started your work as a pyrotechnician." }, { "Category": 2, "EndMessage": "You have finished your exploration.", "Group": "explorer", "Name": "Explorer", "Permission": "postmanager.explorer", "PublicEndMessage": "{0} has finished their exploration.", "PublicStartMessage": "{0} has started their exploration.", "StartMessage": "You have started your exploration." }, { "Category": 2, "EndMessage": "You have finished your tinkering.", "Group": "tinkerer", "Name": "Tinkerer", "Permission": "postmanager.tinkerer", "PublicEndMessage": "{0} has finished their tinkering.", "PublicStartMessage": "{0} has started their tinkering.", "StartMessage": "You have started your tinkering." }, { "Category": 2, "EndMessage": "You have finished your work as a dealer.", "Group": "dealer", "Name": "Dealer", "Permission": "postmanager.dealer", "PublicEndMessage": "{0} has finished their work as a dealer.", "PublicStartMessage": "{0} has started their work as a dealer.", "StartMessage": "You have started your work as a dealer." }, { "Category": 2, "EndMessage": "You have finished your work as an IT specialist.", "Group": "itspecialist", "Name": "IT-Specialist", "Permission": "postmanager.itspecialist", "PublicEndMessage": "{0} has finished their work as an IT specialist.", "PublicStartMessage": "{0} has started their work as an IT specialist.", "StartMessage": "You have started your work as an IT specialist." }, { "Category": 2, "EndMessage": "You have finished your work as a biker.", "Group": "biker", "Name": "Biker", "Permission": "postmanager.biker", "PublicEndMessage": "{0} has finished their work as a biker.", "PublicStartMessage": "{0} has started their work as a biker.", "StartMessage": "You have started your work as a biker." }, { "Category": 3, "EndMessage": "You have ended your duty as a police officer.", "Group": "policeofficer", "Name": "Officer", "Permission": "postmanager.policeofficer", "PublicEndMessage": "{0} has ended their duty as a police officer.", "PublicStartMessage": "{0} has started their duty as a police officer.", "StartMessage": "You have started your duty as a police officer." }, { "Category": 3, "EndMessage": "You have ended your duty as a detective.", "Group": "detective", "Name": "Detective", "Permission": "postmanager.detective", "PublicEndMessage": "{0} has ended their duty as a detective.", "PublicStartMessage": "{0} has started their duty as a detective.", "StartMessage": "You have started your duty as a detective." }, { "Category": 3, "EndMessage": "You have ended your duty as a commander.", "Group": "commander", "Name": "Commander", "Permission": "postmanager.commander", "PublicEndMessage": "{0} has ended their duty as a commander.", "PublicStartMessage": "{0} has started their duty as a commander.", "StartMessage": "You have started your duty as a commander." }, { "Category": 4, "EndMessage": "You have ended your duty as the chief of police.", "Group": "chief", "Name": "Chief-Police", "Permission": "postmanager.chief", "PublicEndMessage": "{0} has ended their duty as the chief of police.", "PublicStartMessage": "{0} has started their duty as the chief of police.", "StartMessage": "You have started your duty as the chief of police." }, { "Category": 3, "EndMessage": "You have ended your service as a colonel.", "Group": "colonel", "Name": "Colonel", "Permission": "postmanager.colonel", "PublicEndMessage": "{0} has ended their service as a colonel.", "PublicStartMessage": "{0} has started their service as a colonel.", "StartMessage": "You have started your service as a colonel." }, { "Category": 3, "EndMessage": "You have ended your service as a general.", "Group": "general", "Name": "General", "Permission": "postmanager.general", "PublicEndMessage": "{0} has ended their service as a general.", "PublicStartMessage": "{0} has started their service as a general.", "StartMessage": "You have started your service as a general." }, { "Category": 3, "EndMessage": "You have ended your service as a judge.", "Group": "judge", "Name": "Judge", "Permission": "postmanager.judge", "PublicEndMessage": "{0} has ended their service as a judge.", "PublicStartMessage": "{0} has started their service as a judge.", "StartMessage": "You have started your service as a judge." }, { "Category": 3, "EndMessage": "You have ended your service as a lawyer.", "Group": "lawyer", "Name": "Lawyer", "Permission": "postmanager.lawyer", "PublicEndMessage": "{0} has ended their service as a lawyer.", "PublicStartMessage": "{0} has started their service as a lawyer.", "StartMessage": "You have started your service as a lawyer." }, { "Category": 3, "EndMessage": "You have ended your term as mayor.", "Group": "mayor", "Name": "Mayor", "Permission": "postmanager.mayor", "PublicEndMessage": "{0} has ended their term as mayor.", "PublicStartMessage": "{0} has begun their term as mayor.", "StartMessage": "You have begun your term as mayor." }, { "Category": 3, "EndMessage": "You have left office as president.", "Group": "president", "Name": "President", "Permission": "postmanager.president", "PublicEndMessage": "{0} has left office as president.", "PublicStartMessage": "{0} has taken office as president.", "StartMessage": "You have taken office as president." }, { "Category": 3, "EndMessage": "You have ended your term as a member of parliament.", "Group": "mp", "Name": "Member-Parliament", "Permission": "postmanager.mp", "PublicEndMessage": "{0} has ended their term as a member of parliament.", "PublicStartMessage": "{0} has started their term as a member of parliament.", "StartMessage": "You have started your term as a member of parliament." }, { "Category": 3, "EndMessage": "You have ended your service as a minister.", "Group": "minister", "Name": "Minister", "Permission": "postmanager.minister", "PublicEndMessage": "{0} has ended their service as a minister.", "PublicStartMessage": "{0} has started their service as a minister.", "StartMessage": "You have started your service as a minister." }, { "Category": 4, "EndMessage": "You have ended your service as a helper.", "Group": "helper", "Name": "Helper", "Permission": "postmanager.helper", "PublicEndMessage": "{0} has ended their service as a helper.", "PublicStartMessage": "{0} has started their service as a helper.", "StartMessage": "You have started your service as a helper." }, { "Category": 4, "EndMessage": "You have ended your work as a mapper.", "Group": "mapper", "Name": "Mapper", "Permission": "postmanager.mapper", "PublicEndMessage": "{0} has ended their work as a mapper.", "PublicStartMessage": "{0} has started their work as a mapper.", "StartMessage": "You have started your work as a mapper." }, { "Category": 4, "EndMessage": "You have ended your work as a lead mapper.", "Group": "leadmapper", "Name": "Lead-Mapper", "Permission": "postmanager.leadmapper", "PublicEndMessage": "{0} has ended their work as a lead mapper.", "PublicStartMessage": "{0} has started their work as a lead mapper.", "StartMessage": "You have started your work as a lead mapper." }, { "Category": 4, "EndMessage": "You have ended your trial period as a moderator.", "Group": "trialmoderator", "Name": "Trial-Moderator", "Permission": "postmanager.trialmoderator", "PublicEndMessage": "{0} has ended their trial period as a moderator.", "PublicStartMessage": "{0} has started their trial period as a moderator.", "StartMessage": "You have started your trial period as a moderator." }, { "Category": 4, "EndMessage": "You have ended your service as a moderator.", "Group": "moderator", "Name": "Moderator", "Permission": "postmanager.moderator", "PublicEndMessage": "{0} has ended their service as a moderator.", "PublicStartMessage": "{0} has started their service as a moderator.", "StartMessage": "You have started your service as a moderator." }, { "Category": 4, "EndMessage": "You have ended your service as a lead moderator.", "Group": "leadmoderator", "Name": "Lead-Moderator", "Permission": "postmanager.leadmoderator", "PublicEndMessage": "{0} has ended their service as a lead moderator.", "PublicStartMessage": "{0} has started their service as a lead moderator.", "StartMessage": "You have started your service as a lead moderator." }, { "Category": 4, "EndMessage": "You have ended your service as an administrator.", "Group": "administrator", "Name": "Administrator", "Permission": "postmanager.administrator", "PublicEndMessage": "{0} has ended their service as an administrator.", "PublicStartMessage": "{0} has started their service as an administrator.", "StartMessage": "You have started your service as an administrator." } ], "PublicPostButton": "PUBLIC JOB", "SecondaryPostButton": "SECONDARY JOB", "Title": "POST MANAGER" }
    Translate File EN : 
     
    { "NoPermission": "You don't have permission to use this command.", "InvalidPost": "The specified post does not exist.", "AlreadyInPost": "You are already in the post of {0}.", "NotInPost": "You are not currently in the post of {0}.", "PostTaken": "You have taken the post of {0}.", "PostLeft": "You have left the post of {0}.", "TimeInPost": "You have been in the post of {0} for {1}.", "TotalTimeInPost": "Your total time in the post of {0} is {1}.", "ListTitle": "List of all posts and members:", "ListEntry": "{0}: {1}", "NoPlayersInPosts": "No players are currently in posts.", "NoJobOrPermission": "You don't have permission as you don't have a job.", "NoSpecificPermission": "You don't have permission to take this specific post.", "InvalidGroup": "The group of this post is not created.", "Category1Error": "You do not have permission for category 1. Here's how to get it...", "Category2Error": "You do not have permission for category 2. Here's how to get it...", "Category3Error": "You do not have permission for category 3. Here's how to get it...", "Category4Error": "You do not have permission for category 4. Here's how to get it..." }
    Translate File FR : 
    {
      "NoPermission": "Vous n'avez pas la permission d'utiliser cette commande.",
      "InvalidPost": "Le poste spécifié n'existe pas.",
      "AlreadyInPost": "Vous êtes déjà au poste de {0}.",
      "NotInPost": "Vous n'êtes pas actuellement au poste de {0}.",
      "PostTaken": "Vous avez pris le poste de {0}.",
      "PostLeft": "Vous avez quitté le poste de {0}.",
      "TimeInPost": "Vous avez été au poste de {0} pendant {1}.",
      "TotalTimeInPost": "Votre temps total au poste de {0} est de {1}.",
      "ListTitle": "Liste de tous les postes et membres :",
      "ListEntry": "{0} : {1}",
      "NoPlayersInPosts": "Aucun joueur n'est actuellement en poste.",
      "NoJobOrPermission": "Vous n'avez pas la permission car vous n'avez pas de métier.",
      "NoSpecificPermission": "Vous n'avez pas la permission pour prendre ce poste spécifique.",
      "InvalidGroup": "Le groupe du métier n'est pas existant.",
      "Category1Error": "Vous n'avez pas la permission pour la catégorie 1. Voici comment l'obtenir...",
      "Category2Error": "Vous n'avez pas la permission pour la catégorie 2. Voici comment l'obtenir...",
      "Category3Error": "Vous n'avez pas la permission pour la catégorie 3. Voici comment l'obtenir...",
      "Category4Error": "Vous n'avez pas la permission pour la catégorie 4. Voici comment l'obtenir..."
    }

    BETTERCHAT CONFIG DATA FILE : (Change with this file for use all default config of this plugin. Or Config all your group like you want VIP / ADMIN ect)
    [ { "GroupName": "default", "Priority": 5, "Title": { "Text": "[Player]", "Color": "#55aaff", "Size": 15, "Hidden": false, "HiddenIfNotPrimary": true }, "Username": { "Color": "#55aaff", "Size": 15 }, "Message": { "Color": "white", "Size": 15 }, "Format": { "Chat": "{Title} {Username}: {Message}", "Console": "{Title} {Username}: {Message}" } }, { "GroupName": "gunsmith", "Priority": 0, "Title": { "Text": "[ GUNSMITH ]", "Color": "#FF5733", "Size": 13, "Hidden": false, "HiddenIfNotPrimary": true }, "Username": { "Color": "#FF5733", "Size": 13 }, "Message": { "Color": "#f2f3f2", "Size": 13 }, "Format": { "Chat": "| <color=orange>RP</color> | {Title} {Username} | {Message}", "Console": "{Title} {Username}: {Message}" } }, { "GroupName": "cabinetmaker", "Priority": 0, "Title": { "Text": "[ CABINET MAKER ]", "Color": "#33FF57", "Size": 13, "Hidden": false, "HiddenIfNotPrimary": true }, "Username": { "Color": "#33FF57", "Size": 13 }, "Message": { "Color": "#f2f3f2", "Size": 13 }, "Format": { "Chat": "| <color=orange>RP</color> | {Title} {Username} | {Message}", "Console": "{Title} {Username}: {Message}" } }, { "GroupName": "blacksmith", "Priority": 0, "Title": { "Text": "[ BLACKSMITH ]", "Color": "#5733FF", "Size": 13, "Hidden": false, "HiddenIfNotPrimary": true }, "Username": { "Color": "#5733FF", "Size": 13 }, "Message": { "Color": "#f2f3f2", "Size": 13 }, "Format": { "Chat": "| <color=orange>RP</color> | {Title} {Username} | {Message}", "Console": "{Title} {Username}: {Message}" } }, { "GroupName": "mechanic", "Priority": 0, "Title": { "Text": "[ MECHANIC ]", "Color": "#FF33F0", "Size": 13, "Hidden": false, "HiddenIfNotPrimary": true }, "Username": { "Color": "#FF33F0", "Size": 13 }, "Message": { "Color": "#f2f3f2", "Size": 13 }, "Format": { "Chat": "| <color=orange>RP</color> | {Title} {Username} | {Message}", "Console": "{Title} {Username}: {Message}" } }, { "GroupName": "fashiondesigner", "Priority": 0, "Title": { "Text": "[ FASHION DESIGNER ]", "Color": "#33FFF5", "Size": 13, "Hidden": false, "HiddenIfNotPrimary": true }, "Username": { "Color": "#33FFF5", "Size": 13 }, "Message": { "Color": "#f2f3f2", "Size": 13 }, "Format": { "Chat": "| <color=orange>RP</color> | {Title} {Username} | {Message}", "Console": "{Title} {Username}: {Message}" } }, { "GroupName": "electrician", "Priority": 0, "Title": { "Text": "[ ELECTRICIAN ]", "Color": "#F5FF33", "Size": 13, "Hidden": false, "HiddenIfNotPrimary": true }, "Username": { "Color": "#F5FF33", "Size": 13 }, "Message": { "Color": "#f2f3f2", "Size": 13 }, "Format": { "Chat": "| <color=orange>RP</color> | {Title} {Username} | {Message}", "Console": "{Title} {Username}: {Message}" } }, { "GroupName": "repairman", "Priority": 0, "Title": { "Text": "[ REPAIRMAN ]", "Color": "#F533FF", "Size": 13, "Hidden": false, "HiddenIfNotPrimary": true }, "Username": { "Color": "#F533FF", "Size": 13 }, "Message": { "Color": "#f2f3f2", "Size": 13 }, "Format": { "Chat": "| <color=orange>RP</color> | {Title} {Username} | {Message}", "Console": "{Title} {Username}: {Message}" } }, { "GroupName": "gardener", "Priority": 0, "Title": { "Text": "[ GARDENER ]", "Color": "#33FF9F", "Size": 13, "Hidden": false, "HiddenIfNotPrimary": true }, "Username": { "Color": "#33FF9F", "Size": 13 }, "Message": { "Color": "#f2f3f2", "Size": 13 }, "Format": { "Chat": "| <color=orange>RP</color> | {Title} {Username} | {Message}", "Console": "{Title} {Username}: {Message}" } }, { "GroupName": "doctor", "Priority": 0, "Title": { "Text": "[ DOCTOR ]", "Color": "#33B0FF", "Size": 13, "Hidden": false, "HiddenIfNotPrimary": true }, "Username": { "Color": "#33B0FF", "Size": 13 }, "Message": { "Color": "#f2f3f2", "Size": 13 }, "Format": { "Chat": "| <color=orange>RP</color> | {Title} {Username} | {Message}", "Console": "{Title} {Username}: {Message}" } }, { "GroupName": "cook", "Priority": 0, "Title": { "Text": "[ COOK ]", "Color": "#A733FF", "Size": 13, "Hidden": false, "HiddenIfNotPrimary": true }, "Username": { "Color": "#A733FF", "Size": 13 }, "Message": { "Color": "#f2f3f2", "Size": 13 }, "Format": { "Chat": "| <color=orange>RP</color> | {Title} {Username} | {Message}", "Console": "{Title} {Username}: {Message}" } }, { "GroupName": "driller", "Priority": 0, "Title": { "Text": "[ DRILLER ]", "Color": "#FF6933", "Size": 13, "Hidden": false, "HiddenIfNotPrimary": true }, "Username": { "Color": "#FF6933", "Size": 13 }, "Message": { "Color": "#f2f3f2", "Size": 13 }, "Format": { "Chat": "| <color=orange>RP</color> | {Title} {Username} | {Message}", "Console": "{Title} {Username}: {Message}" } }, { "GroupName": "fisherman", "Priority": 0, "Title": { "Text": "[ FISHERMAN ]", "Color": "#FFBD33", "Size": 13, "Hidden": false, "HiddenIfNotPrimary": true }, "Username": { "Color": "#FFBD33", "Size": 13 }, "Message": { "Color": "#f2f3f2", "Size": 13 }, "Format": { "Chat": "| <color=orange>RP</color> | {Title} {Username} | {Message}", "Console": "{Title} {Username}: {Message}" } }, { "GroupName": "pyrotechnician", "Priority": 0, "Title": { "Text": "[ PYROTECHNICIAN ]", "Color": "#FF3E33", "Size": 13, "Hidden": false, "HiddenIfNotPrimary": true }, "Username": { "Color": "#FF3E33", "Size": 13 }, "Message": { "Color": "#f2f3f2", "Size": 13 }, "Format": { "Chat": "| <color=orange>RP</color> | {Title} {Username} | {Message}", "Console": "{Title} {Username}: {Message}" } }, { "GroupName": "explorer", "Priority": 0, "Title": { "Text": "[ EXPLORER ]", "Color": "#33FFC6", "Size": 13, "Hidden": false, "HiddenIfNotPrimary": true }, "Username": { "Color": "#33FFC6", "Size": 13 }, "Message": { "Color": "#f2f3f2", "Size": 13 }, "Format": { "Chat": "| <color=orange>RP</color> | {Title} {Username} | {Message}", "Console": "{Title} {Username}: {Message}" } }, { "GroupName": "tinkerer", "Priority": 0, "Title": { "Text": "[ TINKERER ]", "Color": "#3366FF", "Size": 13, "Hidden": false, "HiddenIfNotPrimary": true }, "Username": { "Color": "#3366FF", "Size": 13 }, "Message": { "Color": "#f2f3f2", "Size": 13 }, "Format": { "Chat": "| <color=orange>RP</color> | {Title} {Username} | {Message}", "Console": "{Title} {Username}: {Message}" } }, { "GroupName": "dealer", "Priority": 0, "Title": { "Text": "[ DEALER ]", "Color": "#FF336B", "Size": 13, "Hidden": false, "HiddenIfNotPrimary": true }, "Username": { "Color": "#FF336B", "Size": 13 }, "Message": { "Color": "#f2f3f2", "Size": 13 }, "Format": { "Chat": "| <color=orange>RP</color> | {Title} {Username} | {Message}", "Console": "{Title} {Username}: {Message}" } }, { "GroupName": "itspecialist", "Priority": 0, "Title": { "Text": "[ IT SPECIALIST ]", "Color": "#33FF52", "Size": 13, "Hidden": false, "HiddenIfNotPrimary": true }, "Username": { "Color": "#33FF52", "Size": 13 }, "Message": { "Color": "#f2f3f2", "Size": 13 }, "Format": { "Chat": "| <color=orange>RP</color> | {Title} {Username} | {Message}", "Console": "{Title} {Username}: {Message}" } }, { "GroupName": "biker", "Priority": 0, "Title": { "Text": "[ BIKER ]", "Color": "#B233FF", "Size": 13, "Hidden": false, "HiddenIfNotPrimary": true }, "Username": { "Color": "#B233FF", "Size": 13 }, "Message": { "Color": "#f2f3f2", "Size": 13 }, "Format": { "Chat": "| <color=orange>RP</color> | {Title} {Username} | {Message}", "Console": "{Title} {Username}: {Message}" } }, { "GroupName": "policeofficer", "Priority": 0, "Title": { "Text": "[ POLICE OFFICER ]", "Color": "#FF5733", "Size": 13, "Hidden": false, "HiddenIfNotPrimary": true }, "Username": { "Color": "#FF5733", "Size": 13 }, "Message": { "Color": "#f2f3f2", "Size": 13 }, "Format": { "Chat": "| <color=orange>RP</color> | {Title} {Username} | {Message}", "Console": "{Title} {Username}: {Message}" } }, { "GroupName": "detective", "Priority": 0, "Title": { "Text": "[ DETECTIVE ]", "Color": "#33FF57", "Size": 13, "Hidden": false, "HiddenIfNotPrimary": true }, "Username": { "Color": "#33FF57", "Size": 13 }, "Message": { "Color": "#f2f3f2", "Size": 13 }, "Format": { "Chat": "| <color=orange>RP</color> | {Title} {Username} | {Message}", "Console": "{Title} {Username}: {Message}" } }, { "GroupName": "commander", "Priority": 0, "Title": { "Text": "[ COMMANDER ]", "Color": "#FF33A2", "Size": 13, "Hidden": false, "HiddenIfNotPrimary": true }, "Username": { "Color": "#FF33A2", "Size": 13 }, "Message": { "Color": "#f2f3f2", "Size": 13 }, "Format": { "Chat": "| <color=orange>RP</color> | {Title} {Username} | {Message}", "Console": "{Title} {Username}: {Message}" } }, { "GroupName": "chief", "Priority": 0, "Title": { "Text": "[ CHIEF OF POLICE ]", "Color": "#FF8C33", "Size": 13, "Hidden": false, "HiddenIfNotPrimary": true }, "Username": { "Color": "#FF8C33", "Size": 13 }, "Message": { "Color": "#f2f3f2", "Size": 13 }, "Format": { "Chat": "| <color=orange>RP</color> | {Title} {Username} | {Message}", "Console": "{Title} {Username}: {Message}" } }, { "GroupName": "colonel", "Priority": 0, "Title": { "Text": "[ COLONEL ]", "Color": "#AB33FF", "Size": 13, "Hidden": false, "HiddenIfNotPrimary": true }, "Username": { "Color": "#AB33FF", "Size": 13 }, "Message": { "Color": "#f2f3f2", "Size": 13 }, "Format": { "Chat": "| <color=orange>RP</color> | {Title} {Username} | {Message}", "Console": "{Title} {Username}: {Message}" } }, { "GroupName": "general", "Priority": 0, "Title": { "Text": "[ GENERAL ]", "Color": "#33FFF6", "Size": 13, "Hidden": false, "HiddenIfNotPrimary": true }, "Username": { "Color": "#33FFF6", "Size": 13 }, "Message": { "Color": "#f2f3f2", "Size": 13 }, "Format": { "Chat": "| <color=orange>RP</color> | {Title} {Username} | {Message}", "Console": "{Title} {Username}: {Message}" } }, { "GroupName": "judge", "Priority": 0, "Title": { "Text": "[ JUDGE ]", "Color": "#FF4D33", "Size": 13, "Hidden": false, "HiddenIfNotPrimary": true }, "Username": { "Color": "#FF4D33", "Size": 13 }, "Message": { "Color": "#f2f3f2", "Size": 13 }, "Format": { "Chat": "| <color=orange>RP</color> | {Title} {Username} | {Message}", "Console": "{Title} {Username}: {Message}" } }, { "GroupName": "lawyer", "Priority": 0, "Title": { "Text": "[ LAWYER ]", "Color": "#FFA833", "Size": 13, "Hidden": false, "HiddenIfNotPrimary": true }, "Username": { "Color": "#FFA833", "Size": 13 }, "Message": { "Color": "#f2f3f2", "Size": 13 }, "Format": { "Chat": "| <color=orange>RP</color> | {Title} {Username} | {Message}", "Console": "{Title} {Username}: {Message}" } }, { "GroupName": "mayor", "Priority": 0, "Title": { "Text": "[ MAYOR ]", "Color": "#E8FF33", "Size": 13, "Hidden": false, "HiddenIfNotPrimary": true }, "Username": { "Color": "#E8FF33", "Size": 13 }, "Message": { "Color": "#f2f3f2", "Size": 13 }, "Format": { "Chat": "| <color=orange>RP</color> | {Title} {Username} | {Message}", "Console": "{Title} {Username}: {Message}" } }, { "GroupName": "president", "Priority": 0, "Title": { "Text": "[ PRESIDENT ]", "Color": "#33FF61", "Size": 13, "Hidden": false, "HiddenIfNotPrimary": true }, "Username": { "Color": "#33FF61", "Size": 13 }, "Message": { "Color": "#f2f3f2", "Size": 13 }, "Format": { "Chat": "| <color=orange>RP</color> | {Title} {Username} | {Message}", "Console": "{Title} {Username}: {Message}" } }, { "GroupName": "mp", "Priority": 0, "Title": { "Text": "[ MEMBER PARLIAMENT ]", "Color": "#33A2FF", "Size": 13, "Hidden": false, "HiddenIfNotPrimary": true }, "Username": { "Color": "#33A2FF", "Size": 13 }, "Message": { "Color": "#f2f3f2", "Size": 13 }, "Format": { "Chat": "| <color=orange>RP</color> | {Title} {Username} | {Message}", "Console": "{Title} {Username}: {Message}" } }, { "GroupName": "minister", "Priority": 0, "Title": { "Text": "[ MINISTER ]", "Color": "#FF5733", "Size": 13, "Hidden": false, "HiddenIfNotPrimary": true }, "Username": { "Color": "#FF5733", "Size": 13 }, "Message": { "Color": "#f2f3f2", "Size": 13 }, "Format": { "Chat": "| <color=orange>RP</color> | {Title} {Username} | {Message}", "Console": "{Title} {Username}: {Message}" } }, { "GroupName": "helper", "Priority": 0, "Title": { "Text": "[ HELPER ]", "Color": "#FF6633", "Size": 13, "Hidden": false, "HiddenIfNotPrimary": true }, "Username": { "Color": "#FF6633", "Size": 13 }, "Message": { "Color": "#f2f3f2", "Size": 13 }, "Format": { "Chat": "| <color=orange>RP</color> | {Title} {Username} | {Message}", "Console": "{Title} {Username}: {Message}" } }, { "GroupName": "mapper", "Priority": 0, "Title": { "Text": "[ MAPPER ]", "Color": "#FF3333", "Size": 13, "Hidden": false, "HiddenIfNotPrimary": true }, "Username": { "Color": "#FF3333", "Size": 13 }, "Message": { "Color": "#f2f3f2", "Size": 13 }, "Format": { "Chat": "| <color=orange>RP</color> | {Title} {Username} | {Message}", "Console": "{Title} {Username}: {Message}" } }, { "GroupName": "leadmapper", "Priority": 0, "Title": { "Text": "[ LEAD MAPPEUR ]", "Color": "#FF1A1A", "Size": 13, "Hidden": false, "HiddenIfNotPrimary": true }, "Username": { "Color": "#FF1A1A", "Size": 13 }, "Message": { "Color": "#f2f3f2", "Size": 13 }, "Format": { "Chat": "| <color=orange>RP</color> | {Title} {Username} | {Message}", "Console": "{Title} {Username}: {Message}" } }, { "GroupName": "trialmoderator", "Priority": 0, "Title": { "Text": "[ TRIAL MODERATOR ]", "Color": "#FF0000", "Size": 13, "Hidden": false, "HiddenIfNotPrimary": true }, "Username": { "Color": "#FF0000", "Size": 13 }, "Message": { "Color": "#f2f3f2", "Size": 13 }, "Format": { "Chat": "| <color=orange>RP</color> | {Title} {Username} | {Message}", "Console": "{Title} {Username}: {Message}" } }, { "GroupName": "moderator", "Priority": 0, "Title": { "Text": "[ MODERATOR ]", "Color": "#CC00CC", "Size": 13, "Hidden": false, "HiddenIfNotPrimary": true }, "Username": { "Color": "#CC00CC", "Size": 13 }, "Message": { "Color": "#f2f3f2", "Size": 13 }, "Format": { "Chat": "| <color=orange>RP</color> | {Title} {Username} | {Message}", "Console": "{Title} {Username}: {Message}" } }, { "GroupName": "leadmoderator", "Priority": 0, "Title": { "Text": "[ LEAD MODERATOR ]", "Color": "#990099", "Size": 13, "Hidden": false, "HiddenIfNotPrimary": true }, "Username": { "Color": "#990099", "Size": 13 }, "Message": { "Color": "#f2f3f2", "Size": 13 }, "Format": { "Chat": "| <color=orange>RP</color> | {Title} {Username} | {Message}", "Console": "{Title} {Username}: {Message}" } }, { "GroupName": "administrator", "Priority": 0, "Title": { "Text": "[ ADMINISTRATOR ]", "Color": "#00CCCC", "Size": 13, "Hidden": false, "HiddenIfNotPrimary": true }, "Username": { "Color": "#00CCCC", "Size": 13 }, "Message": { "Color": "#f2f3f2", "Size": 13 }, "Format": { "Chat": "| <color=orange>RP</color> | {Title} {Username} | {Message}", "Console": "{Title} {Username}: {Message}" } } ]  
1.7m

Downloads

Total number of downloads.

7.8k

Customers

Total customers served.

117.5k

Files Sold

Total number of files sold.

2.4m

Payments Processed

Total payments processed.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.