Leaderboard
Popular Content
Showing content with the highest reputation since 03/29/2026 in Support Replies
-
Skill Tree update: * Renamed STCanGainXP hook to CanGainXp. Returning non-null will override default behaviour.2 points
-
2 points
-
1 point
-
1 point
-
Changed Status from Pending to Work in Progress Changed Fixed In to 1.2.31 point
-
Plugin Updated We've added a feature that allows players to obtain seeds from various sources, such as chopping wood, gathering wild mushrooms and hemp, and mining ore.1 point
-
I’ve found the issue! it was caused by v1.13.3. Simply unloading and removing it wasn’t enough before installing v1.14.1. Something from the old version was still lingering on the server. To resolve it, I had to fully remove v1.13.3 before starting the server, and then add v1.14.1 afterwards. Apologies for not trying this sooner, and thanks for your help.1 point
-
Good afternoon, I would like to request a refund to my account, as we have been waiting for a fix for a very long time.1 point
-
1 point
-
@ALiEN JiM I've released a new version that should address this issue. Let me know if you continue to see any errors. Thanks!1 point
-
Always shows 0LVL and 0 exp - doesn't work after latest RUST update1 point
-
1 point
-
1 point
-
1 point
-
1 point
-
This warning is expected behavior on a fresh wipe or when no player has earned a #1 title yet. Even though AddTitleHoldersToGroup is set to true in your PlayerRanks config, PlayerRanks only creates the permission groups (PVPKills, PVPDistance, etc.) at the moment it actually assigns a title holder to that group. Until at least one player earns a top spot in a category, the corresponding permission group simply doesn't exist yet.1 point
-
1 point
-
1 point
-
1 point
-
1 point
-
1 point
-
1 point
-
1 point
-
1 point
-
The lock has no problems. It's positioned correctly. The door closer isn't positioned correctly, but it doesn't prevent use of the stairs. It will be fixed soon.1 point
-
1 point
-
1 point
-
As soon as the editor is updated, (it has issues since Aprils wipe) I will look at this for you. If I could ask you to join my discord and open a ticket there, i just means I will not forget when the time comes. Thanks1 point
-
"Allow Iceberg": true, "Allow Cave": true, "Allow Crafting": true, "Allow Above Foundation": true, Line 165 in the NTeleportation config make sure to allow cave. If still an issue with Nivex Plugin I suggest sending him a msg hes very helpful You can also add monument to your exclude settings "Additional monuments to exclude (experimental)": [ "lake", "canyon", "oasis", "jungle swamp", "jungle ruin" Let me know how this works out for you but I just tested on my server and also 100s of other players are currently plying this map without this issue so it is probably just a configuration issue with whatever homes plugin you are using I assume the NTeleportation one1 point
-
1 point
-
Yeah I see the issue. Will fix in the next release. if (Interface.CallHook("STOnItemRepairWithMaxRepair", item) == null) return; // Change to if (Interface.CallHook("STOnItemRepairWithMaxRepair", item) != null) return;1 point
-
1 point
-
After entering the promo command, does another plugin open for you? Could you explain in more detail?1 point
-
1 point
-
1 point
-
[Stack Modifier] Default Item's are missing! Notify DEV! Create Support Ticket!: Armored Ladder Hatch_607785075_floor.ladder.hatch.toptier_1 Armored Triangle Ladder Hatch_-478923685_floor.triangle.ladder.hatch.toptier_1 Water Wheel_-379403794_generator.water_1 Bunny Costume_1285226495_bunny.suit_1 Rustig├® Egg - Amethyst_-173268138_rustige_egg_h_11 point
-
2 things redo the config to 00 not 24 that is not a time second after you make a change to the date and time in the config delete the data file while the plugin is unloaded then load it again1 point
-
Ah sorry sometimes I don't get the messages there I apologize! best to open a ticket first here if you have any more troubles I always get those in my settings here1 point
-
I just released the V2 Version. You may use this map file to open in RustEdit now. Sorry for any delay I usually always remember to do this but I must have somehow forgotten when I was doing last minute edits. Have a nice day!1 point
-
Hi, we are not limiting harvest of custom items Ganja already works with PersonalFarmer, check if you have the latest version of Ganja I'll check Cooking plugin1 point
-
1 point
-
There is the file and the names are https://steamcommunity.com/sharedfiles/filedetails/?id=3419609271 = baseone https://steamcommunity.com/sharedfiles/filedetails/?id=3419609489 = basetwo https://steamcommunity.com/sharedfiles/filedetails/?id=3419609668 = basethree https://steamcommunity.com/sharedfiles/filedetails/?id=3419609965 = basefour https://steamcommunity.com/sharedfiles/filedetails/?id=3419610246 = basefive https://steamcommunity.com/sharedfiles/filedetails/?id=3419610437 = basesix SpawnEverything.json1 point
-
Now I understand what you're talking about. Unfortunately, it is not possible to dynamically change this parameter, and to expand these features, you need to review the plugin's UI.1 point
-
Hey, Sure, can add both hook and auth option check in next version.1 point
-
Hey. Will check it in code and if there is any issue it will be fixed in next version.1 point
-
1 point
-
Changed Status from Pending to Closed Changed Fixed In to Next Version1 point
-
1 point
-
1 point
-
i have found a fix for this. Starting on line 682, replace the entire bracket. replace this: { var hits = Pool.GetList<RaycastHit>(); GamePhysics.TraceAll(player.eyes.HeadRay(), .1f, hits, 5f, Layers.Server.Players); var hit = hits.FirstOrDefault(h => h.collider.gameObject != player.gameObject); if (hit.collider != null) target = hit.transform.ToBaseEntity().ToPlayer(); Pool.FreeList(ref hits); } with this: { var hits = Pool.Get<List<RaycastHit>>(); GamePhysics.TraceAll(player.eyes.HeadRay(), .1f, hits, 5f, Layers.Server.Players); var hit = hits.FirstOrDefault(h => h.collider.gameObject != player.gameObject); if (hit.collider != null) target = hit.transform.ToBaseEntity().ToPlayer(); Pool.FreeUnmanaged(ref hits); } reload plugin- should work fine1 point