Jump to content

Steenamaroo

Administrator
  • Posts

    3,238
  • Joined

  • Last visited

Everything posted by Steenamaroo

  1. Hi, Yes, you can enable settings for npc corpses only without affecting any loot crates or barrels, if you want.
  2. Oh, OK. It's something for Mevent to look at then, assuming they want to maintain API compatibility with the free Kits plugin. Sorry for the ping, Raul. Misunderstanding.
  3. Hi, Sounds like this is one for @Raul-Sorin Sorban As far as I know Mevent maintains his Kits such that it's API compatible with uMod free Kits, and BotReSpawn gets tested with the latter. If BotReSpawn's API calls to Mevent's Kits work fine in oxide they should work under Carbon too.
  4. I can't say for certain but most likely they've written a custom plugin for their server.
  5. Hi, You can set different spawn amounts, per profile, for day and night and you can also set what hours you want to be day start and night start. There are biome profiles you can use for full map coverage or you can always create a custom profile in the middle of the map and make the spawn radius huge If you set night + day start hours to whatever suits you in BotReSpawn settings, via UI, then created a profile (standing at map centre) and set its radius to half your map size, and day spawn amount 0, that should achieve what you want.
  6. I think the fact that we're discussing in fractions might be complicating things. The current system, as you know, takes reward - say 100 - and multipliers of 2, 2, 8, to get 100 * 32x = 3200. The new addition would mean the multipliers are added together instead so you'd get 100 * 12x = 1200.
  7. I think I understand what you're asking for but, honestly, I think my proposed solution is a sensible compromise. Given that the term used is 'multiplier', and I'm genuinely not being snarky, it doesn't make sense for a value of 1 to represent 2X. I do get that the idea of multiplying all the multipliers together may get OP, though, so I'm happy to offer the addition alternative I described above. it may not be exactly what you're describing or asking for but I think it's a sensible interpretation, and you could get the results you want from it. For clarity you'd just set the multipliers in your example to 1.5 and 2, rather than 0.5 and 1. The result would be the same (100 + 50 + 100) but, in my opinion, much more intuitive for other users.
  8. That shouldn't be necessary, hopefully. I think the solution I proposed makes sense. In the case where there are two 1.5 multipliers it makes sense to me that your reward should increase by 50%, then again by 50%, not 300% (3X) It still works, then, that you can leave 1 as default, having no effect, and 0 would still work for disabling multiplier completely...Useful for zones and that kind of thing. I can implement that easily with a config true/false.
  9. Hi @Mabel Yes, the creation of groups when the option is false was an oversight and has been addressed for the next update. Thanks for reporting it.
  10. Taking a look at it now. To be honest I'm not sure the adding up idea really works. Firstly the option to set zero multiplier is there to allow you to prevent people from getting rewards under certain circumstances. The zero means all other multipliers become irrelevant, because the outcome is always 0. If we're adding up then zero wouldn't serve that purpose anymore, unless I hard code a rule, although I can do that. Secondly taking a simplified version of your example 300*(1.5+1.5) == 300 * 3 == 900 a 1.5X multiplier should give you 50% more than base. two 1.5X multipliers on 300 should give you 300 + 50%(150) + 50%(150) = 600 or (300 + 50%(150)) + 50%(225) = 675 Given that the multipliers are calculated separately, independently of the actual reward, my first option makes sense to me. Also, in your example people would constantly have mad multipliers because everything set to 1 would be increasing it so, again, I'd have to hardcode a rule to deal with that. I think the solution would be for me to return 0 if any multiplier is zero, to retain that function, and then, starting with a base multiplier of 1, add on how much greater than 1 each multiplier is so 300 * multipliers 1.5 and 1.5 becomes 300 * (1 +(1.5 -1) * (1.5 - 1)) or 300 * 1 + 0.5 + 0.5 or 300 * 2
  11. I don't think anyone's ever asked for that before but I certainly certainly make it a configurable option. I'll default it to false so nothing changes unexpectedly for people but look out for a new true/false in config at the next update. Thanks for the suggestion.
  12. Yeah, it's going to be limited to 2.147 billion by the data type chosen by FP. Sometimes developers are short sighted with data types and don't think ahead (millennium bug?) but I'm not sure 2 billion health npcs falls into that category.
  13. My pleasure. Thanks for letting me know.
  14. If you've already done that, check /server/YourServerName/cfg/serverauto.cfg and see if nav_wait is declared in there. If it is, change it to "True"
  15. Nah, don't worry about making changes or adding spawnpoints. Just add nav_wait True to your startup script and that should sort it out. Observe the same formatting as previous entries there.
  16. Hey @scarecr0w12 What monument was it where you wanted to be able to disable the vanilla npcs?
  17. Hi, There's a known issue where skins settings are being shared between profiles. I've addressed this and will release a public update fairly soon. Thanks for reporting!
  18. Hi, Thanks for reporting. It's not really due to either plugin, as such. BotReSpawn is returning false to prevent an APC from targeting a BotReSpawn npc. This means BotReSpawn setting 'APC_Safe' is set to true. RoadBradley is doing the opposite, returning true to allow an APC to target a BotReSpawn npc, presumably because its option 'Target NPC' is set to true. Your settings are telling the two plugins to do opposite things. There are multiple possible solutions. You can set `APC_Safe` to false in BotReSpawn, or `Target NPC` false in RoadBradley, so that the two plugins agree. If you want your RoadBradley APCs to target npcs but not BotReSpawn npcs then either 1: RoadBradley author would need to write in a condition to relinquish control when the target NPC is mine, or 2: I'd need to write in a condition to relinquish control when the attacking APC is theirs.
  19. Is there any chance you have server variable nav_wait set to false? If that's false then the server, and BotReSpawn, start up before navmesh is ready, which means npcs won't be able to spawn, and then reloading all the profiles, or the plugin, is required.
  20. That's great to hear. Glad you're getting on well with it.
  21. Yeah, that's right - For the various targeting options with Ignore/Defend/Attack, Defend means the npcs will be passive to the subject unless they are attacked. Sounds like a solution but I'll still put together something to disable vanilla npcs by monument. Too many people have asked over the years.
  22. I see. I think when it comes to fights between BotReSpawn and Vanilla/default npcs, BotReSpawn has to be the instigator, so I guess set the BotReSpawn profile Target_Other_Npcs to defend instead, then? That should keep peace between BotReSpawn and vanilla, but also allow BotReSpawn to defend from player attacks via Personal NPC.
  23. It's not, at present, but I think I could patch it in pretty easily. Leave it with me.
  24. I'll send you a copy which addresses the issue I mentioned earlier. It's most likely related. As for disabling vanilla monument npcs, I'll look into incorporating that into NPCKits but it won't be today or tomorrow. Depending what monument it is there may possibly be server convars you can set to zero to turn them off? Failing that, setting `Target_Other_Npcs` to Ignore for your profile, in BotReSpawn UI, should allow ceasefire for now.
  25. You’re meant to put in a players name or id in place of NameOrId.
1.6m

Downloads

Total number of downloads.

7.7k

Customers

Total customers served.

115.7k

Files Sold

Total number of files sold.

2.4m

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.