-
Posts
5,905 -
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)
-
@NoxiousPluK hi, that is nothing to worry about and won't affect any bases that aren't abandoned. you can reduce Sphere Radius or enable Use Dynamic Sphere Radius, but it will still overlap bases when players build too closely. I recommend enabling Use Dynamic Sphere Radius so that it doesn't use Sphere Radius of 50 for every base. if you adjust Sphere Radius and it's too small and a base is larger than the actual radius of the base then it cannot work properly. by using Use Dynamic Sphere Radius it will make the radius the size it should be, and pad it slightly with Padding Added Onto Dynamic Radius. the radius will not exceed Max Dynamic Radius, so if you have large bases on your server then you will need to adjust it to accommodate the larger size bases "Sphere Radius": 50.0, "Sphere Radius (Legacy Shelter)": 25.0, "Use Dynamic Sphere Radius": true, "Max Dynamic Radius": 75.0, "Padding Added Onto Dynamic Radius": 9.0, "Min Custom Sphere Radius": 25.0, "Max Custom Sphere Radius": 75.0,
- 634 comments
-
- 1
-
-
- #rust
- #rust plugin
- (and 6 more)
-
- 634 comments
-
- 2
-
-
-
- #rust
- #rust plugin
- (and 6 more)
-
@Komorebi heya. there's an issue with your server, but that might be a game bug. SamSite.ISamSiteTarget.serverList should not contain destroyed entities which is why this error is thrown. I can still fix it though. change line 12727 in the .cs file if (server is MLRSRocket || Vector3.Distance(server.CenterPoint(), v) > raid.Options.SamSite.Range) to if (server is MLRSRocket || server is not BaseEntity entity || entity.IsKilled() || Vector3.Distance(entity.CenterPoint(), v) > raid.Options.SamSite.Range)
-
@Dead Nasty it might be that you have a plugin calling StopAllCoroutines, which could stop everything from working in RB (including the queue) if the queue was still running but failed to find positions then there would be debug messages, but there isn't. everyone would've been kicked from queue after it failed too. so it must not be running then I bet. other possibility is an admin paused it with rb.toggle try rb queue_clear next time and tell me if they are able to re-queue and spawn then. it will refund them.
-
@Dead Nasty really not sure then. I'd look for a corrupted copypaste file. it could be a profile in that directory, a file with text that ends with null, a file with text that starts with null, or a file where a key is null can be hard to find when you have no error. I don't have issue with this on my servers so that's why I think it is a corrupted file but its hard to know with so many options changing its behavior. edit: you should use rbe debug when this happens and toggle it back off. you can DM me the text
-
@Dead Nasty just to clear up any potential confusion. it would be normal for a player to see a message indicating they were added to the queue when there are no other events spawned. players will always be put into queue, even when there are no events spawned. the plugin must find a suitable location each time a base is to be spawned. if the queue stalls and requires a plugin reload then it could be a corrupt copypaste file. this can happen even if you have made no changes. there should be an error in the logs for this. I do try to prevent stalls but there are so many ways in which an error can occur. otherwise, check if there are any errors in the logs, and send me a screenshot.