-
Posts
5,873 -
Joined
-
Last visited
-
Days Won
199
Content Type
Profiles
Warranty Claims
Downloads
Forums
Store
Services
Downloads Plus Support
DOWNLOADS EXTRA
Everything posted by nivex
-
that's not the default files. you put a profile in the base loot directory. =p loot files belong in base loot and difficulty loot folders and these are what you edit. difficulty loot is the primary file. base loot contains a few items that always spawn. they cannot be profiles - they must be loot tables. profiles belong in the profiles directory @Vengadorweb
-
@BeePssY yes, you can use the spawns database plugin and just set that filename under whatever event type in the config, "Spawns Database File (Optional)": "none", so if the filename is maintainedspawnpoints.jsosn then you would replace none with maintainedspawnpoints. don't include the .json extension
-
it should be fixed next update @chuck norris its most likely topology check blocking it. my bad =p if (!spq.spawns.IsCustomSpawn) { string topology; if (!SpawnsController.TopologyChecks(vector, spq.buildRadius, out topology)) { LastMessage = $"Spawn is on blocked topology ({topology})"; continue; } } this is the fix, the first line with its open and closed curly brackets go around the enclosed lines of code
-
- 634 comments
-
- 1
-
-
- #rust
- #rust plugin
- (and 6 more)
-
@Delco6467good catch. fixed in next update if (!attacker.IsHuman() && EventTerritory(attacker.transform.position) || attacker.userID == victim.userID) to if (EventTerritory(attacker.transform.position) && (!attacker.IsHuman() || attacker.userID == victim.userID)) @saintmichel13LOL well sure I can add this but I don't think it'd work too well for compounds
- 634 comments
-
- #rust
- #rust plugin
- (and 6 more)
-
I need an error guys. please look at your logs for one from either CopyPaste or RaidableBases. just search for Exception and skim through it. you should also search for libgdiplus. if you see that word then you must install that library, or have your host install it. this applies to Linux machines.. the plugin will not function without this library as it's required to convert byte arrays to images
-
@Yastrebhi, I need the actual error. NRE doesn't tell me anything without the trace as well. you can find it in the server logs if it didn't give the full message to you in the Oxide log/server console. server log should not be confused with oxide log either, they're completely different. I say this because people confuse it way too often =p @saintmichel13interesting but doesn't really seem entertaining unless the bots come in waves
- 634 comments
-
- #rust
- #rust plugin
- (and 6 more)
-
- 634 comments
-
- 1
-
-
- #rust
- #rust plugin
- (and 6 more)
-
- 634 comments
-
- #rust
- #rust plugin
- (and 6 more)
-
- 634 comments
-
- #rust
- #rust plugin
- (and 6 more)
-
@MatzeXXyou can configure the weapons for turrets in the profiles, oxide/data/RaidableBases/Profiles "Auto Turrets": { "Aim Cone": 5.0, "Minimum Damage Modifier": 1.0, "Maximum Damage Modifier": 1.0, "Start Health": 1000.0, "Sight Range": 30.0, "Double Sight Range When Shot": false, "Set Hostile (False = Do Not Set Any Mode)": true, "Requires Power Source": false, "Remove Equipped Weapon": false, "Random Weapons To Equip When Unequipped": [ "rifle.ak", "rifle.bolt", "rifle.lr300", "rifle.semiauto" ] }, @chuck norrisnp hope you get it figured out. there are still 2 bugs with bases not despawning though. one happens if the server crashes. the other i have no clue, but i hear it's during a restart. i am not able to reproduce it yet. @Swedish Chefty for helping!
-
- 634 comments
-
- 1
-
-
- #rust
- #rust plugin
- (and 6 more)
-
@chuck norris raid bases is not going to prevent a TC from spawning. that would be a CopyPaste issue, another plugin interfering, or some unforeseen issue as for loot... 1. its not set true - i've had people insist it was only to not be, or realize they were looking at the wrong file 2. a plugin is destroying the boxes - not likely but it's happened 3. the copypaste file of the base is corrupted and needs removed - this is very often the case 4. server load - usually from way too many plugins or the server's machine is a potato 5. unstable server / server not restarted often enough - once a day at minimum and high-end servers are never excluded from being susceptible to bugs or memory leaks. restart. it is not uncommon for memory leaks to cause the server to fuction differently No usable containers found means the base did not spawn with boxes or they could not be found for any of the above reasons otherwise, I don't know. I do not see a bug, but I also have no idea why bases don't despawn (or is it spawn???) for some people. so I cannot say with any certainty what it is.
