Jump to content

Monster

Creator
  • Posts

    945
  • Joined

  • Last visited

Everything posted by Monster

  1. Monster

    XStorageUP

    Version 2.0.0

    62 downloads

    XStorageUP - an increase in the number of slots in containers. -> In the code you can switch the plugin language - LanguageEnglish = true <- - Optimization of the interface for different monitor resolutions. - Storing containers data in - oxide/data/XDataSystem/XStorageUP - There is a lang ru/en/uk/es. - Sound effects when interacting with the menu. - Automatic cleaning of oxide/data after wipe. - There is an upgrading coefficient. [ The more slots, the more expensive. ] - There are permissions to limit the number of slots. - Upgraded containers retain their properties after restart. - Checking for interaction with the desired container. [ If the container is destroyed, lifted or the player moves away from it, then nothing can be upgrade, and the player will receive a corresponding message on the screen. ] - Ability to customize the initial number of slots. [ For example 0. Players will install containers without slots and upgrade them. ] Supported containers: Working with the backpack plugin. Two options for how to eliminate the backpack upgrade (plugin): - Remove the assignment of the player ID to the container (OwnerID) so that it is always 0. [ Only if the OwnerID of the container (backpack) is not used anywhere. ] - Replace the Backpack container with one not used in the upgrade. [ For instance: SUPER Stocking - assets/prefabs/misc/xmas/stockings/stocking_large_deployed.prefab ] Permissions xstorageup.use - allow upgrading containers. xstorageup.vip - allow placement of upgraded containers. [ Maximum number of slots. ] Config { "General settings": { "Setting permissions to enhance N slots [ Leave blank to make unlimited for everyone ]": { "xstorageup.10": 10, ... }, "Button - AnchorMin": "1 0", "Button - AnchorMax": "1 0", "Button - OffsetMin": "-208 16", "Button - OffsetMax": "-16 98", "Button text size - A": 15, "Button text size - B": 10, "Button text size - C": 10 }, "Container settings": { "coffinstorage": { "Maximum number of slots": 48, "Container type": "generic_resizable", "Coefficient. Make a container upgrade more expensive with every N slot": 0.2, "List of resources for upgrade one slot": { "wood": 100, "stones": 100, "metal.fragments": 100 } }, ... }, "If the prefab and item shorts do not match [ ShortnamePrefab -> ShortnameItem ]": { "coffinstorage": "coffin.storage", "woodbox_deployed": "box.wooden", ... }, "Initial number of slots": { "coffinstorage": 48, "storage_barrel_c": 48, ... } }
    $16.99
  2. Monster

    XMenu

    Version 1.1.14

    363 downloads

    XMenu - beautiful menu for your server. - Optimization of the interface for different monitor resolutions. - There is a lang ru/en/uk/es. - Sound effects when interacting with the menu. - Refresh the information in the menu [ Refresh only the open menu ]. - Customize menu colors. - Customize menu buttons. - Shift menu for active missions. - Information display [ Online | Sleepers | Joins | Time ]. - Display of events [ Airplane, Helicopter, Ship, Chinook, Tank ]. - Displaying information of other plugins [ For example: balance of the in-game store or economy ]. - Dropdown menu with additional buttons. - The ability to completely remove the menu/logo from the screen on command. - The ability to display player coordinates/grid. -> Overview - YouTube <- Permissions xmenu.usecmd - access to the use of a command that removes the menu/logo from the screen. Commands /uimenu on/off - completely remove the menu/logo from the screen. Menu mirror reflection. [ Upper right corner of the screen ] Config: ---------------------------------- "Settings logo": { "Link to the logo image": "https://i.ibb.co/DKnnQw0/Hh7W3hz.png", "Logo color": "1 1 1 1", "Logo material": "assets/icons/greyout.mat", "Logo - AnchorMin": "1 1", "Logo - AnchorMax": "1 1", "Logo - OffsetMin": "-80 -78", "Logo - OffsetMax": "-10 -8", "Move logo - OffsetMin": "-80 -178", "Move logo - OffsetMax": "-10 -108" }, "Settings menu": { "Menu color": "1 0.27 0 0.5", "Menu material": "assets/icons/greyout.mat", "Button color": "0.217 0.221 0.209 0.75", "Button text color": "1 1 1 1", "Side line color": "1 1 1 1", "Button text size": 9, "Close the menu after pressing one of the buttons": false, "Move the menu/logo when the mission is active": false, "Menu - AnchorMin": "1 1", "Menu - AnchorMax": "1 1", "Menu - OffsetMin": "-400 -72.5", "Menu - OffsetMax": "-45 -12.5", "Move menu - OffsetMin": "-400 -172.5", "Move menu - OffsetMax": "-45 -112.5", "Plugin info - AnchorMin": "1 1", "Plugin info - AnchorMax": "1 1", "Plugin info - OffsetMin": "-445 -60", "Plugin info - OffsetMax": "-357.5 0", "Events - AnchorMin": "0 1", "Events - AnchorMax": "0 1", "Events - OffsetMin": "112.25 -90", "Events - OffsetMax": "242.75 -62.5", "Coordinates - AnchorMin": "1 0", "Coordinates - AnchorMax": "1 0", "Coordinates - OffsetMin": "-355 -29.5", "Coordinates - OffsetMax": "-244.75 -2", "Grid - AnchorMin": "1 0", "Grid - AnchorMax": "1 0", "Grid - OffsetMin": "-110.5 -29.5", "Grid - OffsetMax": "-83 -2" }, Plugin code: ---------------------------------- 676 - AnchorMin = "1 1", AnchorMax = "1 1", OffsetMin = "-42.5 -55", OffsetMax = "-40 -5" 682 - AnchorMin = "1 1", AnchorMax = "1 1", OffsetMin = "-325 -55", OffsetMax = "-322.5 -5" 694 - AnchorMin = "0.5 0.5", AnchorMax = "0.5 0.5", OffsetMin = $"{offset - 5} -25", OffsetMax = $"{offset + 47} -10" 715 - AnchorMin = "0.5 0.5", AnchorMax = "0.5 0.5", OffsetMin = $"-170 {offset - 14.25}", OffsetMax = $"-155 {offset + 0.75}" 728 - AnchorMin = "0.5 0.5", AnchorMax = "0.5 0.5", OffsetMin = $"-170 {offset - 14.25}", OffsetMax = $"-155 {offset + 0.75}" 803 - AnchorMin = "1 1", AnchorMax = "1 1", OffsetMin = "-318 -40", OffsetMax = "-47.5 -5" Example of setting information for other plugins. "Configuring information for other plugins. [ Hooks with parameter type - player(BasePlayer) | userID(ulong) ]": [ { "Plugin name": "XShop", "Method name(API)": "API_GetBalance", "Hook parameter type - [ player | userID ]": "player" }, { "Plugin name": "XLevels", "Method name(API)": "API_GetLevel", "Hook parameter type - [ player | userID ]": "player" }, { "Plugin name": "IQEconomic", "Method name(API)": "API_GET_BALANCE", "Hook parameter type - [ player | userID ]": "userID" }, { "Plugin name": "Economics", "Method name(API)": "Balance", "Hook parameter type - [ player | userID ]": "userID" }, { "Plugin name": "ServerRewards", "Method name(API)": "CheckPoints", "Hook parameter type - [ player | userID ]": "userID" } ] Config { "General settings": { "Open menu after connection": false, "Display information of other plugins": false, "Show events": true, "Show grid": true, "Show coordinates": true, "Update menu [ Only the open menu is updated ]": false, "Update information of other plugins [ Updates only when the menu is open ]": false, "Open menu refresh interval": 12.5, "Fake online from the plugin - [ Default - 0 | IQFakeActive - 1 | FGS - 2] - ( Displayed only in the panel and nowhere else )": 0, "Time format - [ HH:mm - 24:00 | hh:mm tt - 12:00 ]": "HH:mm" }, "Settings logo": { "Link to the logo image": "https://i.ibb.co/DKnnQw0/Hh7W3hz.png", "Logo color": "1 1 1 1", "Logo material": "assets/icons/greyout.mat", "Logo - AnchorMin": "0 1", "Logo - AnchorMax": "0 1", "Logo - OffsetMin": "10 -78", "Logo - OffsetMax": "80 -8", "Move logo - OffsetMin": "10 -178", "Move logo - OffsetMax": "80 -108" }, "Settings menu": { "Menu color": "1 0.27 0 0.5", "Menu material": "assets/icons/greyout.mat", "Button color": "0.217 0.221 0.209 0.75", "Button text color": "1 1 1 1", "Side line color": "1 1 1 1", "Button text size": 9, "Close the menu after pressing one of the buttons": false, "Move the menu/logo when the mission is active": false, "Menu - AnchorMin": "0 1", "Menu - AnchorMax": "0 1", "Menu - OffsetMin": "45 -72.5", "Menu - OffsetMax": "400 -12.5", "Move menu - OffsetMin": "45 -172.5", "Move menu - OffsetMax": "400 -112.5", "Plugin info - AnchorMin": "0 1", "Plugin info - AnchorMax": "0 1", "Plugin info - OffsetMin": "357.5 -60", "Plugin info - OffsetMax": "445 0", "Events - AnchorMin": "0 1", "Events - AnchorMax": "0 1", "Events - OffsetMin": "112.25 -90", "Events - OffsetMax": "242.75 -62.5", "Coordinates - AnchorMin": "0 0", "Coordinates - AnchorMax": "0 0", "Coordinates - OffsetMin": "244.75 -29.5", "Coordinates - OffsetMax": "355 -2", "Grid - AnchorMin": "0 0", "Grid - AnchorMax": "0 0", "Grid - OffsetMin": "83 -29.5", "Grid - OffsetMax": "110.5 -2" }, "Settings buttons [ Key_text | Command ] - [ Text setting in oxide/lang ]": { "REWARD": "chat.say /reward", "CALENDAR": "chat.say /calendar", "SHOP": "chat.say /s", "CRAFT": "chat.say /craft", "INFO": "chat.say /info" }, "Dropdown buttons - [ Key_text | Command ] - [ Text setting in oxide/lang ]": { "KIT_VIP": "chat.say /kit vip", "KIT_PREM": "chat.say /kit premium", "KIT_ELITE": "chat.say /kit elite", "KIT_GOLD": "chat.say /kit gold", "LEVEL": "chat.say /level" }, "Settings additional buttons": [ { "Command": "store", "Link to image from internet": "", "Link to icon from the game": "assets/icons/open.png" }, { "Command": "chat.say /s", "Link to image from internet": "https://i.ibb.co/ykDPJ4B/GRZseo8.png", "Link to icon from the game": "assets/icons/community_servers.png" }, { "Command": "chat.say /stats", "Link to image from internet": "", "Link to icon from the game": "assets/icons/market.png" } ], "Settings events": { "Event menu color": "1 0.27 0 0.5", "Event menu material": "assets/icons/greyout.mat", "Event icons background color": "0.217 0.221 0.209 0.75", "Setting up event icons": { "CargoPlane": { "Link to event image": "https://i.ibb.co/m6Fvdn1/01.png", "Active event color": "1 0.5 0.5 1", "Inactive event color": "1 1 1 1" }, "BaseHelicopter": { "Link to event image": "https://i.ibb.co/Sf0w95T/03.png", "Active event color": "1 0.5 1 1", "Inactive event color": "1 1 1 1" }, "CargoShip": { "Link to event image": "https://i.ibb.co/LvRq2X3/02.png", "Active event color": "0.5 0.5 1 1", "Inactive event color": "1 1 1 1" }, "CH47Helicopter": { "Link to event image": "https://i.ibb.co/DCcp6Td/04.png", "Active event color": "0.5 1 1 1", "Inactive event color": "1 1 1 1" }, "BradleyAPC": { "Link to event image": "https://i.ibb.co/5L6qYR4/05.png", "Active event color": "1 1 0.5 1", "Inactive event color": "1 1 1 1" } } }, "Configuring information for other plugins. [ Hooks with parameter type - player(BasePlayer) | userID(ulong) ]": [ { "Plugin name": "XShop", "Method name(API)": "API_GetBalance", "Hook parameter type - [ player | userID ]": "player" }, { "Plugin name": "XLevels", "Method name(API)": "API_GetLevel", "Hook parameter type - [ player | userID ]": "player" } ] }
    $10.49
  3. Monster

    XRestartUI

    Nobody forces you to buy this plugin. I have exhibited my work. The functionality is different.
  4. Monster

    XRestartUI

    Version 1.0.3

    318 downloads

    XRestartUI - beautiful restart notification UI. - Optimization of the interface for different monitor resolutions. - There is a lang ru/en/uk/es. - Sound effects. - There is an automatic restart schedule. [ Any commands can be scheduled ] - There is a warning N minutes before the start of the restart. - Logs restart/warnings in the server console. - Ability to skip restart if more than N players are online. -> Overview - YouTube <- Commands restart <time> <description key from langs> [ If there is no key, then the default description will be used ] Config { "General settings": { "Use chat messages": true, "Use UI notifications": true, "Use GameTip notifications": false, "Use the tick effect": true, "Use warning effect": true, "Tick effect used": "assets/bundled/prefabs/fx/notice/loot.drag.dropsuccess.fx.prefab", "Warning effect used": "assets/bundled/prefabs/fx/item_unlock.prefab", "SteamID of the profile for the custom avatar": 0, "Skip restart if there are more than N players online. [ Restart warnings are disabled ]": false, "Number of online players - to skip restart": 100 }, "GUI settings": { "AnchorMin": "0 0.85", "AnchorMax": "1 0.85", "OffsetMin": "0 -25", "OffsetMax": "0 25" }, "List of unique names(keys) of restart reasons - [ Setting up text in lang ]": [ "M_DEFAULT", "M_1", "M_2" ], "Configuring scheduled restarts [ Any command can be scheduled at any time ]": { "08:00": "restart 300", "21:00": "restart 300 M_1" }, "Setting warnings N minutes before restart": [ 60, 45, 30, 15, 10, 5 ] }
    $8.59
  5. Monster

    XGiftThrower

    Version 1.0.4

    65 downloads

    XGiftThrower - a gift-thrower that everyone can give. Even a copter under a Christmas tree. - Optimization of the interface for different monitor resolutions. - There is a lang ru/en/uk/es. - Sound effects when interacting with the menu. - There is a craft gift-thrower. [ Crafting support near Tier N workbench ] - The ability to shoot in-game items (resources) or prefabs. - The ability to make a list of items (resources) or prefabs that will randomly shoot a gift-thrower. - Possibility to change the capacity magazine of the gift-thrower. - The effect when an item or prefab appears. -> Overview - YouTube <- Commands Open crafting menu - /craftgun Give out a gift-thrower - gun_give <SteamID> snowballgun <Amount> <SkinID> Give out a snowball - gun_give <SteamID> snowball <Amount> Permissions xgiftthrower.usecraft - access to craft. xgiftthrower.usegun - access to the use of the gift-thrower. [ In the hands of a player without a permission, it will be a regular snowball gun ] Config { "General settings": { "Use craft": true, "Background color_1": "0 0 0 0.95", "Background color_2": "0.517 0.521 0.509 0.95", "Background color_3": "0.217 0.221 0.209 0.95", "Button color": "0.517 0.521 0.509 0.9" }, "Settings gift-throwers": { "skinID": { "Gift-thrower name": "Small gift-thrower", "Minimum number of gifts": 1, "Maximum number of gifts": 1, "Magazine capacity": 20, "Required workbench level for crafting": 0, "Gift appearance effect": "assets/prefabs/misc/easter/painted eggs/effects/gold_open.prefab", "Use effect": true, "Allow crafting": true, "True - item | False - prefab": true, "List of gifts / prefabs that the gift-thrower": [ "xmas.present.small" ], "List of items for crafting a gift-thrower": { "wood": 100, "stones": 50 } }, "skinID": { "Gift-thrower name": "Medium gift-thrower", "Minimum number of gifts": 1, "Maximum number of gifts": 1, "Magazine capacity": 15, "Required workbench level for crafting": 1, "Gift appearance effect": "assets/prefabs/misc/easter/painted eggs/effects/gold_open.prefab", "Use effect": true, "Allow crafting": true, "True - item | False - prefab": true, "List of gifts / prefabs that the gift-thrower": [ "xmas.present.medium" ], "List of items for crafting a gift-thrower": { "wood": 100, "stones": 50 } }, "skinID": { "Gift-thrower name": "Large gift-thrower", "Minimum number of gifts": 1, "Maximum number of gifts": 1, "Magazine capacity": 10, "Required workbench level for crafting": 2, "Gift appearance effect": "assets/prefabs/misc/easter/painted eggs/effects/gold_open.prefab", "Use effect": true, "Allow crafting": true, "True - item | False - prefab": true, "List of gifts / prefabs that the gift-thrower": [ "xmas.present.large" ], "List of items for crafting a gift-thrower": { "wood": 100, "stones": 50 } }, "skinID": { "Gift-thrower name": "Random gift-thrower", "Minimum number of gifts": 1, "Maximum number of gifts": 1, "Magazine capacity": 10, "Required workbench level for crafting": 3, "Gift appearance effect": "assets/prefabs/misc/easter/painted eggs/effects/gold_open.prefab", "Use effect": true, "Allow crafting": true, "True - item | False - prefab": true, "List of gifts / prefabs that the gift-thrower": [ "xmas.present.small", "xmas.present.medium", "xmas.present.large" ], "List of items for crafting a gift-thrower": { "wood": 100, "stones": 50 } }, "skinID": { "Gift-thrower name": "Rocket-thrower", "Minimum number of gifts": 0, "Maximum number of gifts": 0, "Magazine capacity": 5, "Required workbench level for crafting": 3, "Gift appearance effect": "", "Use effect": false, "Allow crafting": true, "True - item | False - prefab": false, "List of gifts / prefabs that the gift-thrower": [ "assets/prefabs/ammo/rocket/rocket_basic.prefab" ], "List of items for crafting a gift-thrower": { "wood": 100, "stones": 50 } } } }
    $9.49
  6. Monster

    XBarrelEvent

    Write me a private message
  7. Monster

    XOreEvent

    The link to the video is in the description. YouTube
  8. Monster

    XBarrelEvent

    You can try to replace all LootContainer in the code with StorageContainer and specify the prefab (pumpkin) you need in the config. But if you can just open them and not break them, then that's not very cool.
  9. Monster

    XBarrelEvent

    I replied that only barrels. The plugin only works with LootContainer. You can of course change the prefab of the barrel. You can also add the method and use crates instead of barrels.
  10. Monster

    XBarrelEvent

    At the moment, only barrels can be used.
  11. Monster

    XOreEvent

    Version 1.0.001

    22 downloads

    XOreEvent - stone fever - a lot of sulfur in a couple of minutes. - Optimization of the interface for different monitor resolutions. - There is a lang ru/en. - Sound effects. - The ability to set the minimum online for the start of the Event. - Possibility to configure the interval for launching the Event. - Ability to enable/disable effects when spawning/removing stones. -> Overview - YouTube <- Commands start_oreevent_admin - start the event manually. Config { "General settings": { "Minimum online to start the event": 7, "Event start interval": 5400, "Event duration": 210, "Use the effect when spawning stones": true, "Use effect when removing stones": true }, "Settings GUI": { "AnchorMin": "1 0.7", "AnchorMax": "1 0.7", "OffsetMin": "-155 -17.5", "OffsetMax": "-5 17.5" } }
    $7.49
  12. Monster

    XBarrelEvent

    Version 1.1.1

    59 downloads

    XBarrelEvent - an event of mysterious barrels for your server. - Optimization of the interface for different monitor resolutions. - There is a lang ru/en/uk/es. - Sound effects. - The ability to set the minimum online for the start of the Event. - Possibility to configure the interval for launching the Event. - Customize items and drop chances from barrels. - Setting the number of barrels on the map. - Setting up the ability to spawn a new barrel in a random place on the map after breaking the existing one. - Setting up a marker that marks the barrel on the map. [ Ability to disable the marker, thereby complicating the search for barrels ] - There is a check for stones and any textures. [ Barrels will not spawn inside textures and rocks ] - The ability to change the HP of the barrel. - Logs of spawning/breaking barrels. - The ability to use a list of different prefabs. [ Will spawn randomly ] - There are two Event modes. -> Overview - YouTube <- Commands start_barrelevent_admin - start the event manually. [ Runs only when interval event mode is enabled ] show_barrels_info - to see a list of coordinates for all the barrels. Config { "General settings": { "Offset from the edges of the map": 200, "Maximum number of items in a barrel": 4, "Number of barrels": 10, "HP barrel": 150.0, "Minimum online to start the event": 7, "Event start interval": 5400, "Event duration": 210, "Marker transparency": 0.0, "Marker radius": 0.0, "Barrel/New Year's gift/road sign prefab. [ If there is more than one prefab in the list, it will be randomized ]": [ "assets/bundled/prefabs/radtown/oil_barrel.prefab" ], "Use the effect after breaking the barrel": true, "Mark the barrel with a marker on the map": true, "Spawn a new barrel after breaking an existing one": true, "Spawn barrels only during the event (If false, then the barrels will be spawned when the plugin is loaded, and the event with an interval will not be started)": false, "Enable logs in the server console": true }, "Item customization and barrel drop chance": [ { "Item shortname": "rifle.ak", "Item skin": 2412486082, "Custom item name": "", "Text (if it's a note)": "", "Item drop chance. 100 - 100%": 25, "Minimum number of items": 1, "Maximum number of items": 1 }, { "Item shortname": "rocket.launcher", "Item skin": 0, "Custom item name": "", "Text (if it's a note)": "", "Item drop chance. 100 - 100%": 25, "Minimum number of items": 1, "Maximum number of items": 1 } ] }
    $9.49
1.8m

Downloads

Total number of downloads.

8.3k

Customers

Total customers served.

125.7k

Files Sold

Total number of files sold.

2.6m

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.