-
Posts
5,322 -
Joined
-
Last visited
-
Days Won
185
Content Type
Profiles
Downloads
Forums
Store
Support
DOWNLOADS EXTRA
Services
Everything posted by nivex
-
Allow Teleport (false) option in RB config will eject you whenever you teleport into the event ya I will add it here in a later update this requires 2 steps to work 1. conversion of your RB installation files using the Convert EN to RU tool. instructions in the below zip archive. 2. changing this value to false in the .cs private const bool en = true; Convert EN to RU.zip
-
Changed Status from Pending to Closed
-
for anyone else curious it's in the profiles, oxide/data/RaidableBases/Profiles/ enjoy
-
public static bool IsKilled(this BaseNetworkable a) => (object)a == null || a.IsDestroyed; you can change that to this in .cs public static bool IsKilled(this BaseNetworkable a) { try { return (object)a == null || a.IsDestroyed || a.transform == null; } catch { return true; } } this is a workaround, and you should find the cause on your server so it can be fixed.
-
Bradley and helicopters to help bases?
nivex replied to Beaverthelieber's Support Request in Support
ok, no ETA, but I will note it down -
Bradley and helicopters to help bases?
nivex replied to Beaverthelieber's Support Request in Support
I'm not aware of anything if you had a plugin that could issue that as a console command from the player then maybe but the primary issue with this is the players would just exploit it in one of two ways 1. cause the heli to deal free damage to the base, in which case you'd have to enable Block Helicopter Damage To Bases 2. hide securely in the base while fighting the heli, essentially getting a free kill on it. if the base is immune to damage from the above option then there is no risk to the player I'm not opposed to either idea but 1 and 2 really take the fun out of the idea. what do you think? -
@Dead Nasty so there's 2 potential issues here 1. if bases are spawning in cliff sides then the base wasn't copied from its center. you can easily fix this by using the center option within Fortify and resaving the base. I actually did this with all of my bases in my tier packages in 1.0.8 so make sure to update with those new copypaste files if you haven't already 2. and seperate issue is that rocks should not spawn on top of any rock unless it is less than 2 meters in height. it was reported by one other user that a base spawned on top of a 9 meter tall rock, but I was not able to observe or reproduce this. I assume thats what you're referring to since you did not specify a cliff, but both are worth mentioning.
-
- 599 comments
-
- #rust
- #rust plugin
- (and 6 more)
-
@Dead Nasty there is no safe way for me to do this given other bases can be in the bubble. I can remove any entities they deploy within the events base, but not outside of it because there's no elegant way to determine if another base built that or if a raider did. I can do it for those who are actively participating in the event, but then it will miss all entities deployed before they become an active participant. so that wont work either Deployable Nature can hook OnAbandonedBaseEnded to remove the entities safely when the event ends
- 599 comments
-
- #rust
- #rust plugin
- (and 6 more)
-
hi, the convar server.pve true does this it cannot be bypassed. you would have to set server.pve false and use a plugin like TruePVE to control PVE elements of the server.
-
@KlotzQc heya. the same answer applies to you or anyone else with this issue if it's not explicitly blocked in the config or profiles then it is caused by another plugin.
-
heya, it means you can't convert that base again. it must decay on its own if the TC no longer exists if the base doesn't decay then some other plugin (or decay / upkeep convar) is blocking it. TruePVE and Abandoned Bases don't handle decay:)