-
Posts
6,143 -
Joined
-
Last visited
-
Days Won
205
Content Type
Profiles
Warranty Claims
Downloads
Forums
Store
Services
Downloads Plus Support
DOWNLOADS EXTRA
Everything posted by nivex
-
- 643 comments
-
- 1
-
-
- #rust
- #rust plugin
- (and 6 more)
-
@S0TR I wasn't able to get the weaponrack method exposed, so I have disabled my code for weaponrack support. I have made it possible to re-enable it using reflection though. if you edit the (new) .cs file and remove all references of //REM: then it will work. just be careful to not remove the rest of the code on any line with a reference to that. I think it's safe to use that code, but I don't know for certain without someone to test it.
-
- 643 comments
-
- 1
-
-
- #rust
- #rust plugin
- (and 6 more)
-
- 643 comments
-
- 1
-
-
- #rust
- #rust plugin
- (and 6 more)
-
Changed Status from Pending to Closed
-
- 643 comments
-
- #rust
- #rust plugin
- (and 6 more)
-
post the config and the profiles.
-
changing the config will work unless you have some json error or did not upload the file. json errors are shown in the server console when the plugin loads. if the file did not upload then this is an issue with your hosts web panel. refreshing the webpage usually fixes it.
-
hi. it does work. you cannot edit the .cs file to change it. edit the config file only this is how long until it will despawn once the event is completed "Minutes Until Despawn After Looting (min: 1)": 15, this is how long until it will despawn if it remains inactive "Minutes Until Despawn After Inactive (0 = disabled)": 45,
-
- 643 comments
-
- 1
-
-
- #rust
- #rust plugin
- (and 6 more)
-
@S0TR hi, somehow your entities are being destroyed in the same frame. not sure how that's possible in that specific hook but it doesn't really matter. easy fix. it's fixed in the next update, thanks to misticos. public static bool IsKilled(this BaseNetworkable a) => (object)a == null || a.IsDestroyed || !a.isSpawned; on line 23983 is being changed to public static bool IsKilled(this BaseNetworkable a) => a == null || a.IsDestroyed || !a.isSpawned;
-
Changed Status from Pending to Closed
-
you are welcome! enjoy
-
hi, anything not in the config must be disabled in the language file. "OnPlayerEnteredEco": "<color=#FF0000>You have entered an eco only raidable PVP base!</color>", to disable set to: "OnPlayerEnteredEco": "",
-
Changed Status from Pending to Closed
-
these are the lock settings: Bypass Lock Treasure To First Attacker For PVE Bases Bypass Lock Treasure To First Attacker For PVP Bases Lock Treasure To First Attacker Lock Raid To Buyer And Friends disable npcs in the profiles, oxide/data/RaidableBases/Profiles
-
Changed Status from Pending to Closed