Jump to content

suhturhn's Wishlist

  1. More information about "Battlefront"

    $49.90

    Battlefront

    A long time ago, in a galaxy far, far away imperial armed forces invaded in the rust island. After the arrival imperial forces ruined a huge amount of civilisation facilities, they showed no mercy, and the life was almost exterminated, however not every habitant was killed. A little bit later valiant dwellers of the island started to develop with the velocity of light, they unified into several clans and repelled the imperial forces. The clans were able to destroy the main invaders’ troops, but there were too many of them. Now, the fate of the Rust island depends only on you, the Warrior. We wish you good luck on the battlefield!
     
    WARNING!
    There are a large number of objects on the map that remain visible for a long distance. For a higher and more stable FPS, I advise you not to include a drawing range above 1500.
    Features:
    About 95k prefabs Map size 4000 Optimal FPS The atmosphere of a very famous media universe 15 large and medium custom monuments with loot Over 5 custom locations for building Сustom locations where you can build are marked with "X” All custom locations have names on the map Combined outpost with a bandit camp Recycler added to fishing villages Compatible with Raidable Bases plugin Custom configuration of BetterNpc for the map is set up How can I view the map?
    You can do this in our Discord server by submitting a request for an invitation to our servers. There you will be given the rights of an "administrator” and without any difficulties you will be able to fly around the map and fully familiarize yourself with it.

    For which plugins do I provide configuration files?
    Defendable Bases
    BetterNpc
    Custom monuments:
    Battle of Hoth (A huge location is a place of battle) Advanced Bunker Space Fighter Base (A large base on the mountainside) Imperial Destroyer (A huge ship of invaders) Bestin City (a city from the planet Tatooine) Fresh Water Generator Rebel Generator (Location with an underground part) Yoda Swamp Oil Plant Intergalactic market (Savezone  without turrets) Jabba Ship Sand Crawler Fighter Hangar Space Parts Warehouse Zyabkino Station Green Station Custom zipline points Monuments from Facepunch:
    Launch Site Radtown Ferry Terminal Nuclear Missile Silo Outpost Junkyard Water Treatment Plant Giant Excavator Pit Train Yard Airfield Power Plant OilRig (2) Harbor (2) Sewer Branch Desert Military Base Lighthouse Fishing Village Ranch The Dome Satellite Dish Underground Tunnels Arctic Research Base Underwater Lab Ziggurat
  2. More information about "AutoRestart"

    $15.99

    AutoRestart

    AutoRestart is an advanced and fully configurable plugin to facilitate automatic restarts of Rust servers, ensuring consistent performance and minimizing downtime through effective scheduling and notifications.
    The plugin has been tested in Pterodactyl and Wisp without problems. Windows could have problems due to how each administrator has configured their bat file and that may cause the plugin to not be able to start the server again.
    Main Features
    ✨ Interactive UI: Includes an interactive UI that allows administrators to modify all plugin settings easily. 0️⃣ Scheduled Restarts: Configures automatic server restarts at defined intervals using UTC timezone for uniform scheduling. 💬 Discord Integration: Sends notifications to designated Discord channels to keep the community informed about restarts and server availability. ⚠️ Player Alerts: Notifies in-game through both UI and chat, with configurable countdowns (e.g., 60, 30, 10 minutes), including a visible final-minute countdown. 🔊 Sound Alerts: Provides optional auditory notifications to accompany visual or chat alerts. 🔄 Manual Admin Restarts: Administrators can initiate manual restarts with the /restart [seconds] command, including real-time alerts. ❌ Cancel Restarts: Allows administrators to cancel or reschedule restarts using the /restartstop command. 🚫 Player Limit Protection: Prevents restarts during high player activity by setting a player count threshold. 🔄 uMod Update Support: Automates checking for and applying uMod updates, followed by a server restart. 🎁  Rewards System: Comprehensive reward system for players who connect after server restarts, supporting Economics, ServerRewards, and custom item rewards. 🌐 Multilanguage messages:  English, Spanish, Italian, Russian, Ukrainian, French, Portugues. Permissions
    🔑 autorestart.use - Allows use of basic restart commands 🔑 autorestart.admin - Allows use of admin commands and configuration 🔑 autorestart.vote - Allows participation in restart delay votes Chat Commands
    📝 /restart: Shows current restart status and time remaining. 📝 /restart help (or /restart ?): Shows detailed help with all available commands and examples. 📝 /restart config: Opens the main configuration UI for administrators. 📝 /restart <time> (e.g., 30s/5m/1h): Schedules a manual restart for the specified time. 📝 /restart set <time>: Alternative syntax to schedule a restart (e.g., /restart set 30m). 📝 /restart now: Initiates an immediate server restart. 📝 /restart cancel: Cancels any scheduled restart. 📝 /restart status: Shows detailed restart information with UTC timestamps and restart type. 📝 /restart reload: Reloads the restart schedule from configuration file. ⏰ Time Formats: 30s, 5m, 2h, or just 300 (seconds) ❓  Note: Most commands require administrator permissions except for basic status checking. Console Commands
    autorestart: Shows the time until the next scheduled restart. autorestart <time> (e.g., 30s/5m/1h): Schedules a manual restart for the specified time. autorestart now: Initiates an immediate server restart. autorestart cancel: Cancels any scheduled restart. autorestart status: Shows detailed restart information including scheduled time and remaining duration. autorestart set <time>: Alternative way to schedule a restart (e.g., autorestart set 30m).
    API Methods
    Available Hooks OnRestartScheduled Called when a restart is scheduled (both automatic and manual) void OnRestartScheduled(int seconds, bool isCustom) { // seconds: Time until restart in seconds // isCustom: true if manually triggered, false if automatic schedule Puts($"Restart scheduled in {seconds} seconds (Custom: {isCustom})"); } OnRestartCancelled Called when a restart is cancelled void OnRestartCancelled(string reason, int secondsRemaining = 0) { // reason: Why the restart was cancelled // secondsRemaining: How many seconds were left when cancelled (0 if not applicable) // Possible values: "Manual cancellation", "Too many players", "Plugin unload" Puts($"Restart cancelled: {reason}. {secondsRemaining} seconds were remaining."); } OnRestartWarning Called during countdown warnings (every significant interval) void OnRestartWarning(int secondsLeft) { // secondsLeft: Seconds remaining until restart // Called at: 60, 50, 40, 30, 20, 10, 9, 8, 7, 6, 5, 4, 3, 2, 1 seconds if (secondsLeft <= 10) Puts($"URGENT: Server restarting in {secondsLeft} seconds!"); } OnRestartInitiated Called right before the server restart process begins void OnRestartInitiated() { // Server save and quit commands will execute after this hook Puts("Server restart initiated - saving and shutting down now!"); } Config
    { "Version": "3.1.0", "Restart": { "RestartTimes": [ "12:00" ], "AlertSound": "assets/prefabs/locks/keypad/effects/lock.code.lock.prefab", "UseSound": true, "UseChatAlerts": true, "SkipWipeDays": false, "WipeDays": [] }, "PlayerRestrictions": { "MaxPlayersBeforeCancel": 10, "RestrictPlayerCount": false }, "Alerts": { "InGameWarningTimes": [ 30, 15, 10, 5, 3, 2, 1 ], "DiscordWarningTimes": [ 30, 15, 10, 5, 1 ] }, "UpdateCheck": { "CheckForUpdates": false, "CheckInterval": 600 }, "UI": { "UseCustomUI": false, "UseRustUI": true, "CustomUI": { "AnchorMin": "0 0.5", "AnchorMax": "0 0.5", "OffsetMin": "10 -45.9695", "OffsetMax": "177.325 46.7435", "CheckIcon": "✓", "CrossIcon": "✗", "CheckIconColor": "0.5568627 0.7764706 0.1843137 1", "CrossIconColor": "0.7764706 0.5137255 0.4196078 1", "TitleColor": "0.7607843 0.9058824 1 1", "MessageColor": "0.7607843 0.9058824 1 1", "IconColor": "0.3960784 0.7137255 0.9294118 1", "CurrentIcon": "Broadcast", "BorderType": "None", "CustomTitle": null, "CustomMessage": null, "BackgroundColorHex": "#5095C4", "TitleFontSize": 12, "MessageFontSize": 10 }, "GametipStyle": 1 }, "Discord": { "WebhookUrl": "https://discord.com/api/webhooks/your-webhook-id/your-webhook-token", "ServerName": "Rust Server", "DiscordNotifications": false, "UseFullMinuteCountdown": false, "MessageContent": "@everyone Server restart | @here | <@&role-id>", "BotName": "AutoRestart Bot", "BotAvatarUrl": "https://codefling.com/uploads/set_resources_13/cf0d9ad89a1246bdc528542aa98e2147_cf_logo_23_res.png", "Embeds": {}, "Embed": { "AuthorName": "Server Restart", "AuthorIconUrl": "https://codefling.com/uploads/set_resources_13/cf0d9ad89a1246bdc528542aa98e2147_cf_logo_23_res.png", "Title": "Scheduled Server Restart", "Description": "The server will restart in {0}", "ThumbnailUrl": "https://codefling.com/uploads/set_resources_13/cf0d9ad89a1246bdc528542aa98e2147_cf_logo_23_res.png", "FooterText": "Server Restart | {DateTime}", "FooterIconUrl": "https://codefling.com/uploads/set_resources_13/cf0d9ad89a1246bdc528542aa98e2147_cf_logo_23_res.png", "FieldTitle": "Server Info", "FieldContent": "The server will be back online in approximately 3-5 minutes", "ColorHex": "#FF9900" } }, "DisableDiscordCountdownMessages": false, "Rewards": { "EnableRewards": false, "UseEconomics": false, "UseServerRewards": false, "EconomicsAmount": 0.0, "ServerRewardsPoints": 0, "RewardTimeLimit": 300, "RewardItems": [] } } Lang
    { "Version": "3.1.0", "ChatRestartAlert": "<size=16><color=#B84A4A>SERVER RESTART SCHEDULED</color></size>\n<size=12><color=#F3E7B3>Time remaining: </color><color=#E45858>{0}</color></size>\n<size=10><color=#9AA297>Prepare accordingly and save your progress</color></size>", "ChatRestartCanceled": "<size=16><color=#9CFF1E>RESTART CANCELED</color></size>\n<size=11><color=#DBE2E9>The scheduled server restart has been </color><color=#9CFF1E>canceled</color></size>", "ChatRestartNow": "<size=18><color=#B84A4A>SERVER RESTARTING NOW</color></size>\n<size=12><color=#DBE2E9>Please reconnect in </color><color=#E45858>3-5 minutes</color></size>", "ChatRestartCanceledTooManyPlayers": "<size=16><color=#F3E7B3>RESTART POSTPONED</color></size>\n<size=11><color=#DBE2E9>Restart canceled due to </color><color=#E45858>high player count</color></size>", "NoRestartScheduled": "<size=14><color=#9AA297>NO RESTART SCHEDULED</color></size>\n<size=11><color=#DBE2E9>No automatic restart is currently planned</color></size>", "RewardEconomicsReceived": "<size=14><color=#9CFF1E>ECONOMICS REWARD</color></size>\n<size=11><color=#F3E7B3>Received: </color><color=#E45858>${0}</color><color=#DBE2E9> for staying online during restart</color></size>", "RewardPointsReceived": "<size=14><color=#9CFF1E>POINTS REWARD</color></size>\n<size=11><color=#F3E7B3>Received: </color><color=#E45858>{0} RP</color><color=#DBE2E9> for staying online during restart</color></size>", "RewardItemReceived": "<size=14><color=#9CFF1E>ITEM REWARD</color></size>\n<size=11><color=#F3E7B3>Received: </color><color=#E45858>{0}x {1}</color><color=#DBE2E9> for staying online during restart</color></size>", "RewardTimeLeft": "<size=12><color=#F3E7B3>Restart rewards active for </color><color=#E45858>{0}</color><color=#F3E7B3> more</color></size>", "RewardPeriodEnded": "<size=14><color=#B84A4A>REWARD PERIOD ENDED</color></size>\n<size=11><color=#9AA297>Restart rewards are no longer available</color></size>", "RustUITitle": "SCHEDULED SERVER RESTART", "RustUIMessage": "The server will restart in {0}.", "CustomUITitle": "SCHEDULED SERVER RESTART", "CustomUIMessage": "The server will restart in {0}.", "NoPermission": "You do not have permission to use this command.", "Usage": "Usage: /restart <time>[s|m|h] (e.g., 30s, 5m, 1h)", "InvalidNumber": "Invalid time format. Use <number>[s|m|h] (e.g., 30s, 5m, 1h)", "UpdateDetected": "A uMod update has been detected. The server will restart to apply the update.", "DiscordRestartAlert": " **SERVER RESTART**\nServer will restart in {0}.", "DiscordRestarting": " **RESTARTING**\nServer is restarting now. Please wait 5 minutes for the server to be back online.", "DiscordOnline": " **SERVER ONLINE**\nServer is now online and ready to play!", "TimeMinute": "minute", "TimeMinutes": "minutes", "TimeHour": "hour", "TimeHours": "hours", "TimeSecond": "second", "TimeSeconds": "seconds", "ConfigTitle": "AutoRestart UI Configurator", "DiscordSettings": "Discord Settings", "RewardSettings": "Reward Settings", "TimeSettings": "Restart Times Settings", "NotificationSettings": "Notification Settings", "Save": "Save", "Close": "Close", "Back": "Back", "SavedSuccessfully": "Configuration saved successfully!", "Search": "Search items...", "AllCategories": "All Categories", "CategoryWeapons": "Weapons", "CategoryTools": "Tools", "CategoryConstruction": "Construction", "CategoryItems": "Items", "CategoryResources": "Resources", "CategoryAttire": "Attire", "CategoryMedical": "Medical", "CategoryFood": "Food", "CategoryAmmo": "Ammunition", "CategoryTraps": "Traps", "CategoryMisc": "Miscellaneous", "CategoryComponents": "Components", "CategoryElectrical": "Electrical", "CategoryFun": "Fun", "ManageRewards": "AutoRestart - Reward Manager", "ItemSelector": "AutoRestart - Item Selector", "NoRewards": "No rewards configured. Click the 'Add Reward' button to add some.", "EnterQuantity": "Enter quantity for {0}", "AddReward": "Add Reward", "RemoveAll": "Remove All", "ConfirmRemoveAll": "Are you sure you want to remove all rewards?", "Yes": "Yes", "No": "No", "RewardAdded": "Added {0}x {1} to restart rewards.", "RewardRemoved": "Removed {0}x {1} from restart rewards.", "RewardUpdated": "Updated {0} quantity to {1}.", "InvalidItem": "Invalid item. Please try again.", "InvalidQuantity": "Please enter a valid quantity greater than 0.", "CategoriesReset": "Item categories have been reset to default values.", "TimesListTitle": "Restart Times (UTC)", "AddTime": "Add Time", "RemoveTime": "Remove", "InvalidTimeFormat": "Invalid time format. Please use HH:MM format (e.g., 04:30)", "AddWipeDay": "Add Wipe Day", "WipeDaysTitle": "Wipe Days (Restarts Skipped)", "WipeDayAdded": "Added {0} to wipe days. Restarts will be skipped on this day.", "WipeDayRemoved": "Removed {0} from wipe days.", "MessageSettings": "Message Settings", "EmbedSettings": "Embed Settings", "WebhookSettings": "Webhook Settings", "HelpTitle": "<size=18><color=#B84A4A>AUTORESTART COMMANDS</color></size>", "HelpUsage": "<size=12><color=#F3E7B3>Usage: </color><color=#E45858>/restart [command] [time]</color></size>", "HelpCommands": "<size=14><color=#9CFF1E>Available Commands:</color></size>", "HelpStatus": "<size=11><color=#F3E7B3>• </color><color=#DBE2E9>/restart</color><color=#9AA297> - Show current restart status</color></size>", "HelpSet": "<size=11><color=#F3E7B3>• </color><color=#DBE2E9>/restart set <time></color><color=#9AA297> - Schedule custom restart</color></size>", "HelpCancel": "<size=11><color=#F3E7B3>• </color><color=#DBE2E9>/restart cancel</color><color=#9AA297> - Cancel active restart</color></size>", "HelpNow": "<size=11><color=#F3E7B3>• </color><color=#DBE2E9>/restart now</color><color=#9AA297> - Restart server immediately</color></size>", "HelpStatusCmd": "<size=11><color=#F3E7B3>• </color><color=#DBE2E9>/restart status</color><color=#9AA297> - Show detailed restart info</color></size>", "HelpConfig": "<size=11><color=#F3E7B3>• </color><color=#DBE2E9>/restart config</color><color=#9AA297> - Open configuration UI</color></size>", "HelpReload": "<size=11><color=#F3E7B3>• </color><color=#DBE2E9>/restart reload</color><color=#9AA297> - Reload restart schedule</color></size>", "HelpTimeFormat": "<size=12><color=#F3E7B3>Time formats: </color><color=#E45858>30s, 5m, 2h</color><color=#9AA297> or just </color><color=#E45858>300</color><color=#9AA297> (seconds)</color></size>", "HelpExamples": "<size=14><color=#9CFF1E>Examples:</color></size>", "HelpExample1": "<size=10><color=#F3E7B3>• </color><color=#DBE2E9>/restart 30m</color><color=#9AA297> - Restart in 30 minutes</color></size>", "HelpExample2": "<size=10><color=#F3E7B3>• </color><color=#DBE2E9>/restart set 1h</color><color=#9AA297> - Schedule restart in 1 hour</color></size>", "HelpExample3": "<size=10><color=#F3E7B3>• </color><color=#DBE2E9>/restart 300</color><color=#9AA297> - Restart in 300 seconds</color></size>", "HelpAdminOnly": "<size=10><color=#B84A4A>Note: </color><color=#9AA297>Most commands require admin permission</color></size>", "InvalidCommand": "<size=14><color=#B84A4A>INVALID COMMAND</color></size>\n<size=11><color=#DBE2E9>Unknown command: </color><color=#E45858>{0}</color></size>", "RestartActiveError": "<size=14><color=#B84A4A>RESTART ALREADY ACTIVE</color></size>\n<size=11><color=#DBE2E9>Use </color><color=#E45858>/restart cancel</color><color=#DBE2E9> first to schedule a new one</color></size>", "NoRestartToCancel": "<size=14><color=#B84A4A>NO RESTART TO CANCEL</color></size>\n<size=11><color=#9AA297>There is no active restart to cancel</color></size>", "RestartCancelledSuccess": "<size=14><color=#9CFF1E>RESTART CANCELLED</color></size>\n<size=11><color=#DBE2E9>The restart has been </color><color=#9CFF1E>successfully cancelled</color></size>", "RestartScheduledSuccess": "<size=14><color=#9CFF1E>RESTART SCHEDULED</color></size>\n<size=11><color=#F3E7B3>Custom restart scheduled for </color><color=#E45858>{0}</color></size>", "ReloadingSchedule": "<size=14><color=#F3E7B3>RELOADING SCHEDULE</color></size>\n<size=11><color=#9AA297>Restart schedule is being reloaded...</color></size>", "ScheduleReloadedWithRestart": "<size=14><color=#9CFF1E>SCHEDULE RELOADED</color></size>\n<size=11><color=#F3E7B3>Next restart in: </color><color=#E45858>{0}</color><color=#F3E7B3> at </color><color=#E45858>{1}</color><color=#F3E7B3> UTC</color></size>", "ScheduleReloadedNoRestart": "<size=14><color=#F3E7B3>SCHEDULE RELOADED</color></size>\n<size=11><color=#9AA297>No restart currently scheduled</color></size>", "StatusTitle": "<size=16><color=#9CFF1E>RESTART STATUS</color></size>", "StatusNextRestart": "<size=14><color=#F3E7B3>Next restart in: </color><color=#E45858>{0}</color></size>", "StatusScheduledFor": "<size=11><color=#F3E7B3>Scheduled for: </color><color=#DBE2E9>{0}</color></size>", "StatusType": "<size=11><color=#F3E7B3>Type: </color><color=#DBE2E9>{0}</color></size>", "StatusTimeRemaining": "<size=12><color=#F3E7B3>Time remaining: </color><color=#E45858>{0}</color></size>", "StatusTotalSeconds": "<size=11><color=#F3E7B3>Total seconds: </color><color=#DBE2E9>{0}</color></size>", "TypeCustom": "Custom", "TypeScheduled": "Scheduled" }
  3. More information about "Wipe Schedule"

    $29.95 $21.95

    Wipe Schedule

    The ultimate solution for RUST server owners. Our plugin gives you complete control over scheduling server events, allowing you to create unique schedules that automatically adapt to your needs.
     

     
    🌟  Features  of Wipe Schedule
    Handy built-in editor: Manage events directly in-game through an intuitive and user-friendly interface. Customizable calendar commands: Set up custom commands, so players can easily open the calendar and view upcoming events. Multi-language support: Localize the plugin for your audience by translating all interface text into any language. Customization flexibility: Add events with individual descriptions, dates, and times — perfect for wipes, tournaments, or special server events. Easy integration: Quick and easy installation with Server Panels. Recurring events: Say goodbye to the hassle of manually scheduling events every week! Create events that automatically repeat on a set schedule:|
    ✔️ Weekly events.
    ✔️ Repeats every X days.
    ✔️ Monthly and annual events. Complex combinations: Combine different repeat types to build unique and fully customizable schedules.  
    🎮  Commands
    /wipe: Open the calendar interface (for players)  
    🔒  Permissions
    wipeschedule.admin: Grants full access to create, edit, and delete scheduled events through the in-game interface.  
    📨  Video Overview
     
    🧪  Test Server
    Join our test server to experience all our unique features firsthand!
    Copy the IP address below to start playing!
    connect 194.147.90.239:28015  
    📚  FAQ
    Q: Where can I see an example of a config?
    A:  Config
    Q: How do I add WipeSchedule to ServerPanel?
    A: To add WipeSchedule to your ServerPanel, create a new category in your ServerPanel configuration with these settings:
    "Type": "Plugin", "Plugin Name": "WipeSchedule", "Plugin Hook": "API_OpenPlugin". Q: How can I hide the bottom panel with "/info" command and event color markers?
    A: To hide the bottom information panel, edit the UI configuration file located at oxide/data/WipeSchedule/SetupUI and set "Show panel with /info command and event color markers?": false in the Schedule section. The file name depends on your template: UIFullScreen.json for full screen mode, UIMenuV1.json for ServerPanel template V1, or UIMenuV2.json for ServerPanel template V2.
  4. More information about "Events Manager"

    $21.95 $15.95

    Events Manager

    Discover the EventsManager plugin, a powerful and flexible tool crafted specifically for Rust game servers. Designed by senyaa  & M&B-Studios, this plugin streamlines the management and scheduling of various in-game events, enhancing player engagement and server dynamics.
     

     
    🌟  Features of Events Manager
    Multi-Event Support: Seamlessly manage multiple events, each with customizable settings. Customizable Display: Assign distinct names, commands, and colors for UI buttons to each event. Scheduling Flexibility: Schedule events to run on specific days and at designated hours. Administrative Control: Utilize commands to launch events, providing server admins with ultimate flexibility. Enhanced Player Experience: Introduce regular events to boost player engagement within the Rust environment. Random Event Start: Introduce surprise elements by allowing the plugin to randomly select events from a pool. Integration of Facepunch Events: Enjoy a dynamic gameplay experience with popular Facepunch events now included in the plugin.  
    🎮  Commands
    /em: Set up events, including start time and day. /newevent: Add new events tailored to your preferences, enhancing the versatility of the Event Manager. /newcreator: Easily add new creators to the event manager. eventmanager.convert.v2: Migrates V2 data to V3 (console only)  
    💬  Permissions
    eventsmanager.use: This permission allows users to access the event management features and open the menu.  
    🎥  Video Overview
     
    📚  FAQ
    Q: Where can I see an example of a config?
    A:    Config
    Q: Do I need to configure anything special for events?
    A: Yes, it's important to disable autostart in your events when using EventsManager. The plugin handles the scheduling and starting of events, so having autostart enabled could cause conflicts or unexpected behavior.
  5. More information about "Server Hud"

    $14.99

    Server Hud

    🗒️Features:
    You can add any  plugin event in the UI  (if it has hooks, usually specified in the plugin description) Has ingame UI menu for configure your Hud The time format is adjusted to the player (depending on his language in the game), it checks which time format is used for this language You can also enable an additional menu that opens on the arrow. You can add various buttons to this menu, for example, to open a store, your server menu, etc. Almost all elements are customizable  [for example: visibility of each element, Logo, Icons, Color e.t.c (check config down below)]
       

       

       
       
     
     

    📕Commands:
    /h setup - open UI for ingame config

    /h - show all Server Hud UI commands
    /h open - open Server Hud UI
    /h events - open Events Bar
    /h close - close Server Hud UI
    /h hide - hide Server Hud UI
    Q&A:
    Q: Where i can find a base icon for creating my events icons?
    A: Take a base icon below this message and using f.e photoshop for create you personal event icon!

    Q: Where i can find a ready to use icons?
    A: Here some links to ready to use icons packs(1 free, 2 paid):
    https://codefling.com/customizations/free-custom-hud-icons
    https://codefling.com/customizations/custom-hud-icons-paid
    https://codefling.com/customizations/server-hud-custom-icon-pack
    API:
    string API_PlayerHudState(string id)
    CanHudChangeState(BasePlayer player, string currentState, strint nextState)
    🗒️Config:
    { "Auto reload [If you change the config and save the file the plugin will reload itself]": true, "Main setup": { "Overall layer [you will see the hud in your inventory]": false, "Size ALL [0% - inf]": 100, "Logo [HUD interact button]": "https://media.discordapp.net/attachments/335512864548847617/1134455399756607549/logo.png", "Events background opacity [0% - 100%]": 100, "Background opacity [0% - 100%]": 100, "Position": { "Align [TopLeft | TopRight | BottomLeft | BottomRight": "TopLeft", "Left | Right - offset": 40, "Top | Bottom - offset": 25 }, "Server name": "Your Server Name", "Active players": { "Icon": "https://cdn.discordapp.com/attachments/335512864548847617/1134455395813965934/active.png", "Color": "#fff", "Enable": true }, "Sleep players": { "Icon": "https://cdn.discordapp.com/attachments/335512864548847617/1134455395138670652/sleep.png", "Color": "#fff", "Enable": true }, "Queue players": { "Icon": "https://cdn.discordapp.com/attachments/335512864548847617/1134455393972654171/line.png", "Color": "#fff", "Enable": true }, "Time": true, "Player position [hide permisson - hud.streamer]": { "Enable": true, "true - grid | false - x,z coordinates": true, "Color": "cyan" }, "Economy plugin [Economics | ServerRewards]": { "Currency": "$", "Value color": "#10ff10", "Enable": true }, "Info messages": { "Update interval [in seconds]": 60, "Align [BottomCenter | TopCenter | TopRight]": "BottomCenter", "Width [in px]": 260, "Offset [top | bottom]": 0, "Offset [right]": 15, "Outline color": "#000", "Overall [you will see messages in your invenotory]": true, "Enable": true, "Messages": [ "Welcome to Your Server Name", "Good luck" ] }, "Additional menu": { "Auto close timer [seconds | 0 - disable]": 60, "Auto close after command use": true, "Open/Close button color": "yellow", "Commands background opacity [0% - 100%]": 100, "Enable": true, "Commands": [ { "Background image": "https://media.discordapp.net/attachments/335512864548847617/1134455392420761671/command.png", "Icon [optional]": "https://media.discordapp.net/attachments/335512864548847617/1134455395813965934/active.png", "Command": "chat.say Hello there", "Text": "Say Something", "Outline color": "#000", "Is Console": true }, { "Background image": "https://media.discordapp.net/attachments/335512864548847617/1134455392420761671/command.png", "Icon [optional]": "", "Command": "/shop", "Text": "Say Something", "Outline color": "#000", "Is Console": false } ] } }, "Base Events": [ { "Name": "Bradley", "Active color": "#10ff10", "Icon": "https://media.discordapp.net/attachments/335512864548847617/1134455316654850049/bradley.png", "Color": "#fff", "Enable": true }, { "Name": "PatrolHeli", "Active color": "#10ff10", "Icon": "https://media.discordapp.net/attachments/335512864548847617/1134455315073597530/heli.png", "Color": "#fff", "Enable": true }, { "Name": "CH47", "Active color": "#10ff10", "Icon": "https://media.discordapp.net/attachments/335512864548847617/1134455317485342803/ch47.png", "Color": "#fff", "Enable": true }, { "Name": "Cargo", "Active color": "#10ff10", "Icon": "https://media.discordapp.net/attachments/335512864548847617/1134455317086879794/cargo.png", "Color": "#fff", "Enable": true }, { "Name": "AirDrop", "Active color": "#10ff10", "Icon": "https://cdn.discordapp.com/attachments/335512864548847617/1134455316143161374/airdrop.png", "Color": "#fff", "Enable": true } ], "Custom Events": [ { "Hook OnEventStart": "OnConvoyStart", "Hook OnEventStop": "OnConvoyStop", "Name": "Convoy", "Active color": "#10ff10", "Icon": "https://media.discordapp.net/attachments/335512864548847617/1134455318030598154/convoy.png", "Color": "#fff", "Enable": false }, { "Hook OnEventStart": "OnSputnikEventStart", "Hook OnEventStop": "OnSputnikEventStop", "Name": "Sputnik", "Active color": "#10ff10", "Icon": "https://cdn.discordapp.com/attachments/335512864548847617/1134455315488854016/sputnik.png", "Color": "#fff", "Enable": false }, { "Hook OnEventStart": "OnArmoredTrainEventStart", "Hook OnEventStop": "OnArmoredTrainEventStop", "Name": "ArmoredTrain", "Active color": "#10ff10", "Icon": "https://cdn.discordapp.com/attachments/335512864548847617/1134455315841155173/train.png", "Color": "#fff", "Enable": false }, { "Hook OnEventStart": "OnHarborEventStart", "Hook OnEventStop": "OnHarborEventEnd", "Name": "Harbor", "Active color": "#10ff10", "Icon": "https://cdn.discordapp.com/attachments/335512864548847617/1134455318332592219/harbor.png", "Color": "#fff", "Enable": false } ] }
1.9m

Downloads

Total number of downloads.

9.2k

Customers

Total customers served.

134.1k

Files Sold

Total number of files sold.

2.8m

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.