-
Posts
5,899 -
Joined
-
Last visited
-
Days Won
199
Content Type
Profiles
Warranty Claims
Downloads
Forums
Store
Services
Downloads Plus Support
DOWNLOADS EXTRA
Everything posted by nivex
-
- 634 comments
-
- 1
-
-
- #rust
- #rust plugin
- (and 6 more)
-
@Aussie4life heya, thanks they will spawn without changing those settings. those settings should be changed back to default use the rbe debug command when you think it stopped working "Chance To Automatically Spawn Each Difficulty (-1 = ignore)": { "Use Cumulative Probability": true, "Easy": -1.0, "Medium": -1.0, "Hard": -1.0, "Expert": -1.0, "Nightmare": -1.0 },
-
@V.O.I.D I keep trying to reproduce this and managed to reproduce it not showing the UI but was still able to deal damage. I fixed the UI bug and that might fix the other issue too. replace lines 12023 through 12067 in RaidableBases.cs plugin with this: private void OnPlayerSleepEnded(BasePlayer player) { player.Invoke(() => { if (player.IsDestroyed || !player.IsHuman()) { return; } if (PvpDelay.Remove(player.userID, out var ds) && ds.Timer != null && !ds.Timer.Destroyed) { ds.Timer.Callback.Invoke(); ds.Timer.Destroy(); } if (config.UI.Lockout.Enabled) { UI.UpdateUi(player, UiType.Lockout); } if (RaidableBase.Get(player.transform.position, 5f) is not RaidableBase raid) { return; } if (InRange2D(player.transform.position, raid.Location, raid.ProtectionRadius)) { raid.intruders.Remove(player.userID); raid.OnEnterRaid(player); } else if (!config.Settings.Management.AllowTeleport) { RaidableBase.RemovePlayer(player, raid.Location, raid.ProtectionRadius, raid.Type); } }, 0.015f); }
-
> o.reload RaidableBases Unloaded plugin Raidable Bases v2.7.4 by nivex [RaidableBases] Allowed spawn points in 0 zones. [RaidableBases] Blocked spawn points in 1 zones. Loaded plugin Raidable Bases v2.7.4 by nivex > o.version Oxide.Rust Version: 2.0.6013 Oxide.Rust Branch: master ya 2.0.6013 compiles fine
-
2.0.7 released - Requires Rust update tugboats, locking the raid and ejecting enemies has been added. I had a lot of fun implementing these and hopefully you don't run into too many issues with them keep in mind that the eject setting does not work when you enter the dome/event. it works when you enter the base, loot or try to damage something. enjoy!
- 634 comments
-
- 2
-
-
- #rust
- #rust plugin
- (and 6 more)
-
@Zetti hi, normal is available in the free version only. so something or someone has installed it. perhaps an auto updater, Rust Server Manager, etc the plugin should be excluded from auto updates and installed manually by the server owner you will need to reinstall the package before reinstalling the plugin the plugin must be downloaded from this site. uMod is the free version
-
@CsaszyKJ hi, you have set a minimum of 8 and maximum of 18 for easy bases and random amount is enabled. while testing it spawned between 8 to 18 npcs for each base which shows it is working fine. if you want more to spawn then you will have to increase the minimum "Amount Of Murderers To Spawn": 10, "Minimum Amount Of Murderers To Spawn": 4, "Spawn Random Amount Of Murderers": true, "Amount Of Scientists To Spawn": 8, "Minimum Amount Of Scientists To Spawn": 4, "Spawn Random Amount Of Scientists": true, i do not recommend using so many npcs. npcs from any plugin can impact server performance
