-
Posts
100 -
Joined
-
Last visited
Content Type
Profiles
Warranty Claims
Downloads
Forums
Store
Services
Downloads Plus Support
DOWNLOADS EXTRA
Everything posted by RustyB
-
Thanks for the suggestion but that's not really what I'm looking for indeed. Building over there needs to stay a bit of a challenge.
-
Hey thank you for that! I'll test it this weekend
-
With the latest update, it's no longer possible to place foundations at the bottom of the sea outside of squares with coordinates I mean in that yellow area here: Would it be possible to get a plugin that allows it again?
-
PENALTY FOR PLAYER THAT LOG OFF MID-RAID
RustyB replied to Jeremy Kravitz's Support Report in Support
Hello! Has it been added? I'm not sure I could find something that suspends ORP when a raid has already started. That would be much better than having ORP start on a timer -
Hello! I'd be very interested in getting that new TC softcore behaviour as a plugin and be able to have this feature on a non-softcore server. The way it works is when the TC is broken, it leaves a corpse and the raiders can't place a new TC for a set amount of time. That would be a great tool for server who don't allow griefing. Or alternatively, the TC privileges perduring for X hours after the TC destruction for the associated building.
-
Thank you!
-
The status doesn't countdown when AdvanceStatus is installed (as well as simplestatus) The Status appear correctly but if you have "Daily raids 3/3" it will stay at 3/3 always and not decrease. Basically, the status doesn't refresh.
-
reloading advancedstatus before simplestatus fixed the issue.
-
I have advancedstatus and simplestatus, and when displaying the raid limit mod (with simple status) all advancedstatus element overlap with the daily raid count.
-
Fixed it by adding this: void OnEntitySpawned(BaseEntity entity) { SleepingBag bag = entity as SleepingBag; if (bag == null) { string spn = entity.ShortPrefabName; if (spn.Equals("bed_deployed", StringComparison.OrdinalIgnoreCase) || spn.Equals("beachtowel_deployed", StringComparison.OrdinalIgnoreCase)) bag = entity.GetComponent<SleepingBag>(); } if (bag == null) return; NextTick(() => { BasePlayer player = BasePlayer.FindByID(bag.deployerUserID); if (player != null) HandlePlayerRespawn(player); }); }
-
Actually it works when I respawn in a bag/bed but not when I place a new one.
-
If advanced status and simple status are both present, the icon image doesn't display for bed timer status
-
Nothing appears... Fuel display works correctly but not bed status. Config file has been left by default. And I can't find any permission to give... Does it need updating maybe?
-
Hey, I saw you updated the plugin, that's great! I really love this plugin. I just want to report one issue I've faced. When I added it to my servers, I first allowed players to interact with it but then I had to restrict it to only comment about kills. The reason was that it would react to users talking to the bot in team chat. So I ended up having players asking the bot via team chat to announce the "wipe is this evening" and Chatgpt was replying publicly that the server was going to be wiped in a few hours. So there was too much abuse from players talking to it via team chat and ChatGPT replying via public chat. If there was a way to make the bot reply to team chat requests via team chat, that would be great. Or an option to ignore requests when they are not in public chat.
-
Hey! That's very strange. I'm not going to edit the distance because that wouldn't change the issue that after the MLRS hit, it would still cost one raid point more when attacking the base with C4 and rockets. The expected scenario is that the MLRS start the raid and you don't spend additional raid points when you progress the raid with C4, you can see in my video at the end the raid is not even considered started. For the moment I'm just going to exclude the MLRS from the raid limit with the code I posted. The thing is I had many players reporting this issue on both my servers using the plugin, and I doubt there was elevation every time. I haven't tested with only one TC because I assumed both TC were the reason for losing both raid point, but I will try tomorrow.... I'm trying to think about what could cause that, like a conflict with another plugin but I only have admin plugins like vanish, admin radar, discord tools... nothing affecting TCs or MLRS at all. And you've made sure your test is with the latest version of the plugin? And made with oxide, not carbon? (in case it matters somehow)
-
Here is the video. I've reproduced this on a vanilla server as well As you can see I have all my raid points. I place 2 TCs, I make sure to remove all privileges and check that trying to damage the wall give me the raid notification. I then go to fire the MLRS All my raid points are gone, trying to hit the walls doesn't even let me progress an ongoing raid but tells me I don't have enough points. This is the latest plugin version. Here is my config file: { "LimitResetTimes": [ "4:50" ], "AllowRevengeRaidForFree": true, "CanTwigTriggerRaid": false, "BroadcastReset": true, "LogResetInConsole": true, "SyncTeams": true, "SyncClans": true, "ClearBonusesOnReset": true, "BuildingDamageThreshold": 10.0, "PreventEarlyDamage": true, "CombineStackedPrivs": true, "RaidLimit": 2, "SaveOnServerSave": true, "IgnoredEntities": [ "sleepingbag_leather_deployed", "barricade.cover.wood", "beartrap", "campfire", "drone.deployed", "guntrap.deployed", "landmine", "sign.huge.wood", "sign.large.wood", "sign.medium.wood", "sign.post.double", "sign.post.single", "sign.post.town", "sign.post.town.roof", "sign.small.wood", "small_stash_deployed", "spikes.floor", "survivalfishtrap.deployed", "autoturret_deployed", "beachtowel.deployed" ], "Messages": { "ShowChatMessages": true, "MessageIconSteamId": 76561198339262834 }, "SimpleStatus": { "Enabled": true, "BackgroundColor": "0.77255 0.23922 0.15686 1", "TitleColor": "1 0.82353 0.44706 1", "TextColor": "1 0.82353 0.44706 1", "IconColor": "1 0.82353 0.44706 1", "IconSprite": "assets/icons/explosion_sprite.png" }, "UI": { "Enabled": false, "Width": 130, "Height": 34, "BackgroundColor": "0.4 0.4 0.4 0.7", "TextColor": "1 1 1 1", "TextSize": 12, "ShowSprite": true, "Sprite": "assets/icons/explosion_sprite.png", "SpriteColor": "1 1 1 1", "SpriteSize": 24, "OffsetX": -146, "OffsetY": 340, "AnchorX": 1.0, "AnchorY": 0.0 } }
-
- No plugin affecting TC ownership or MLRS, except for being 2x and limiting raids, it's vanilla. I've reproduced it on 2 different servers - Yes - Yes - I will try to do it again today and record a video