-
Posts
5,154 -
Joined
-
Last visited
Content Type
Profiles
Downloads
Forums
Store
Support
DOWNLOADS EXTRA
Services
Everything posted by nivex
-
lol no problem. I can note it for a future update
-
if you want them to use throwing weapons then they should not have guns
-
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
-
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
-
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.
-
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
-
heya. you can edit the copypaste config and change paste per batch to lower value, between 1 to 5
-
hi, this is the new interference option added in the Rust update convars are by default: sentry.maxinterference 10 sentry.interferenceradius 40
-
I don't plan to change it it should work fine with the options you have now
-
Scrap, Wood, Pumpkins do not appear in Loot (resources and food?)
nivex replied to Jackelmyer's Support Request in Support
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 -
yes, in the next update now use sentry.interferenceradius 0 or sentry.maxinterference 1000 defaults:
-
Scrap, Wood, Pumpkins do not appear in Loot (resources and food?)
nivex replied to Jackelmyer's Support Request in Support
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"; } -
Scrap, Wood, Pumpkins do not appear in Loot (resources and food?)
nivex replied to Jackelmyer's Support Request in Support
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; } -
Scrap, Wood, Pumpkins do not appear in Loot (resources and food?)
nivex replied to Jackelmyer's Support Request in Support
yea, this plugin has a steep learning curve, and it's easy to get lost in the endless options. -
Changed Status from Pending to Closed Changed Fixed In to Next Version
-
Scrap, Wood, Pumpkins do not appear in Loot (resources and food?)
nivex replied to Jackelmyer's Support Request in Support
Ill keep the change. edit: it will support both scientists and murderers. you don't need that extra code -
Scrap, Wood, Pumpkins do not appear in Loot (resources and food?)
nivex replied to Jackelmyer's Support Request in Support
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); -
Scrap, Wood, Pumpkins do not appear in Loot (resources and food?)
nivex replied to Jackelmyer's Support Request in Support
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. -
Scrap, Wood, Pumpkins do not appear in Loot (resources and food?)
nivex replied to Jackelmyer's Support Request in Support
"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 -
Scrap, Wood, Pumpkins do not appear in Loot (resources and food?)
nivex replied to Jackelmyer's Support Request in Support
nah, they spawn from Murderer Items Dropped On Death -
Wooden Bow getting converted to Compound Bow and Weird Loot
nivex replied to Jackelmyer's Support Request in Support
ya, enable it Ill respond in the other thread from now on. this one is closed -
Scrap, Wood, Pumpkins do not appear in Loot (resources and food?)
nivex replied to Jackelmyer's Support Request in Support
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. -
Scrap, Wood, Pumpkins do not appear in Loot (resources and food?)
nivex replied to Jackelmyer's Support Request in Support
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