Jump to content

DeutscherRitterPlatz

Creator
  • Posts

    543
  • Joined

  • Last visited

  • Days Won

    21

Everything posted by DeutscherRitterPlatz

  1. Improvement Proposal: Extended Configuration and Permission Options 1. Sort Bases by Difficulty Currently, all bases are simply listed one after another in the configuration file. For better organization, it would make sense to group or sort them by difficulty level. 2. Enable/Disable Difficulty Buttons It should be possible to configure whether certain difficulty buttons are displayed at all. Example Config Option: "DifficultyActivate": true Alternatively, this could also be controlled via permissions (see below). 3. Permissions for Difficulty Levels It would be useful to define for each difficulty level whether a permission is required. If the config setting "RequiresDifficultyPermission" is set to true and a player does not have the required permission, the corresponding button should not be displayed. Example Config Option: "RequiresDifficultyPermission": false Example Permissions: raidselector.easy raidselector.medium raidselector.hard raidselector.expert raidselector.nightmare 4. Permissions for Buy Buttons Optional permissions could also be added for the “Buy” buttons. If a player does not have the required permission, the button would appear grayed out. Whether these permissions are required should also be configurable. Example Config Option: "RequiresBuyRandomPermission": false, "RequiresBuyPersonalPermission": false Example Permissions: raidselector.buyraidpersonal raidselector.buyraidrandom Example New Config: { "ChatCommand": "rs", "RequiresOxidePermission": false, "BaseDifficulties": { "Easy": { "DifficultyActivate": true, "RequiresDifficultyPermission": false, "Permission": "raidselector.easy", "Bases": { "RBEasy001": { "DisplayName": "", "Description": "", "Credit": "", "ImageUrl": "", "NotBuyable": false } } }, "Medium": { "DifficultyActivate": true, "RequiresDifficultyPermission": false, "Permission": "raidselector.medium", "Bases": { "RBMedium001": { "DisplayName": "", "Description": "", "Credit": "", "ImageUrl": "", "NotBuyable": false } } }, "Hard": { "DifficultyActivate": true, "RequiresDifficultyPermission": false, "Permission": "raidselector.hard", "Bases": { "RBHard001": { "DisplayName": "", "Description": "", "Credit": "", "ImageUrl": "", "NotBuyable": false } } }, "Expert": { "DifficultyActivate": false, "RequiresDifficultyPermission": false, "Permission": "raidselector.expert", "Bases": { "RBExpert001": { "DisplayName": "", "Description": "", "Credit": "", "ImageUrl": "", "NotBuyable": false } } }, "Nightmare": { "DifficultyActivate": false, "RequiresDifficultyPermission": false, "Permission": "raidselector.nightmare", "Bases": { "RBNightmare001": { "DisplayName": "", "Description": "", "Credit": "", "ImageUrl": "", "NotBuyable": false } } } }, "BuyButtonPermissions": { "RequiresBuyRandomPermission": false, "RequiresBuyPersonalPermission": false, "BuyPersonalPermission": "raidselector.buyraidpersonal", "BuyRandomPermission": "raidselector.buyraidrandom" }, "Images": { "EnableOfflineMode": false, "LocalImagePrefix": "RaidSelector", "ImageCacheTimeout": 300 }, "Colors": { "ModalBackground": "0.05 0.1 0.2 0.98", "PanelBackground": "0.08 0.15 0.3 0.95", "TitleBarBackground": "0.1 0.2 0.4 1.0", "TooltipBackground": "0.05 0.1 0.2 0.95", "LeftPanelBackground": "0.05 0.1 0.25 0.95", "MiddlePanelBackground": "0.08 0.15 0.3 0.95", "RightPanelBackground": "0.05 0.12 0.25 0.95", "BasePanelActiveBackground": "0.15 0.45 0.85 1.0", "BasePanelInactiveBackground": "0.1 0.3 0.7 0.8", "InputFieldBackground": "0.1 0.2 0.4 0.9", "ProgressBarBackground": "0.1 0.2 0.3 0.8", "ProgressBarFill": "0.2 0.7 0.2 0.9", "TableHeaderBackground": "0.1 0.2 0.4 0.9", "TableRowEven": "0.1 0.2 0.3 0.5", "TableRowOdd": "0.08 0.15 0.25 0.5", "ButtonBackground": "0.2 0.4 0.8 0.9", "SelectedButtonBackground": "0.15 0.45 0.85 1.0", "BuyButtonBackground": "0.2 0.7 0.2 0.9", "CloseButtonBackground": "0.8 0.2 0.2 0.9", "RandomButtonBackground": "0.2 0.6 0.2 0.9", "XButtonBackground": "0.8 0.2 0.2 0.9", "PurchaseButtonBackground": "0.2 0.6 0.2 0.9", "DifficultyButtonActiveBackground": "0.2 0.5 0.9 1.0", "DifficultyButtonInactiveBackground": "0.1 0.3 0.7 0.8", "HeaderTextColor": "1 1 1 1", "TextColor": "1 1 1 1", "TitleBarText": "1 1 1 1", "TableHeaderText": "1 1 1 1", "XButtonText": "1 1 1 1", "CloseButtonText": "1 1 1 1", "PurchaseButtonText": "1 1 1 1", "DifficultyButtonText": "1 1 1 1", "BasePanelNameText": "1 1 1 1", "BasePanelDescText": "0.9 0.9 0.9 1", "RightPanelHeaderText": "1 1 1 1", "RightPanelDescText": "0.9 0.9 0.9 1", "DividerColor": "0.3 0.5 0.8 0.8", "BaseImageFallback": "0.2 0.4 0.7 0.8", "ScrollbarHandleColor": "0.6 0.6 0.6 0.8", "ScrollbarHighlightColor": "0.6 0.6 0.6 0.8", "ScrollbarPressedColor": "0.6 0.6 0.6 0.8", "ScrollbarTrackColor": "0.2 0.2 0.2 0.3" } } Maybe you'll find these ideas interesting, they could help make the plugin even more customizable for specific players or server concepts. Thanks for the awesome plugin and the quick fix, it’s working perfectly again!
  2. We are using Carbon. We are waiting for a solution from you, thank you for the quick response.
  3. We’re getting this error with the latest version of Carbon. Failed compiling 'RaidSelector.cs': [14:51:42] > 1. 'object' does not contain a definition for 'Call' and no accessible extension method 'Call' accepting a first argument of type 'object' could be found (are you missing a using directive or an assembly reference?) [CS1061] (RaidSelector 32 line 1796) [14:51:42] > 2. The type arguments for method 'OxideMod.GetLibrary<T>(string)' cannot be inferred from the usage. Try specifying the type arguments explicitly. [CS0411] (RaidSelector 50 line 1846)
  4. this https://rusthelp.com/items/clothing-mannequin
  5. [2025.09.03 22:25:20] [ERRO] Failed compiling 'Recyclerbox.cs': [2025.09.03 22:25:20] [ERRO] 1. No overload for method 'SendNetworkUpdateImmediate' takes 1 arguments [CS1501]
    Destroyed World is another well-made map by mapper Gruber, which we’ve used for two months. Even with over 50 players, we encountered no issues. The map offers a wide range of interesting monuments and exploration opportunities. It manages to keep the community engaged over a longer period, and we can definitely recommend it.
    A very well-made map. It features interesting locations like bars, caves, and more. Issues are addressed quickly, provided Niko becomes aware of them. Originally, the map lacked a jungle biome, which has since been added through a revision. We haven’t encountered any issues so far, so we’re giving it 5 stars. Thanks for your great work, Niko.
  6. If you have a category with wallpaper, disable it so the plugin can work again. Apparently, Facepunch removed the wallpaper item.
    Great Plugin! Installation was quick and easy, and the configuration is clear and well-organized. So far, we haven't encountered any issues. We highly recommend this plugin, a fantastic addition to our server!
  7. Very interesting plugin! Even though I haven’t purchased it (yet), I already came up with two ideas: In the video, you showed the configuration, it would be really useful if ItemCustomName and ItemSkinID were supported as well. There are already options like GiveGroup, GiveItems, and GivePerms, so adding a GiveCommand function would be great to allow executing a custom command when triggered. A cool idea and the installation seems very straightforward!
    The plugin runs smoothly on both Oxide and Carbon. The core idea a Minicopter with an F15 model is creative and offers some initial variety. Unfortunately, the execution falls short: the handling is essentially that of a standard Minicopter with a few changes, making precise maneuvers nearly impossible. Additionally, the F15 model isn't static, which further impacts the experience. This is clearly a fun plugin meant for short-term entertainment. However, player interest dropped off quickly. We originally purchased the plugin for around €4. At the current price of €9, it's up to each server owner to decide if it's worth it. Rating: 4 out of 5 stars - Creative concept - Fast support - Easy configuration - Compatible with Oxide and Carbon - Poor value for the price If you're looking for some short-term fun, it might be worth picking up on sale.
  8. Hi there, we've been using the plugin for several months now, and over time, the list of items has grown significantly. That gave me the idea to add a search function at the top of the list. This would allow users to quickly search for a specific item. I'm referring to the GUI that appears when using the /items command.
  9. Stick with BetterNpc. Many developers use this plugin because it has proven itself in practice and offers broad support. That’s not to say other plugins are bad, but very few developers actively work with them. In the past, BotReSpawn was the only option. It wasn’t until later that BetterNpc was released, and it has since become widely used. That’s why I recommend sticking with BetterNpc.
  10. Hey everyone, is anyone else having issues with the CH47 spawn? I do get the "Start" message, but the CH47 just doesn't spawn.
  11. Is Blue Keycard CARD_ITEM_ID Green Keycard = 37122747 Blue Keycard = -484206264 Red Keycard = -1880870149
  12. Changed Status from Pending to Closed Changed Fixed In to 1.0.2
  13. Changed Status from Pending to Can't Reproduce
  14. There is already a ticket for this. I have tested the latest version there, and the plugin works perfectly for me. Which version are you using? https://codefling.com/files/support/20701-not-working-since-0425/
  15. Hey, sorry, I didn't see the message. Everything runs via the SkinID. The SkinID must match the SkinID from the config. I'll still take a look at it myself.
  16. please fix, prefab is broken,
  17. I really like this design! All the important points are clearly organized in one place, providing an excellent overview of the server.
  18. Changed Status from Pending to Closed
  19. Version 1.0.0

    144 downloads

    This is an extension of the Magic Panel plugin that shows an icon for the Air Convoy Event plugin. The icon's color and position can be set individually in the configuration file. Please note: The MagicAirConvoyPanel only works in conjunction with the "MagicPanel" and "AirConvoy" plugins. Make sure you have installed these plugins before using the Event Panel. The plugin also automatically checks if any of the required plugins are missing. If the plugins are not present, it will not be loaded. #Configuration The settings and options can be configured in the MagicAirConvoyEventPanel file under the config directory. The use of an editor and validator is recommended to avoid formatting issues and syntax errors. { "Active Color": "#00FF00FF", "Inactive Color": "#FFFFFF1A", "Panel Settings": { "Dock": "center", "Width": 0.02, "Order": 1, "BackgroundColor": "#FFF2DF08" }, "Panel Layout": { "Image": { "Url": "https://data.mgcdrp.de/images/rust/rustplugins/magicpanel/AirConvoyIcon.png", "Enabled": true, "Color": "#FFFFFFFF", "Order": 0, "Width": 1.0, "Padding": { "Left": 0.1, "Right": 0.1, "Top": 0.05, "Bottom": 0.05 } } } } #Credits Thanks to MJSU for the Magic Panel plugin. We reworked one of the plugin extensions so that MagicPanel now also supports the Air Convoy Event plugin. If you're not satisfied with the icon, take a look here – you might find something more suitable.
    Free
  20. DeutscherRitterPlatz

    Improvement

    Changed Status from Work in Progress to Closed
2m

Downloads

Total number of downloads.

9.6k

Customers

Total customers served.

139.2k

Files Sold

Total number of files sold.

2.9m

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.