Jump to content

Steenamaroo

Administrator
  • Posts

    3,570
  • Joined

  • Last visited

  • Days Won

    206

Everything posted by Steenamaroo

  1. Steenamaroo

    Quarry Levels

    Yeah, this is definitely an oversight. Sales are meant to be disabled on QuarryLevels so it shouldn't be available as part of any bundle, as far as I know. @Death
  2. Hi there, Glad you're enjoying it. It sounds like maybe one of your loot tables got messed up. Have you been editing any recently? The error makes it sound like the plugin is looking for a category called "Categories", so I'm thinking maybe commas got misplaced or something like this? Feel free to attach your most recently edited loottable, or DM me a zip of your /data/CustomLoot if you want me to take a look. The things you list there aren't loot containers so I did choose to leave them out of the plugin. Anything like harvesting from an animal, gutting a fish, unwrapping a present, as far as I know they all create the loot directly in your inventory upon an action, whereas containers contain the items and they can be viewed. Barrels are an exception to that, sort of, but they are loot containers technically - They just work slightly differently. Maybe I can see about adding these presents etc in their own section or, at least, do a separate plugin that lets you customise them with a CustomLoot table.
  3. Hopefully it's just one of those things but if it happens again please let me know and I'll see if there's something that needs to be addressed.
  4. Oooh, ok. That means SignManager plugin is not loading. Seems like an issue with the data file. Ensure that the plugin is unloaded, delete the json data file file, then reload the plugin.
  5. Sorry, I'm not clear on what happened. Using the export command yields no console output, so what resulted in the error in your first post?
  6. Hi, Are you sure this is coming from SignManager? What do you do right before you see this message?
  7. Hey, It does that already. There's a repeating print-to-chat of the top X and you can control the timer duration and the number printed in the config.
  8. Hey, I understand people will have personal preferences but I don't think I've ever had anyone describe them as idiots. I have seen cases where under extreme server pressure npcs will stop shooting but continue to move, so they're just walking around doing nothing. Could that be what's happening? If that's the case you'd most likely notice there's no issue at wipe time but then at some point during the wipe issues start to creep in.
  9. Hi, Yes, you can do that although it's not automatic. The plugin has TitleStart = "["; TitleEnd = "]"; which you're seeing right now. [ all the titles here ] You could set those to be blank like this TitleStart = ""; TitleEnd = "" then put your brackets in as part of the individual titles, like Title = "[Hunter]";
  10. Hi, When you're adding your custom spawn points, do they show as green in game?
  11. I'll get you on discord.
  12. Thanks for coming back to explain. Sounds like you have one profile but want it to have some npcs at terrain level and some underground? If so your solution should work. Just for clarity, though, when UseCustomSpawns is set to false, BotReSpawn will try to find random spawn point where the profile is located. Keep in mind that the profile itself has a location - where you were when you created it. This can be checked with 'Show All Profiles' in the UI, and you can move any profile at any time using it's use Move profile here button. If you have Off_Terrain to true and create a profile in a cave or tunnel, for example, BotReSpawn *should* find its random spawnpoints down there instead of at terrain level, although in many cases the walkable areas are so tight that it fails to find the number you want, so often custom spawnpoints are the better option. If you want some variety, so the players don't know the precise spot the npcs will spawn, you could split that up into two profiles. An above ground profile, and an underground one. The underground one should have UseCustomSpawns true and spawn amount to 5, but you then have the luxury of adding more spawnpoints than you need, say 10, and setting ChangeCustomSpawnOnDeath to true. That would randomise their spawn points a little bit.
  13. Oh you're using custom spawn points? Didn't realise that. They're green so there shouldn't be an issue. It's definitely not something silly like spawn population is set to 0 for day/night, or UseCustomSpawns being set to false?
  14. Hi, You can try setting 'Off Terrain', under 'Other' to true for that profile. If it's a custom profile, make sure you were at the desired spawn height when you created the profile, or go to that location and use the UI to move the profile to where you are. That should work.
  15. Steenamaroo

    no damage

    Perfect. That's great to hear. Thanks for letting me know. If anything else comes up don't hesitate to ask.
  16. Steenamaroo

    no damage

    In your third screen shot, set Target Noobs to true.
  17. Steenamaroo

    no damage

    No trouble at all. Glad to help. We'll get you up and running, either way. I'll be heading out for the evening in about half an hour, just so you know.
  18. Steenamaroo

    no damage

    I'm not sure if server pve settings would prevent your players from being hurt by npcs, but it seems like something worth checking. You say they're not firing at you - They must have been before, I guess. Were any settings changed? A brand new, or unchanged, profile should produce npcs which will attack you if you're a hostile player, so simply spawning a brand new profile of npcs, and firing a weapon, should result in npcs attacking and killing you if you're fairly close to them. I notice you have Aggro Range set much higher than Deaggro Range - That should probably be the other way around. Possible that's causing problems? Other than that I think everything looks OK.
  19. Steenamaroo

    no damage

    Hi, Unless you've set Bot_Damage_Percent to zero, I'd guess you have some other plugin mitigating the damage. Maybe some PVE/PVP controlling plugin, or perhaps a setting of a zone you're in? A quick and easy test would be to just unload all plugins, then load BotReSpawn. If they start wrecking you then my guess is right ^.
  20. Hi, Thank you! There's no provision for that, I'm afraid. The titles are issued and announced as soon as they change hands. You can issue rewards to the title holders at any chosen time, or upon wipe, but the assignment of titles through the wipe happens automatically the moment someone exceeds the current title holder's score.
  21. Yeah that’s just carbon team being dicks. you can ignore.
  22. I added additional null checking as per reply so, yes, hopefully that should be resolved.
  23. Hi, BotReSpawn isn't written to attack player buildings. I suppose there could be collateral damage if the npcs happen to be equipped with grenades or rockets or something, but there are no controls relating to this. If you're finding that npcs stray grenades and that kind of thing aren't causing damage where they should, I'd probably be looking at pve/pvp plugin settings.
  24. Hi, Looks like I could use a few additional null checks in that method. I'll be releasing an update shortly for other reasons so I'll add those in. Thanks for letting me know.
  25. I think oxide's output is truncated which will confuse matters. Using PermissionsManager is probably a better way of assessing what groups exist and what groups don't. For PlayerRanks a group should exist for every category that's enabled and doesn't have "" (blank) for the title. Certainly the code is there to remove all players from x group before adding the new title holder to it. Maybe some errors has been happening, stopping that code? Although, saying that, the emptying of the group happens first so if there was some error then the new player wouldn't be added. Not sure what's going on, to be honest, and kind of difficult to test with only myself. You *could* set DestroyGroupsOnUnload to true, and EnablePlayerTitles to false then reload PlayerRanks, and that would delete every PlayerRanks group then not create them again. That would give you a chance to look at PermissionsManager and see if there are old groups with similar names through some previous error or something?
2.1m

Downloads

Total number of downloads.

9.7k

Customers

Total customers served.

141k

Files Sold

Total number of files sold.

3m

Payments Processed

Total payments processed.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.