Jump to content

nivex

Creator
  • Posts

    5,154
  • Joined

  • Last visited

Everything posted by nivex

  1. nivex

    Enquiry (not a bug)

    lol no problem. I can note it for a future update
  2. nivex

    Enquiry (not a bug)

    if you want them to use throwing weapons then they should not have guns
  3. nivex

    Enquiry (not a bug)

    I don't see a reason for it to work with smoke grenades =p it does work with normal grenades I have not tested molotov
  4. nivex

    Raidable Bases

    @Lapegsonita Interference was added in the Rust update. that command is a convar to control it for the server. you can use that, or read this thread https://codefling.com/files/sc/9913-base-turrets-question/?tab=comments
  5. heya. I won't be removing turrets, but I will remove the limitation on raid bases https://codefling.com/files/sc/9913-base-turrets-question/?tab=comments
  6. nivex

    Enquiry (not a bug)

    ya, if you give them c4 they'll toss that too. if you enable Play Catch then it'll detonate when it reaches the target.
  7. nivex

    Base Turrets question

    ya, in the next update it will work as it did before. I ignore the interference for raid bases. if you don't want to wait then you can either increase sentry.maxinterference or edit the .cs yourself yield return TurretCommand(turret, () => turret.SetFlag(BaseEntity.Flags.OnFire, b: false)); needs to be added after line 6797, so that it looks like this
  8. heya. you can edit the copypaste config and change paste per batch to lower value, between 1 to 5
  9. nivex

    Base Turrets question

    hi, this is the new interference option added in the Rust update convars are by default: sentry.maxinterference 10 sentry.interferenceradius 40
  10. I don't plan to change it it should work fine with the options you have now
  11. no problem I'm not interested in a dependency on another plugin (or adding bloat to support it) but if there's any features you want then I will consider them
  12. yes, in the next update now use sentry.interferenceradius 0 or sentry.maxinterference 1000 defaults:
  13. nivex

    Raidable Bases

    this is because an npc is using a crossbow which doesn't work for npcs. I figured out a hack for this, and it works for hunting bows too so those will be enabled as well. npcs will be able to use crossbows, compound bows and hunting bows in the next update
  14. that little hack for crossbows works for hunting bows, too. enable by adding bow_hunting.entity since it will work now case "compound_bow.entity": case "crossbow.entity": case "speargun.entity": case "bow_hunting.entity": and this code can go if (shortname == "bow.hunting") { shortname = "bow.compound"; }
  15. crossbow works now. I don't think npcs are supposed to use them but an easy hack to get it working. baseProjectile = _attackEntity as BaseProjectile; if (baseProjectile != null && baseProjectile.MuzzlePoint == null) { baseProjectile.MuzzlePoint = baseProjectile.transform; }
  16. yea, this plugin has a steep learning curve, and it's easy to get lost in the endless options.
  17. Changed Status from Pending to Closed Changed Fixed In to Next Version
  18. Ill keep the change. edit: it will support both scientists and murderers. you don't need that extra code
  19. raid.DropItems(corpse.containers, brain.attackType != HumanoidBrain.AttackType.BaseProjectile); you can see here that its using base projectile, which means ranged weapon, to determine what the npc drops. its easy to add support for the murderers using ranged weapons, though. just change it to this raid.DropItems(corpse.containers, brain.isMurderer);
  20. I see the issue now that you mention the murderer items not always dropping. thats because you have them equipped with both ranged and melee weapons. when they equip a ranged weapon its not going to work because murderers have support for melee weapons and explosives only, and the other scientists use ranged weapons only. so when the murderer equips a ranged weapon its going to drop the ranged loot (scientist items) why? murderers used to be in the game. when they were in the game they used melee only. it was not possible to give them a ranged weapon. they've been removed from the game, but I still wanted to keep them in my plugin. so I use the scientist for both the scientist and the murderer. the only thing separating them is the weapons they use. scarecrows could replace murderers but there's no point when the scientist fills this role just fine they can kill players using ranged weapons, but there's no support for it. I'll see what I can do to add support for this without it conflicting with scientists.
  21. "Difficulty (0 = easy, 1 = medium, 2 = hard, 3 = expert, 4 = nightmare)": 0, you have to set the difficulty, either that or you have the same base in multiple profiles. RaidableBases.json
  22. nah, they spawn from Murderer Items Dropped On Death
  23. ya, enable it Ill respond in the other thread from now on. this one is closed
  24. just respond here instead of multiple tickets with the same question it didn't work for peacekeeper because you need to enable the option I used 2.7.4 to test it, and probability is not 1.0 so it will not always spawn those items.
  25. I said it wasn't easy to check, so if you want to check for yourself then here's a plugin to do that CheckLootSpawnsLoot.cs
1.8m

Downloads

Total number of downloads.

8.4k

Customers

Total customers served.

127.3k

Files Sold

Total number of files sold.

2.6m

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.