PhoenixAphaAlex
Member-
Posts
20 -
Joined
-
Last visited
Content Type
Profiles
Downloads
Forums
Store
Support
DOWNLOADS EXTRA
Services
Everything posted by PhoenixAphaAlex
-
Hello, I also confirm the problem of barricades that do not withdraw between waves despite the addition of configuration. Meanwhile, we will have to make sure that the players do not abuse this trick because it really allows to finish the 6 waves without firing a single bullet. I also have another question, does the plugin have a hook to indicate the beginning and end of the event? The information is not indicated in the description of the plugin unlike other event plugins. Thank you in advance
- 98 comments
-
- #barricade
- #ch47
- (and 26 more)
-
Question about server commands
PhoenixAphaAlex replied to PhoenixAphaAlex's Support Request in Support
I managed to solve the problem by modifying the ExecuteCommands function with a proposal made by GPT. It is certainly far from being "clean" but it works for my case. Replace (line 1146-1154) : private void ExecuteCommands(){ foreach (var cmd in listCommand){ var command = cmd; #if CARBON command = command.Replace("o.", "c.").Replace("oxide.", "c."); #endif Server.Command(command); } } By : private void ExecuteCommands() { foreach (var cmd in listCommand){ var command = cmd; Puts("Executing command: " + command); // Log the command being executed #if CARBON // If the command does not start with "carbon.", replace "o." and "oxide." with "c." if (!command.StartsWith("carbon.")) { command = command.Replace("o.", "c.").Replace("oxide.", "c."); } #endif try { // Check if the command is a plugin command if (command.StartsWith("carbon.unload")) { string pluginName = command.Replace("carbon.unload ", ""); Puts("Attempting to unload plugin: " + pluginName); Interface.Oxide.UnloadPlugin(pluginName); } else if (command.StartsWith("carbon.load")) { string pluginName = command.Replace("carbon.load ", ""); Puts("Attempting to load plugin: " + pluginName); Interface.Oxide.LoadPlugin(pluginName); } else if (command.StartsWith("carbon.reload")) { string pluginName = command.Replace("carbon.reload ", ""); Puts("Attempting to reload plugin: " + pluginName); Interface.Oxide.ReloadPlugin(pluginName); } else { Puts("Running command via ConsoleSystem: " + command); ConsoleSystem.Run(ConsoleSystem.Option.Server, command); } } catch (Exception ex) { Puts("Error executing command: " + ex.Message); } } } It would appear that the use of: Interface.Oxide.UnloadPlugin(pluginName); Instead of : Server.Command (command); Be sufficient for the load, unload and reload commands to work. -
Question about server commands
PhoenixAphaAlex replied to PhoenixAphaAlex's Support Request in Support
Hi, I just tried again by changing the command, and unfortunately it still does not work... The same message appears in the console when I reload TiersMode and it executes the commands for the current tier : Command 'carbon.unload PowerPlantEvent' not found My new config : "Server Commands": [ "carbon.unload PowerPlantEvent" ] And yet, if I manually run the command from the console, it works very well. I don't understand why... -
Need to change targeting for Convoys and ZombieHorde
PhoenixAphaAlex replied to Corpski's Support Request in Support
Hello, I reopen this ticket because indeed, if we activate: "Can NpcSpawn NPCs attack other NPCs? [true/false]": true BetterNPC NPCs attack ZombieHorde’s NPCs well, except that BetterNPC NPCs that do not have the same configuration and are present on the same monument also attack each other. Is it possible to have an option where BetterNPC’s NPCs only attack those in ZombieHorde without attacking each other? -
Question about server commands
PhoenixAphaAlex replied to PhoenixAphaAlex's Support Request in Support
Yes, Carbon "Server Commands": [ "c.unload PowerPlantEvent" ] And when the command is triggered by the plugin, in the console : Command 'c.unload PowerPlantEvent' not found -
Question about server commands
PhoenixAphaAlex replied to PhoenixAphaAlex's Support Request in Support
Actually, as I explained, the idea is to be able to use the "Server Commands" section to unload plugins that do not work well during periods when events are disabled, but obviously the commands are not recognized (Command 'c.unload PowerPlantEvent' not found in console). Is there no way to solve just this problem? -
Hello, I noticed that if the chinook is disabled during a tier, then the PowerPlantEvent plugin which uses the chinook during the event does not work and returns a NullReferenceException when the chinook is supposed to appear. To solve this problem, I tried to add a command to disable the plugin on tier where the chinook is disabled, and add the load of the plugin from the tier where it is enabled. But it would seem that at the time when the command must be executed, it does not work. In the console I get : Command 'c.unload PowerPlantEvent' not found The commands used are those of Carbon: "Server Commands": [ "c.unload PowerPlantEvent" ] "Server Commands": [ "c.load PowerPlantEvent" ] How to solve this problem? Thank you in advance !
-
Resolved by disabling the Craftsman’s Aura skill
-
This is a compatibility error with the Tiers Mode plugin. If we are in a tier where we do not allow Level 2 and 3 tables, then SkillTree tries to place them indefinitely. If I activate the workbench 2 and 3 on the tier where we are currently and I reload, then spam stops. On which side can I make a correction knowing that I do not want to activate the workbenches 2 and 3 permanently?
-
Hello, After installing the plugin, the server console receives infinite and very fast spam with this two messages : [2025.05.03 14:51:01] [INFO] [Skill Tree] Spawned: workbench2.deployed [2025.05.03 14:51:01] [INFO] [Skill Tree] Spawned: workbench3.deployed
-
Oh sorry, well indeed, by redoing tests just now, I had finally understood the logic, and your answer confirms it. I understood it by looking at what was happening in the display of objects unlocked via the/tier command. Sorry for this useless ticket, thank you for the extremely fast response! I saw that several people had requested a command to manually change the currently applied tier (when we want to test), I must admit that I support this suggestion, it would avoid having to wipe and restart the server to test. You can close, it's ok !
-
Hello, When I start to configure my server, I apparently have a bug. The object usage locks are all applied at the same time (I set one per tier to test). For example here, I can not equip the 4 objects that are defined in the 4 tiers. However, the server started well on tier 0. I tried to wipe the server several times, it does not change anything. At the very beginning, the first bug I had was that being at tier 0, it was the configuration of tier 3 which was applied. Then after reloading, I have the bug that I presented above. I have uploaded a video (WeTransfer) showing the problem here: https://we.tl/t-gvVslMgbCX (file too big to be imported as an attachment here) In the state, it is unusable. Can you look at it or explain to me what could cause this? Configuration : { "Automatic Server Title": { "Enabled Auto Changue": false, "Base title to modify": "[EU] My Server Title (TiersMode: {0})" }, "GUI Config": { "On-Screen GUI Counter": true, "Counter Config": { "Color Title": "1.0 1.0 1.0 0.70", "Color Subtitle": "1.0 1.0 1.0 0.70", "Color Button": "0.46 0.46 0.46 0.49", "Show Icon/Color": true, "Show Button Info": true, "AnchorMin": "0.005 0.005", "AnchorMax": "0.15 0.07", "AnchorMax No Show Icon": "0.12 0.99" }, "Enabled Alert Modal": true, "Modal Config": { "Duration Show": 10.0, "Color Title": "1.0 1.0 1.0 0.70", "Color Description": "1.0 1.0 1.0 0.70", "Sound Alert": true, "Prefab Sound": "assets/prefabs/tools/pager/effects/beep.prefab", "AnchorMin": "0.345 0.12", "AnchorMax": "0.64 0.28" }, "Enabled Alert Modal Changue Tier": true, "Modal Changue Config": { "Duration Show": 15.0, "Color Title": "1.0 1.0 1.0 0.70", "Color Description": "1.0 1.0 1.0 0.70", "Sound Alert": true, "Prefab Sound": "assets/bundled/prefabs/fx/item_unlock.prefab", "AnchorMin": "0.345 0.12", "AnchorMax": "0.64 0.28" }, "Enabled Alert Modal Events": true, "Modal Events Config": { "Duration Show": 15.0, "Color Title": "1.0 1.0 1.0 0.70", "Color Description": "1.0 1.0 1.0 0.70", "Sound Alert": true, "Prefab Sound": "assets/prefabs/tools/pager/effects/vibrate.prefab", "AnchorMin": "0.345 0.12", "AnchorMax": "0.64 0.28" }, "Enabled Custom Alert Modal": true, "Modal Custom Config": { "Duration Show": 10.0, "Color Title": "1.0 1.0 1.0 0.70", "Color Description": "1.0 1.0 1.0 0.70", "Sound Alert": true, "Prefab Sound": "assets/prefabs/tools/pager/effects/beep.prefab", "AnchorMin": "0.345 0.12", "AnchorMax": "0.64 0.28" }, "Windows Info Config": { "Show GUI Info Window on Enter": true, "Show GUI Info use Command": true, "Show Previous Tier Button": true, "Show Next Tier Button": true, "Color Title": "1.00 1.00 1.00 1.00", "Color Text": "0.90 0.90 0.90 1.00", "Color Header Info": "0.0 0.0 0.0 1.0", "Color Button Close": "0.20 0.20 0.20 0.80" } }, "Messages": { "Enabled Chat": true, "Enabled Welcome Chat": true, "Use Discord Message Plugin": true, "Webhook Channel Announcement Change of Stag": "Put here your Webhook of the Channel where you want to announce the changes of Tiers." }, "Tiers": [ { "Tier Name": "L'Effondrement", "Tier Icon URL": "https://wiki.rustclash.com/img/items180/smallwaterbottle.png", "Tier Color": "0.17 0.75 0.42 0.50", "Duration of the tier in Minutes": 2880, "Cupboards": { "Limit Maximum Placed Cupboards": true, "Maximum Cupboards per player": 1, "Global Alert for Destruction of Cupboard": false, "Config Destruction Alert": { "Show Name of the player who destroyed it in the info": false, "Show Position in info": false }, "Maximum Upgrade Level (1 = Wood, 2 = Stones, 3 = Metal, 4 = HQ)": 1 }, "Workbench": { "Allow research from Workbench": false, "Allow Place All Workbench": false, "Allow placing only the following workbenches": [ "assets/prefabs/deployable/tier 1 workbench/workbench1.deployed.prefab" ] }, "Events": { "Cargoship": false, "Oil Rig": false, "Chinook": false, "Patrol Helicopter": false, "Airdrop": false, "Bradley APC": false }, "Sellers": { "Helicopter Sale": false, "Boat Sales": true, "Horse Sales": true, "Use of Drones": false, "Use of Public Vending Machine (Rads)": false }, "Spawn": { "Spawn Cards": [ "keycard_green_pickup.entity" ], "Spawn Vehicles (Cars)": [], "Use Vehicle MLRS": false, "Use Vehicle Workcart": false, "Use Vehicle Locomotive": false }, "Speed": { "Crafting Rate (1.0 = Vanilla | 0.0 = Instant)": 2.0, "Research Seconds (10.0 = Vanilla | 0.0 = Instant)": 300.0, "Recycler Seconds (5.0 = Vanilla | 0.0 = Instant)": 5.0, "Gather System (If you use another plugin for the Gather disable this or remove the other one)": false, "Gather Config (Setting 0.0 will disable this option and it will work as vanilla)": { "DispenserGather": 0.0, "DispenserBonus": 0.0, "CollectiblePickup": 0.0, "GrowableGathered": 0.0, "SurveyGather": 0.0, "QuarryGather": 0.0, "ExcavatorGather": 0.0 } }, "Lists": { "Items lock Craft": true, "Items lock": [ "torch" ], "Deployable lock without Building Permissions": false, "Items lock without Building Permissions": { "trap.bear": "assets/prefabs/deployable/bear trap/beartrap.prefab", "trap.landmine": "assets/prefabs/deployable/landmine/landmine.prefab" }, "Server Commands": [ "o.load Trade", "o.load Kits", "o.load Shop" ] } }, { "Tier Name": "Stone Age", "Tier Icon URL": "https://img.rustspain.com/tiers/2.png", "Tier Color": "0.06 0.58 0.86 0.50", "Duration of the tier in Minutes": 24, "Cupboards": { "Limit Maximum Placed Cupboards": false, "Maximum Cupboards per player": 5, "Global Alert for Destruction of Cupboard": true, "Config Destruction Alert": { "Show Name of the player who destroyed it in the info": true, "Show Position in info": true }, "Maximum Upgrade Level (1 = Wood, 2 = Stones, 3 = Metal, 4 = HQ)": 1 }, "Workbench": { "Allow research from Workbench": true, "Allow Place All Workbench": true, "Allow placing only the following workbenches": [ "assets/prefabs/deployable/tier 1 workbench/workbench1.deployed.prefab" ] }, "Events": { "Cargoship": true, "Oil Rig": true, "Chinook": true, "Patrol Helicopter": true, "Airdrop": true, "Bradley APC": true }, "Sellers": { "Helicopter Sale": true, "Boat Sales": true, "Horse Sales": true, "Use of Drones": true, "Use of Public Vending Machine (Rads)": true }, "Spawn": { "Spawn Cards": [ "keycard_green_pickup.entity", "keycard_blue_pickup.entity", "keycard_red_pickup.entity" ], "Spawn Vehicles (Cars)": [ "2module_car_spawned.entity", "3module_car_spawned.entity", "4module_car_spawned.entity" ], "Use Vehicle MLRS": false, "Use Vehicle Workcart": true, "Use Vehicle Locomotive": true }, "Speed": { "Crafting Rate (1.0 = Vanilla | 0.0 = Instant)": 0.6, "Research Seconds (10.0 = Vanilla | 0.0 = Instant)": 10.0, "Recycler Seconds (5.0 = Vanilla | 0.0 = Instant)": 5.0, "Gather System (If you use another plugin for the Gather disable this or remove the other one)": true, "Gather Config (Setting 0.0 will disable this option and it will work as vanilla)": { "DispenserGather": 2.0, "DispenserBonus": 2.0, "CollectiblePickup": 2.0, "GrowableGathered": 2.0, "SurveyGather": 2.0, "QuarryGather": 2.0, "ExcavatorGather": 2.0 } }, "Lists": { "Items lock Craft": true, "Items lock": [ "apple" ], "Deployable lock without Building Permissions": false, "Items lock without Building Permissions": { "trap.bear": "assets/prefabs/deployable/bear trap/beartrap.prefab", "trap.landmine": "assets/prefabs/deployable/landmine/landmine.prefab" }, "Server Commands": [ "o.load Trade", "o.load Kits", "o.load Shop" ] } }, { "Tier Name": "Metal Age", "Tier Icon URL": "https://img.rustspain.com/tiers/3.png", "Tier Color": "0.87 0.75 0.05 0.50", "Duration of the tier in Minutes": 24, "Cupboards": { "Limit Maximum Placed Cupboards": false, "Maximum Cupboards per player": 5, "Global Alert for Destruction of Cupboard": true, "Config Destruction Alert": { "Show Name of the player who destroyed it in the info": true, "Show Position in info": true }, "Maximum Upgrade Level (1 = Wood, 2 = Stones, 3 = Metal, 4 = HQ)": 1 }, "Workbench": { "Allow research from Workbench": true, "Allow Place All Workbench": true, "Allow placing only the following workbenches": [ "assets/prefabs/deployable/tier 1 workbench/workbench1.deployed.prefab", "assets/prefabs/deployable/tier 2 workbench/workbench2.deployed.prefab" ] }, "Events": { "Cargoship": true, "Oil Rig": true, "Chinook": true, "Patrol Helicopter": true, "Airdrop": true, "Bradley APC": true }, "Sellers": { "Helicopter Sale": true, "Boat Sales": true, "Horse Sales": true, "Use of Drones": true, "Use of Public Vending Machine (Rads)": true }, "Spawn": { "Spawn Cards": [ "keycard_green_pickup.entity", "keycard_blue_pickup.entity", "keycard_red_pickup.entity" ], "Spawn Vehicles (Cars)": [ "2module_car_spawned.entity", "3module_car_spawned.entity", "4module_car_spawned.entity" ], "Use Vehicle MLRS": true, "Use Vehicle Workcart": true, "Use Vehicle Locomotive": true }, "Speed": { "Crafting Rate (1.0 = Vanilla | 0.0 = Instant)": 0.3, "Research Seconds (10.0 = Vanilla | 0.0 = Instant)": 10.0, "Recycler Seconds (5.0 = Vanilla | 0.0 = Instant)": 5.0, "Gather System (If you use another plugin for the Gather disable this or remove the other one)": true, "Gather Config (Setting 0.0 will disable this option and it will work as vanilla)": { "DispenserGather": 3.0, "DispenserBonus": 3.0, "CollectiblePickup": 3.0, "GrowableGathered": 3.0, "SurveyGather": 3.0, "QuarryGather": 3.0, "ExcavatorGather": 3.0 } }, "Lists": { "Items lock Craft": true, "Items lock": [ "hammer" ], "Deployable lock without Building Permissions": false, "Items lock without Building Permissions": { "trap.bear": "assets/prefabs/deployable/bear trap/beartrap.prefab", "trap.landmine": "assets/prefabs/deployable/landmine/landmine.prefab" }, "Server Commands": [ "o.load Trade", "o.load Kits", "o.load Shop" ] } }, { "Tier Name": "Explosive Age", "Tier Icon URL": "https://img.rustspain.com/tiers/4.png", "Tier Color": "0.80 0.26 0.13 0.50", "Duration of the tier in Minutes": 24, "Cupboards": { "Limit Maximum Placed Cupboards": false, "Maximum Cupboards per player": 5, "Global Alert for Destruction of Cupboard": true, "Config Destruction Alert": { "Show Name of the player who destroyed it in the info": true, "Show Position in info": true }, "Maximum Upgrade Level (1 = Wood, 2 = Stones, 3 = Metal, 4 = HQ)": 1 }, "Workbench": { "Allow research from Workbench": true, "Allow Place All Workbench": true, "Allow placing only the following workbenches": [ "assets/prefabs/deployable/tier 1 workbench/workbench1.deployed.prefab", "assets/prefabs/deployable/tier 2 workbench/workbench2.deployed.prefab", "assets/prefabs/deployable/tier 3 workbench/workbench3.deployed.prefab" ] }, "Events": { "Cargoship": true, "Oil Rig": true, "Chinook": true, "Patrol Helicopter": true, "Airdrop": true, "Bradley APC": true }, "Sellers": { "Helicopter Sale": true, "Boat Sales": true, "Horse Sales": true, "Use of Drones": true, "Use of Public Vending Machine (Rads)": true }, "Spawn": { "Spawn Cards": [ "keycard_green_pickup.entity", "keycard_blue_pickup.entity", "keycard_red_pickup.entity" ], "Spawn Vehicles (Cars)": [ "2module_car_spawned.entity", "3module_car_spawned.entity", "4module_car_spawned.entity" ], "Use Vehicle MLRS": true, "Use Vehicle Workcart": true, "Use Vehicle Locomotive": true }, "Speed": { "Crafting Rate (1.0 = Vanilla | 0.0 = Instant)": 0.0, "Research Seconds (10.0 = Vanilla | 0.0 = Instant)": 10.0, "Recycler Seconds (5.0 = Vanilla | 0.0 = Instant)": 5.0, "Gather System (If you use another plugin for the Gather disable this or remove the other one)": true, "Gather Config (Setting 0.0 will disable this option and it will work as vanilla)": { "DispenserGather": 5.0, "DispenserBonus": 5.0, "CollectiblePickup": 5.0, "GrowableGathered": 5.0, "SurveyGather": 5.0, "QuarryGather": 5.0, "ExcavatorGather": 5.0 } }, "Lists": { "Items lock Craft": true, "Items lock": [ "bow.compound" ], "Deployable lock without Building Permissions": false, "Items lock without Building Permissions": { "trap.bear": "assets/prefabs/deployable/bear trap/beartrap.prefab", "trap.landmine": "assets/prefabs/deployable/landmine/landmine.prefab" }, "Server Commands": [ "o.load Trade", "o.load Kits", "o.load Shop" ] } } ] } Data file : { "activeTier": 0, "armariosCount": {}, "marketplace": { "U22": { "Position": { "x": 883.591553, "y": 66.06148, "z": -1199.07947 }, "Rotation": { "x": 0.0, "y": 275.426331, "z": 0.0 } }, "D16": { "Position": { "x": -1521.34, "y": 10.35, "z": -420.28 }, "Rotation": { "x": 0.0, "y": 167.991974, "z": 0.0 } } }, "durationCraft": { "hat.wolf.item": 3840.0, "discordtrophy.item": 128.0, "fogmachine.item": 1920.0, "strobelight.item": 1920.0, "kayak.item": 3840.0, "DPV.item": 3840.0, "horse.armor.roadsign.item": 3840.0, "horse.armor.wood.item": 3840.0, "horse.saddlebag.item": 3840.0, "horse.shoes.advanced.item": 3840.0, "horse.shoes.basic.item": 3840.0, "ballista.bolt.hammerhead.item": 1280.0, "ballista.bolt.incendiary.item": 1280.0, "ballista.bolt.piercer.item": 1280.0, "ballista.bolt.pitchfork.item": 1280.0, "ballista.item": 3840.0, "ballista.static.item": 3840.0, "batteringram.item": 3840.0, "catapult.ammo.explosive.item": 1280.0, "catapult.ammo.incendiary.item": 1280.0, "catapult.boulder.item": 1280.0, "catapult.item": 3840.0, "siegetower.item": 3840.0, "arrow_hv.item": 384.0, "arrow_wooden.item": 384.0, "arrow_bone.item": 384.0, "arrow_fire.item": 384.0, "ammo_handmade_shell.item": 384.0, "nailgunnail.item": 256.0, "ammo_pistol.item": 384.0, "ammo_pistol_fire.item": 384.0, "ammo_pistol_hv.item": 384.0, "ammo_rifle.item": 384.0, "ammo_rifle_explosive.item": 384.0, "ammo_rifle_fire.item": 384.0, "ammo_rifle_hv.item": 384.0, "ammo_rocket_basic.item": 1280.0, "ammo_rocket_fire.item": 1280.0, "ammo_rocket_hv.item": 1280.0, "ammo_rocket_seeker.item": 1280.0, "ammo_shotgun.item": 384.0, "ammo_shotgun_fire.item": 384.0, "ammo_shotgun_slug.item": 384.0, "speargun_spear.item": 384.0, "TorpedoStraight.item": 1280.0, "door.double.hinged.metal.item": 3840.0, "door.double.hinged.toptier.item": 3840.0, "door.double.hinged.wood.item": 3840.0, "door.hinged.metal.item": 3840.0, "door.hinged.toptier.item": 3840.0, "door.hinged.wood.item": 3840.0, "floor.grill.item": 3840.0, "floor.ladder.hatch.item": 3840.0, "floor.triangle.grill.item": 3840.0, "floor.triangle.ladder.hatch.item": 3840.0, "gates.external.high.stone.item": 4480.0, "gates.external.high.wood.item": 4480.0, "ladder.wooden.wall.item": 3840.0, "legacy.shelter.wood.item": 3840.0, "wall.external.high.stone.item": 3840.0, "wall.external.high.wood.item": 3840.0, "wall.frame.cell.gate.item": 3840.0, "wall.frame.cell.item": 3840.0, "wall.frame.fence.gate.item": 3840.0, "wall.frame.fence.item": 3840.0, "wall.frame.garagedoor.item": 3840.0, "wall.frame.netting.item": 3840.0, "wall.frame.shopfront.item": 3840.0, "wall.frame.shopfront.metal.item": 3840.0, "wall.window.bars.metal.item": 1920.0, "wall.window.bars.toptier.item": 1920.0, "wall.window.bars.wood.item": 1920.0, "shutter.metal.embrasure.a.item": 1280.0, "shutter.metal.embrasure.b.item": 1280.0, "wall.window.glass.reinforced.item": 1920.0, "shutter.wood.a.item": 1920.0, "watchtower.wood.item": 3840.0, "frogboots.item": 128.0, "gloves.burlap.item": 1920.0, "gloves.leather.item": 3840.0, "gloves.roadsign.item": 3840.0, "DraculaCape.item": 3840.0, "draculamask.item": 3840.0, "halterneck.hide.item": 3840.0, "hat.beenie.item": 3840.0, "hat.boonie.item": 3840.0, "hat.bucket.item": 3840.0, "hat.burlap.wrap.item": 1920.0, "hat.candle.item": 3840.0, "hat.cap.base.item": 3840.0, "hat.clatter.item": 3840.0, "hat.coffeecan.item": 3840.0, "hat.deerskullmask.item": 3840.0, "hat.heavyplate.item": 5760.0, "hat.miner.item": 3840.0, "hat.prisonerhood.item": 1920.0, "hat.riot.item": 3840.0, "hat.wellipets.item": 640.0, "hat.woodarmor.item": 2560.0, "hoodie.red.item": 3840.0, "jacket.bonearmor.item": 3840.0, "jacket.heavyplate.item": 5760.0, "jacket.snow.item": 3840.0, "jacket.vagabond.item": 3840.0, "wood_armor_jacket.item": 3840.0, "mask.balaclava.item": 3840.0, "mask.bandana.item": 3840.0, "mask.metal.item": 5760.0, "hat.nvg.item": 3840.0, "ninja.suit.item": 128.0, "pants.burlap.item": 1920.0, "pants.heavyplate.item": 5760.0, "pants.hide.item": 3840.0, "pants.roadsign.item": 3840.0, "pants.shorts.item": 3840.0, "wood_armor_pants.item": 2560.0, "pants.cargo.item": 3840.0, "poncho.hide.item": 3840.0, "burlap_shirt.item": 1920.0, "shirt.collared.item": 3840.0, "HideVest.item": 3840.0, "shirt.tanktop.item": 1920.0, "shoes.boots.brown.item": 3840.0, "burlap_shoes.item": 1920.0, "HideBoots.item": 3840.0, "HideSkirt.item": 3840.0, "Hazmat_Suit.item": 2560.0, "tshirt.long.blue.item": 3840.0, "tshirt.green.item": 3840.0, "metal_plate_torso.item": 5760.0, "roadsign_armor.item": 3840.0, "Asbestos_ArmorInsert.item": 3840.0, "Lead_ArmorInsert.item": 3840.0, "Wood_ArmorInsert.item": 3840.0, "carburetor1.item": 1280.0, "carburetor2.item": 1280.0, "carburetor3.item": 1280.0, "crankshaft1.item": 1280.0, "crankshaft2.item": 1280.0, "crankshaft3.item": 1280.0, "pistons1.item": 1280.0, "pistons2.item": 1280.0, "pistons3.item": 1280.0, "sparkplugs1.item": 1280.0, "sparkplugs2.item": 1280.0, "sparkplugs3.item": 1280.0, "valves1.item": 1280.0, "valves2.item": 1280.0, "valves3.item": 1280.0, "gears.item": 128.0, "metalblade.item": 128.0, "metalpipe.item": 128.0, "propanetank.item": 128.0, "roadsigns.item": 128.0, "sewingkit.item": 128.0, "spring.item": 128.0, "barricade.concrete.item": 3840.0, "barricade.cover.wood.item": 3200.0, "barricade.medieval.item": 3840.0, "barricade.metal.item": 3840.0, "barricade.sandbags.item": 3840.0, "barricade.stone.item": 3840.0, "barricade.wood.item": 3840.0, "barricade.woodwire.item": 3840.0, "BBQ.item": 3840.0, "beartrap.item": 3840.0, "bed.item": 3840.0, "beehive.item": 3840.0, "campfire.item": 3840.0, "ceilinglight.item": 3840.0, "chair.item": 3840.0, "ChickenCoop.item": 3840.0, "composter.item": 3840.0, "computerstation.item": 3840.0, "CookingWorkbench.item": 3840.0, "drone.item": 3840.0, "dropbox.item": 3840.0, "elevator.item": 3840.0, "fireplace.item": 3840.0, "boomer.blue.item": 1280.0, "boomer.champagne.item": 1280.0, "boomer.green.item": 1280.0, "boomer.orange.item": 1280.0, "boomer.pattern.item": 1280.0, "boomer.red.item": 1280.0, "boomer.violet.item": 1280.0, "romancandle.blue.item": 7680.0, "romancandle.green.item": 7680.0, "romancandle.red.item": 7680.0, "romancandle.violet.item": 7680.0, "volcanofirework.item": 1280.0, "volcanofirework.red.item": 1280.0, "volcanofirework.violet.item": 1280.0, "spikes.floor.item": 3840.0, "fridge.item": 3840.0, "furnace.large.item": 5120.0, "furnace.item": 3840.0, "HazmatPlushy.item": 128.0, "HitchTrough.item": 3840.0, "Hopper.item": 3840.0, "hab.armor.item": 3840.0, "io.table": 3840.0, "jackolantern.angry.item": 2560.0, "jackolantern.happy.item": 2560.0, "landmine.item": 2560.0, "lantern.item": 2560.0, "box.wooden.large.item": 3840.0, "waterbarrel.item": 3840.0, "locker.item": 3840.0, "lunar_near_year_2025_wall_divider_A.item": 1920.0, "mailbox.item": 3840.0, "MixingTable.item": 3840.0, "electrical.modularcarlift.item": 3840.0, "small_oil_refinery.item": 3840.0, "SinglePlantPot.item": 3840.0, "planter.large.item": 3840.0, "planter.small.item": 3840.0, "planter.triangle.item": 3840.0, "AudioAlarm.item": 3840.0, "SmartAlarm.item": 3840.0, "SmartSwitch.item": 3840.0, "StorageMonitor.item": 3840.0, "large.rechargable.battery.item": 3840.0, "medium.rechargable.battery.item": 3840.0, "small.rechargable.battery.item": 3840.0, "Button.item": 3840.0, "counter.item": 3840.0, "hbhfsensor.item": 3840.0, "LaserDetector.item": 3840.0, "pressurepad.item": 3840.0, "tincan.alarm.item": 2560.0, "electric.digitalclock.item": 3840.0, "doorcontroller.item": 3840.0, "electricfurnace.item": 3840.0, "electrical.heater.item": 3840.0, "fluid.combiner.item": 3840.0, "FluidSplitter.item": 3840.0, "fluidswitch.item": 3840.0, "ANDSwitch.item": 3840.0, "electrical.blocker.item": 3840.0, "electrical.branch.item": 3840.0, "electrical.combiner.item": 3840.0, "electrical.memorycell.item": 3840.0, "ORSwitch.item": 3840.0, "electrical.random.switch.item": 3840.0, "RFBroadcaster.item": 3840.0, "RFReceiver.item": 3840.0, "XORSwitch.item": 3840.0, "small_fuel_generator.item": 3840.0, "solarpanel.large.item": 3840.0, "igniter.item": 3840.0, "StorageAdaptor.item": 3840.0, "industrialcombiner.item": 3840.0, "industrialconveyor.item": 3840.0, "industrialcrafter.item": 3840.0, "industrialsplitter.item": 3840.0, "electric.flasherlight.item": 3840.0, "electric.sirenlight.item": 3840.0, "poweredwaterpurifier.item": 3840.0, "electric.seismicsensor.item": 3840.0, "switch.item": 3840.0, "Splitter.item": 3840.0, "electric.sprinkler.item": 3840.0, "teslacoil.item": 3840.0, "timer.item": 3840.0, "water.pump.item": 3840.0, "ptz_cctv_camera.item": 128.0, "reactivetarget.item": 3840.0, "repair_bench.item": 3840.0, "research_table.item": 3840.0, "rug.bear.item": 3840.0, "rug.item": 3840.0, "searchlight.item": 3840.0, "secretlabchair.item": 3840.0, "shelves.item": 1280.0, "sign.hanging.banner.large.item": 3840.0, "sign.hanging.item": 3840.0, "sign.hanging.ornate.item": 3840.0, "sign.pictureframe.landscape.item": 3840.0, "sign.pictureframe.portrait.item": 3840.0, "sign.pictureframe.tall.item": 3840.0, "sign.pictureframe.xl.item": 3840.0, "sign.pictureframe.xxl.item": 3840.0, "sign.pole.banner.large.item": 3840.0, "sign.post.double.item": 3840.0, "sign.post.single.item": 3840.0, "sign.post.town.item": 3840.0, "sign.post.town.roof.item": 3840.0, "sign.wooden.huge.item": 3840.0, "sign.wooden.large.item": 3840.0, "sign.wooden.medium.item": 3840.0, "sign.wooden.small.item": 3840.0, "shotguntrap.item": 3840.0, "sleepingbag.item": 3840.0, "small_stash.item": 1920.0, "sofa.item": 3840.0, "sofa.pattern.item": 3840.0, "spinner.wheel.item": 2560.0, "survivalfishtrap.item": 3840.0, "table.item": 3840.0, "workbench1.item": 3840.0, "workbench2.item": 5760.0, "workbench3.item": 7680.0, "cupboard.tool.item": 3840.0, "tunalight.item": 2560.0, "vendingmachine.item": 3840.0, "water_catcher_large.item": 3840.0, "water_catcher_small.item": 3840.0, "waterpurifier.item": 3840.0, "weaponrack_horizontal.item": 3840.0, "weaponrack_single1.item": 3840.0, "weaponrack_single2.item": 3840.0, "weaponrack_single3.item": 3840.0, "weaponrack_stand.item": 3840.0, "weaponrack_tall.item": 3840.0, "weaponrack_wide.item": 3840.0, "generator.wind.scrap.item": 3840.0, "box_wooden.item": 1920.0, "Hazmat_Youtooz.item": 1280.0, "HeavyScientist_Youtooz.item": 1280.0, "bota_bag.item": 1920.0, "bass.item": 2560.0, "cowbell.item": 2560.0, "drumkit.item": 3840.0, "flute.item": 2560.0, "guitar.item": 2560.0, "jerrycanguitar.item": 2560.0, "piano.item": 3840.0, "tambourine.item": 2560.0, "trumpet.item": 2560.0, "tuba.item": 2560.0, "xylophone.item": 3840.0, "lock.key.item": 1920.0, "lock.code.item": 3840.0, "chineselantern.item": 3840.0, "chineselantern_white.item": 3840.0, "dragondoorknocker.item": 3840.0, "hat.dragonmask.item": 640.0, "newyeargong.item": 1920.0, "hat.bullmask.item": 640.0, "hat.rabbitmask.item": 640.0, "hat.ratmask.item": 640.0, "skylantern.item": 256.0, "hat.snakemask.item": 640.0, "hat.tigermask.item": 640.0, "chippyarcademachine.item": 3840.0, "door.double.hinged.bardoors.item": 3840.0, "bathtub.planter.item": 3840.0, "fishtrophy.item": 2560.0, "huntingtrophylarge.item": 2560.0, "huntingtrophysmall.item": 2560.0, "minecart.planter.item": 3840.0, "rockingchair.item": 3840.0, "skinningknife.item": 3840.0, "storage_barrel_b.item": 3840.0, "storage_barrel_c.item": 3840.0, "torchholder.item": 2560.0, "wantedposter.item": 2560.0, "hat.bunnyhat.item": 640.0, "chicken.costume.item": 1920.0, "easter_door_wreath.item": 3840.0, "egg.suit.item": 1920.0, "rustige_egg_a.item": 3840.0, "rustige_egg_b.item": 3840.0, "rustige_egg_c.item": 3840.0, "rustige_egg_d.item": 3840.0, "rustige_egg_e.item": 3840.0, "rustige_egg_f.item": 3840.0, "rustige_egg_g.item": 3840.0, "horse.costume.item": 1920.0, "nest.hat.item": 3840.0, "largecandles.item": 1920.0, "smallcandles.item": 1920.0, "carvable.pumpkin.item": 128.0, "cauldron.item": 3200.0, "graveyardfence.item": 3840.0, "scarecrow.item": 3840.0, "skullspikes.item": 1920.0, "skull_door_knocker.item": 3840.0, "skull_fire_pit.item": 3840.0, "spookyspeaker.item": 3840.0, "surgeon_suit.item": 128.0, "skulltrophy.item": 1920.0, "movember_moustache_style01.item": 128.0, "note.item": 640.0, "parachute.item": 1920.0, "industrial.wall.lamp.item": 3840.0, "Smallbackpack.item": 3840.0, "abovegroundpool.item": 7680.0, "beachchair.item": 3840.0, "beachparasol.item": 3840.0, "beachtable.item": 3840.0, "beachtowel.item": 3840.0, "boogieboard.item": 3840.0, "innertube.item": 3840.0, "instant_camera.item": 3840.0, "paddlingpool.item": 3840.0, "photoframe.landscape.item": 3840.0, "photoframe.large.item": 3840.0, "photoframe.portrait.item": 3840.0, "sunglasses.item": 1920.0, "watergun.item": 3840.0, "waterpistol.item": 3840.0, "trophy.item": 1280.0, "trophy_2023.item": 1280.0, "hat.cap.headset.item": 3840.0, "hobobarrel.item": 3840.0, "xmas.lightstring.item": 3840.0, "doorgarland.item": 3840.0, "double_doorgarland.item": 3840.0, "GiantCandyCane.item": 3840.0, "Giantlollipops.item": 3840.0, "sign.neon.125x125.item": 1920.0, "sign.neon.125x215.animated.item": 1920.0, "sign.neon.125x215.item": 1920.0, "sign.neon.xl.animated.item": 1920.0, "sign.neon.xl.item": 1920.0, "xmas.advanced.lights.item": 1280.0, "snowmachine.item": 3840.0, "snowman.item": 3840.0, "santabeard.item": 128.0, "hat.snowmanhelmet.item": 3840.0, "windowgarland.item": 3840.0, "christmas_door_wreath.item": 3840.0, "autoturret.item": 5760.0, "flameturret.item": 3840.0, "sam.rocket.item": 1280.0, "explosives.item": 640.0, "gunpowder.item": 256.0, "fuel.lowgrade.item": 640.0, "binoculars.item": 3840.0, "explosive.timed.item": 3840.0, "detonator.item": 3840.0, "fishing_rod.item": 1280.0, "flare.item": 128.0, "flashlight.item": 3840.0, "handcuffs.item": 1920.0, "hosetool.item": 128.0, "largemedkit.item": 1920.0, "syringe_medical.item": 1280.0, "metal_detector.item": 3840.0, "rfpager.item": 2560.0, "pipetool.item": 128.0, "building_planner.item": 1920.0, "smoke_grenade.item": 1280.0, "spraycan.item": 1920.0, "surveycharge.item": 1920.0, "wiretool.item": 128.0, "1module_cockpit.item": 3840.0, "1module_cockpit_armored.item": 3840.0, "1module_cockpit_with_engine.item": 3840.0, "1module_engine.item": 3840.0, "1module_flatbed.item": 3840.0, "1module_passengers_armored.item": 3840.0, "1module_rear_seats.item": 3840.0, "1module_storage.item": 3840.0, "1module_taxi.item": 3840.0, "2module_camper.item": 3840.0, "2module_flatbed.item": 3840.0, "2module_fuel_tank.item": 3840.0, "2module_passengers.item": 3840.0, "car_radio.item": 1920.0, "BoomBox.item": 1920.0, "boomboxportable.item": 1920.0, "cassette.item": 640.0, "cassette.medium.item": 640.0, "cassette.short.item": 640.0, "cassetterecorder.item": 1920.0, "discoball.item": 1920.0, "discofloor.item": 1920.0, "connectedspeaker.item": 1920.0, "laserlight.item": 1920.0, "megaphone.item": 1920.0, "microphonestand.item": 1920.0, "mobilephone.item": 1920.0, "soundlight.item": 1920.0, "telephone.item": 3840.0, "wallpaper.item": 640.0, "extendedmags.item": 3840.0, "flashlightmod.item": 3840.0, "gascompressionoverdrive.item": 3840.0, "holosight.item": 3840.0, "lasersight.item": 3840.0, "muzzlebooster.item": 3840.0, "muzzlebrake.item": 3840.0, "simplesight.item": 3840.0, "silencer.item": 3840.0, "scope.small.item": 3840.0, "ak47u.item": 5760.0, "bandage.item": 640.0, "grenade.beancan.item": 1280.0, "grenade.bee.item": 1280.0, "bolt_rifle.item": 5760.0, "bone_club.item": 1280.0, "knife_bone.item": 3840.0, "bow_hunting.item": 3840.0, "chainsaw.item": 3840.0, "salvaged_cleaver.item": 3840.0, "compound_bow.item": 3840.0, "crossbow.item": 3840.0, "shotgun_double.item": 5120.0, "pistol_eoka.item": 3840.0, "grenade.f1.item": 1280.0, "flamethrower.item": 5120.0, "grenade.flashbang.item": 1280.0, "hammer.item": 1920.0, "hatchet.item": 3840.0, "hc_revolver.item": 3840.0, "hmlmg.item": 3840.0, "homing_missile_launcher.item": 3840.0, "knife.combat.item": 1920.0, "mace.item": 3840.0, "machete.item": 3840.0, "metalshield.item": 1920.0, "mini_crossbow.item": 3840.0, "grenade.molotov.item": 1280.0, "mp5.item": 3840.0, "nailgun.item": 3840.0, "paddle.item": 3840.0, "pickaxe.item": 3840.0, "shotgun_waterpipe.item": 3840.0, "python.item": 3840.0, "reinforcedwoodshield.item": 1920.0, "pistol_revolver.item": 3840.0, "rock.item": 640.0, "rocket_launcher.item": 7680.0, "axe_salvaged.item": 3840.0, "hammer_salvaged.item": 3840.0, "icepick_salvaged.item": 3840.0, "explosive.satchel.item": 640.0, "shotgun_pump.item": 5120.0, "pistol_semiauto.item": 3840.0, "semi_auto_rifle.item": 3840.0, "sks.item": 3840.0, "smg.item": 3840.0, "speargun.item": 3840.0, "stonehatchet.item": 1920.0, "stone_pickaxe.item": 1920.0, "spear_stone.item": 1280.0, "longsword.item": 3840.0, "salvaged_sword.item": 3840.0, "t1_smg.item": 3840.0, "thompson.item": 3840.0, "toolgun.item": 1920.0, "torch.item": 3840.0, "bucket.item": 3840.0, "woodenshield.item": 1920.0, "spear_wooden.item": 3840.0 } }
-
Hello, Thanks for the plugin. Could you add the support of this event there? https://codefling.com/plugins/supermarket-event I don’t see him on the list. And I have a second question, I noticed that the command /panel hide does not manage to hide the economy display, it disappears but returns a few seconds later. All other elements are well hidden. Thank you in advance
- 87 comments
-
- #hud
- #panel
-
(and 31 more)
Tagged with:
- #hud
- #panel
- #info
- #infopanel
- #menu
- #gui
- #info hud
- #custom hud
- #server stats
- #server info
- #server panels
- #magic panel
- #rust hud
- #server hud
- #customization options
- #beatiful hud
- #rust hud plugin
- #info panel
- #information
- #events
- #hyd
- #gaming hud design
- #rust user interface
- #hud elements in rust
- #custom rust hud
- #enhanced hud for rust
- #rust interface customization
- #hud events
- #hud info
- #hud panel
- #infopanel mevent
- #hud mevent
- #info panel mevent
-
Hello, Thank you for your plugin, extremely complete and customizable. I have a question about the respawn of NPCs. I have configured as follows: "Spawn Inside Bases": { "Sleepers": { "Enabled": false, "Unwakeable": false, "Spawn Kit In Corpses Inventory": false, "Spawn Loadout In Corpses Inventory": false }, "Spawn On Floors": true, "Spawn On Beds": true, "Spawn On Rugs": true, "Spawn On Rugs With Skin Only": 0, "Bed Health Multiplier": 1.0, "Rug Health Multiplier": 1.0, "Spawn Murderers Outside": true, "Spawn Scientists Outside": false, "Minimum Inside (-1 = ignore)": 1, "Maximum Inside (-1 = ignore)": 2 } And : "Amount Of Murderers To Spawn": 1, "Minimum Amount Of Murderers To Spawn": 1, "Spawn Random Amount Of Murderers": false, "Amount Of Scientists To Spawn": 2, "Minimum Amount Of Scientists To Spawn": 1, "Spawn Random Amount Of Scientists": false, "Maximum Respawn Npc X Seconds After Death": 180.0, "Minimum Respawn Npc X Seconds After Death": 120.0, But while testing, I notice that there is only the murderer on the outside who respawn with the timers I have configured. Those on the inside never reappear. Did I miss a configuration somewhere despite my research? Thank you in advance