Jump to content

A21 NPCMod and Addons


xyth

Recommended Posts

I was hoping for a more practical way. I can do it, still probably lot of unnecessary NPC related code remain in the files. I use lot of other mods and my concern is compatibility and resources. The old Zombie and Amimal pack still running on A20, I might stick to those.

Edited by Rukminesh (see edit history)
Link to comment
Share on other sites

Hello! I constantly see errors like "IndexOutOfRangeException: Index was outside the bounds of the array." in the console when I hire an NPC. Also, most often this error comes out when I run around the territory of the merchant. With these errors at the merchant, I cannot crouch, jump, etc. Help me please.

Link to comment
Share on other sites

On 5/30/2022 at 3:33 PM, TimTim said:

Hello! I constantly see errors like "IndexOutOfRangeException: Index was outside the bounds of the array." in the console when I hire an NPC. Also, most often this error comes out when I run around the territory of the merchant. With these errors at the merchant, I cannot crouch, jump, etc. Help me please.

 

You must have the current version of both NPCCore and SCore.  Im told some download sites only have old versions, so be sure to have the latest versions linked from the first pasge of this thread.

13 hours ago, Lasher said:

Noticed a strange thing with hired NPC's...

When they make a kill when in a party with me and a buddy he gets "shared XP" from my hirelings kills but I don't seem to.

Is this intended?

 

This is the first report on this issue.   We didnt test much in partied MP, so might just be an unintended feature 🙂

Link to comment
Share on other sites

Been playing this game for years but only recently got into modding it, and I just wanted to say that the work you guys have done with this mod is incredible! ❤️

I was wondering if there is perhaps a way to set it up so that NPCs can spawn with their faction randomly chosen between a selection of values (without having to make new entities)? I've been using khzmusik's lovely Civilians add-on, and I thought it'd make for interesting situations if the player couldn't immediately tell whether they will be friendly or hostile on approach.

I tried <property name="Faction" value="whiteriver,bandits" /> , thinking that would work (still very new to all this XML/XPath stuff), but it just made them not spawn and give a null reference error in the console instead. 

Link to comment
Share on other sites

On 6/7/2022 at 4:22 PM, mytholibar said:

has there been any work to make this work with Undead Legacy?  this would be a great pairing.

 

Thanks for reading

no, not compatible at this time

37 minutes ago, smokedpone said:

Been playing this game for years but only recently got into modding it, and I just wanted to say that the work you guys have done with this mod is incredible! ❤️

I was wondering if there is perhaps a way to set it up so that NPCs can spawn with their faction randomly chosen between a selection of values (without having to make new entities)? I've been using khzmusik's lovely Civilians add-on, and I thought it'd make for interesting situations if the player couldn't immediately tell whether they will be friendly or hostile on approach.

I tried <property name="Faction" value="whiteriver,bandits" /> , thinking that would work (still very new to all this XML/XPath stuff), but it just made them not spawn and give a null reference error in the console instead. 

only accepts one faction value

Link to comment
Share on other sites

9 hours ago, smokedpone said:

Been playing this game for years but only recently got into modding it, and I just wanted to say that the work you guys have done with this mod is incredible! ❤️

I was wondering if there is perhaps a way to set it up so that NPCs can spawn with their faction randomly chosen between a selection of values (without having to make new entities)? I've been using khzmusik's lovely Civilians add-on, and I thought it'd make for interesting situations if the player couldn't immediately tell whether they will be friendly or hostile on approach.

I tried <property name="Faction" value="whiteriver,bandits" /> , thinking that would work (still very new to all this XML/XPath stuff), but it just made them not spawn and give a null reference error in the console instead. 

 

Each entity can have only one faction, that property does not accept a list.

 

What you want can be done, but it's not easy. It would involve creating new entity classes for every single NPC you want duplicated (including weapon variations), and then adding those NPCs to spawn in the game.

 

Let's say you wanted to make unfriendly versions of my "Male Cowboy" civilian NPC. I am going to assume you want them to be of the "bandits" faction (not one of the other unfriendly factions like "whisperers").

 

The first thing to do is to make bandit versions of the character and weapon type. Example:

<entity_class name="npcBanditMaleCowboyKhzClub" extends="npcMaleCowboyKhzClub">
  <property name="Tags" value="entity,male,npc,melee,bandit" />
  <property name="Faction" value="bandits" />
</entity_class>
<entity_class name="npcBanditMaleCowboyKhzKnife" extends="npcMaleCowboyKhzKnife">
  <property name="Tags" value="entity,male,npc,melee,bandit" />
  <property name="Faction" value="bandits" />
</entity_class>
<!-- ...etc. for all weapon types -->

 

The "Tags" property doesn't extend so you need to specify it, and you need to change the "Faction" property value to whatever faction you want the NPCs to be. I'm pretty sure that's all you need to change to get things working.

 

The next step is to get them to spawn into the world. In general there are two ways NPCs can spawn:

  1. In the world, outside of POIs. This is controlled by the biome spawn groups.
  2. In NPC specific POIs. This isn't widely used yet but will be in the near future when people start making POIs that are dedicated to NPCs.

In both cases, spawning is controlled in the "entitygroups.xml" file.

 

For biome spawning, I suggest just copying-and-pasting the XPath that puts the NPCs into the "ZombiesAll", "ZombiesNight", and "SnowZombies" entity groups. You can mess around with other groups later once everything is working, if you want.

 

For POI spawning, I suggest copying the XPath that puts the NPCs into the various "npcWhiteriver" and "npcFreindly" groups, except that you should instead put them into the equivalent "npcBandits" and "npcEnemy" groups.

 

There is a catch: the Civilian NPCs (and in general other folks' friendly NPCs) can be interacted with and hired, and that means they can't be spawned into horde groups (wandering hordes or blood moon hordes). It's possible to modify them so they can be spawned into these groups without throwing errors, but that's more complicated. I can tell you how to do that if you want.

 

Hope that helps.

 

FWIW, I do plan to make a "Rogues" pack that has more "normal looking" unfriendly NPCs. They will still be distinct, but perhaps not so obviously "bad" as other NPC bandit packs. (There will also be others that are more obviously "bad" though.) I still have a lot more to do before I get to that - mainly making NPC POIs - but it's on the roadmap.

Edited by khzmusik (see edit history)
Link to comment
Share on other sites

10 hours ago, khzmusik said:

. . .
Hope that helps.
. . .

 

Thank you so much for the in-depth response, it does help a lot!

Very much looking forward to seeing the results of your other projects as well. Once I start getting into POI stuff (which I am also interested in doing), I hope to be able to craft something NPC-suitable too.

Link to comment
Share on other sites

On 2022/1/8 at 午前5時35分, xyth said:

NPC_LOGO_low.thumb.png.e9774a7359c4579bdab28b74df40e283.png

 現在の安定バージョン:20.4.01.03

現在の実験バージョン:利用できません

 

NPCModは、コミュニティの改造プロジェクトです。  最初はA16でSphereiiとXythによって開始されましたが、チームはアルファごとにサイズが大きくなり続けています。  このプロジェクトの目標は、モッダーが高機能キャラクターをモッズに追加するために再利用できる「コア」機能とテンプレートを提供することです。  2つのコアモッドレットがあり、このモッドが機能するには両方が必要です。  0-SCoreモドレットにはC#コードが含まれ、0-XNPCCoreにはxmlとテンプレートが含まれます。 

設計上、このmodは拡張パックによる拡張を促進します。  エンティティタイプに焦点を当てたキャラクターパック(たとえば、1ソルジャーパックや1スパイダーパック)は、0-XNPCCoreに新しいキャラクターを追加します。2ソルジャーファクションパックは、1ソルジャーパックに異なるファクションを追加し、同じソルジャーモデルを再利用する場合があります。   シーケンス0-、1-、-2などは、プレフィックスが小さい別のmodletに依存していることを示します。他のキャラクターモッダーは、CompoPackと呼ばれるPOI(Buildings)コレクションと同じように、このmodパックを活用する追加のキャラクターを提供することを約束しています。このコミュニティチームに参加したい場合、または貢献できる機能やキャラクターがあれば、ぜひご連絡ください。

 

特徴:

 

  • このmodには、modsコントローラーとテンプレートおよびスクリプトを含むUnityチュートリアルプロジェクト(別売り)が含まれているため、新しいキャラクターを簡単に作成できます。
  • NPCキャラクターは、すべてのバニラキャラクター機能をサポートしています。これらには、ヒューマノイドのリギング、ルートモーションのアニメーション、車両との衝突、ぼろきれ、何百ものアニメーション化された反応(ヒット位置、足を引きずるなどを含む)、手足の斬首および流血が含まれます。 これらは、さらに多様性を提供するためにxmlで再テクスチャ化することもできます。いくつかの例外があります。特に、通常ラグドールを持たない動物には例外があります。
  • NPCは、UAIと呼ばれる新しい人工知能システムを使用します。   ゾンビAI(EAI)とは異なり、このシステムでは、考慮事項に基づいた高度なタスクとリアルタイムの意思決定が可能です。  NPCは攻撃、実行、略奪、追跡、最適化された武器範囲へのバックアップを行う必要がありますか?  すべてのタスクと考慮事項。
  • すべてのPOIボリュームプロパティを尊重し、POIで寝台車として非常にうまく機能します。 
  • 血の月を攻撃するように設定できます!
  • xmlを編集するだけで、バニラまたはカスタム武器でスポーンします。
  • 雇うことができ、忠実な仲間になり、あなたの冒険と挑戦を共有することができます。
  • 雇われたNPCはフォローして滞在するように命じることができ、略奪や警備などの新機能が間もなく登場します。
  • デュークスは受け入れませんが、動物を雇うこともできます。  肉を試してみてください。
  • NPCには派閥があります。あなたのような人もいれば、そうでない人もいます。  盗賊に注意してください!
  • 敵対的なNPCには追加のAIがあるため、ゾンビができる以上にあなたを追い詰めるでしょう、警告してください!
  • NPCを失うことはもうありません。  あなたが死んだとき、彼らは立ち往生したり、遠すぎたり、構成されている場合はあなたの寝袋にテレポートします。 
  • 彼らはあなたを歩いて追いかけ、あなたが車に乗り込むと、あなたが車を降りると隠れて再び現れます。
  • 彼らは安全なときに自分自身を癒すことができ、他の人を癒して修復することができるキャラクターのためのメディックパッケージがあります。
  • メンテナンスが少なく、これらの人々に餌をやったり水をやったりする必要はありませんが、それは後で利用できる可能性のある機能です。
  • チャットや放浪中のリアルなアイドルアニメーションが追加され、没入感が向上しました。  初期リリース後にさらに多くが追加されます。 
  • プレイヤー/リーダーがしゃがむとき、NPCもしゃがみます
  • スケーラブルなモジュラーアーキテクチャであるため、キャラクターの拡張と新しい動作ははるかに簡単です。
  • NPCごとにカスタマイズ可能なパスが利用可能になりますが、実装の詳細はまだ利用できません。  乞うご期待。

NPCコントロール:

雇われたNPCをグループとして制御する巧妙なプレイヤーコマンドがあります。作成メニューにNPCと入力すると、これらのコマンドを作成できます。

             チュートリアルビデオ:    NPCMod:プレイヤーアクションによる雇用されたNPCの制御-YouTube
現在3つのコマンドがあります:

  • モード:このコマンドは、さまざまな制御モードを切り替えます。
  • ハンティング(デフォルト):このモードでは、NPCは、自分自身または自分に対して敵対的であると見なしたものを自動的にターゲットにします。滞在してフォローする以外に、彼らの行動を制御することはできません。
  • フルコントロール:このモードでは、NPCは自動的に何もターゲットにしません。すべての敵対者が脅威であるかのように動作し、怪我をした場合、または脅威の1つを攻撃し始めた場合にのみ関与します。
  • 停止:このコマンドはトグルであり、フルコントロールと組み合わせると、NPCがターゲットへの攻撃を停止または再開します。これは、あなたやあなたのNPCが遭遇を生き残れないと感じ、遭遇を完全に回避できるように彼らに単にあなたをフォローしてもらいたい場合に特に役立ちます。また、ターゲットを使わずに旅行したい場合にも便利です。
  • ヘルプ:このコマンドは、フルコントロールを使用していて、NPCが20メートル以内のターゲットと交戦する場合に役立ちます。遠隔武器がない場合は、ダメージを受けたり敵を攻撃したりすることなく、NPCに助けてもらうことができます。

 

FAQの

  • CreaturePacksとNPCmodはどうなりましたか?  
    • それらは統合され、結合され、廃止されました。コードをゲームでネイティブにロードできるようになったので、これら2つを分離しておく理由はありませんでした。このバージョンは、ロードと保守が簡単で、どちらよりも多くの機能を備えています。
  • EACを有効にしてこれを実行できますか?いいえ、EACをオフにする必要があります。
  • 自分のキャラクターを追加する方法を学ぶことはできますか?  
    • 確かに、キャラクターを作ることを学ぶのはかつてないほど簡単でした。プロセスを簡素化するために多くの作業が行われ、スクリプトでほとんどの作業を実行できるようになりました。支援できるビデオがあります。
  • より多くの機能について素晴らしいアイデアがありますが、どこで提案できますか?
    • このスレッドは機能するか、NPC-modチャネルのGuppyの改造フォーラムで動作します
  • バグを見つけました!どこに投稿しますか?
    • 以下にあるバグフォームで要求された情報を提供し、ここに投稿するか、npc-mod-bugレポートの下のGuppyの改造Discordに投稿してください
  • これは専用サーバーで機能しますか?
    • 現在のバージョンはdediで十分にテストされているはずです。すべてのmod、コア、および拡張パックは、DediフォルダーとすべてのクライアントModsフォルダーの両方にロードする必要があります。
  • 良い質問がありますか?多分あなたはそれがすぐにここにリストされるのを見るでしょう!

 

 

既知の問題点: 

 

  • スコアまたはNPCCoreを更新する場合は、常に新しいゲームを使用してください。  既存のゲームのコアを更新すると、奇妙なことが起こる可能性があります。 
  • UIには作業が必要であり、テキストが重複しています。Sirillionはそれを更新することを志願しました。  
  • 雇われたNPCは攻撃的な動物のリロイジェンキンスかもしれません、より多くのコントロールを得るためにコマンドインターフェースを使用してください。
  • 芝生のクローラーの近接NPC検出は、遠隔攻撃ほど良くはありませんが、機能します。  
  • 遠隔NPCは、他の場合と同様にヒットできない場合があります。  パターンが表示された場合はお知らせください。 デバフが蓄積している可能性があります。 
  • これは非常に新しいmodであり、まだ発見されていないバグを予期しているので、それらを報告してください。

 

バグ報告フォーム

 

概要:(バグの簡単な説明)

ゲームバージョン:(A20 bxxx)

プラットフォーム:(PC / Mac)

ビデオ設定:(低/中/高/超/カスタム(カスタムには多くの組み合わせがあるため、バグに関連すると思われる設定をリストしてください))

ゲームモード:(MPホスト/MPクライアント/SP / Dedi上のクライアント)

新しいゲームを始めましたか?(はい/いいえ)注:新しいゲームで問題を再テストするまで、バグレポートを送信しないでください。  

ファイルを検証しましたか?(はい・いいえ)

他のMODを使用していますか?(はい/いいえ)注:新しいゲームにMODをロードせずに再テストしてください。

EACオフ?注:オフにする必要があります。

バグの説明:

バグを再現するための詳細な手順:

実際の結果:(何が起こっているかの説明)

期待される結果:(発生すると予想されること)

 

 

インストール:

EACをオフにしてください!

 

オプション1:  以下のリンクを使用して0-XNPCCore.zipとSCoreをダウンロードします。ダウンロードが0-XNPCCore.zipのような.zipまたは.7zファイルの場合は、その圧縮ファイルを解凍し、その中にあるmodをModsフォルダーに配置します。  SCoreは圧縮されていないため、そのフォルダーを直接ダウンロードします。  次に、必要な数の拡張パックをロードし、必要に応じてファイルを解凍します。  専用サーバーを使用している場合は、両方のCoremodletをdediserverModsフォルダーにロードする必要もあります。したがって、クライアント側のModsフォルダーとサーバーのModsフォルダーの両方にコピーします。

オプション2:  modlauncherを使用して2つのコアをロードします。これがあなたが始めるのに役立つビデオです:  

 

 

 

 

利用規約:

  1. NPCMod、そのNPCCore、Unityコントローラー、および拡張パックは、直接変更することなく使用できます。 NPCCore、コントローラー、および拡張パックのすべての変更および/または派生物は、ロードされている変更されていないCore modに依存する拡張modで行われない限り、私的使用にのみ制限されます。modパックと拡張パックには、含まれているキャラクターコントローラーのアニメーションを含む購入したアセットが含まれているため、モデルまたはコントローラーの派生的な使用も、最初にそれらのアセットを購入することを条件とします。
  2. NPCModは、パブリックまたはプライベートを問わず、独自のmodの一部として使用することをお勧めします。  ただし、モッズのオープニング画面とフォーラムの投稿に「Powered byScoreとNPCCore」のロゴを追加して、コミュニティチームにクレジットを提供する必要があります。(必要に応じてサイズを変更します)

 

 

POWERED_LOGO_HORIZONTAL_low.thumb.png.8fb3b20b00f0a51e142403621b77146b.png

また

 

POWERED_LOGO_HORIZONTAL_low.thumb.jpg.042fa976d43a4f8ae853437a5725ea8b.jpg

 

 

  1.  チームは、このmodを使用することによる、破損したセーブゲームを含むいかなる破損についても責任を負いません。 

 

 

 

 

Unityチュートリアルプロジェクトのダウンロード:

A20チュートリアルプロジェクト:    http ://drive.google.com/file/d/1DsFR0e1V-f0bNiZDAuVd0kb7_iYtyNqL/view?usp = Sharing

 

これは、自分のキャラクターの作り方を自分で学びたい場合にのみ必要です。

 

 

コアModのダウンロード:(ModLauncherでも利用可能)

 

NPCCOrefolks.png.082c0c0e0ea47c1b59f0a220d861caca.png

 

安定リリース

 

SCore: (0-SCore)    https://github.com/7D2D/A20Mods/blob/main/0-SCore.zip

NPCCore:(0-XNPCCore)   https://github.com/7D2D/A20Mods/blob/main/0-XNPCCore.zip   (通常、実験にリストされている最新バージョンは、良くない場合でも機能します)

 

実験的リリース-  新機能、限定テスト

 

実験的なNPCCore: 使用安定

必要な最新の0-SCoreバージョン:  https ://gitlab.com/sphereii/SphereII-Mods/-/archive/master/SphereII-Mods-master.zip?path = 0-SCore

次に、  0-SCoreサブフォルダーのみModsフォルダーに コピーします。

 

拡張パック:

 

投稿者:Xyth

 

1-NPCXBirdPack:  https ://github.com/7D2D/A20Mods/blob/main/1-NPCXBirdPack.zip

空に鳥を追加します

1-NPCXSpiderPack:https ://github.com/7D2D/A20Mods/blob/main/1-NPCXSpiderPack.zip 

敵対的なバイオームに巨大なクモを追加します

1-NPCXMechPack:https ://github.com/7D2D/A20Mods/blob/main/1-NPCXMechPack.zip 

機械的テロの品揃え

 

作成者:DarkStarDragon

 

1-RaiderGurlzPack:   https ://github.com/7D2D/A20Mods/blob/main/1-RaiderGurlzPack.7z

50年代風のガンスタギャルを追加

1-RaiderzPack:https ://github.com/7D2D/A20Mods/blob/main/1-RaiderzPack.7z

いくつかの厄介な盗賊タイプの敵を追加します

1-SoldierPack:https ://github.com/7D2D/A20Mods/blob/main/1-SoldierPack.7z

基本的な軍隊の種類

1-VaultDwellerzPack:https ://github.com/7D2D/A20Mods/blob/main/1-VaultDwellerzPack.7z

Vault99が待機しています...

1-RobotzPack:https ://github.com/7D2D/A20Mods/blob/main/1-RobotzPack.7z

メカなど!

1-ZombiezPack:  https ://github.com/7D2D/A20Mods/blob/main/1-ZombiezPack.7z

DarkStarの最初のゾンビは、それが起こるまで起こりませんでした。

1-PitFighterzPack:https ://github.com/7D2D/A20Mods/blob/main/1-PitFighterzPack.7z 

最高のMMA

1-SurvivorzPack:  https ://github.com/7D2D/A20Mods/blob/main/1-SurvivorzPack.7z

あなた一人じゃありません!

1-OrczPackAlpha: https ://github.com/7D2D/A20Mods/blob/main/1-OrczPackAlpha.7z

恐れることはありません、彼らはあなたを解放するために来るだけです!

orcalpha.thumb.jpg.43b25d8186db0ea035aeab472a7be08c.jpg

 

2-OrczPackBeta: https ://github.com/7D2D/A20Mods/tree/main/2-OrczPackBeta

これが期待どおりに機能するには、1-OrczPackAlphaをロードする必要があります。

 

1-KnightsNPeasantzPackAlpha: https ://github.com/7D2D/A20Mods/blob/main/1-KnightzNPeasantzPackAlpha.7z

ニ!ニ!

 

2-GoblinzPack: https ://github.com/7D2D/A20Mods/blob/main/2-GoblinzPack.7z

1-KnightsandPeasantsおよび1-OrczAlphaPackもロードする必要があります

 

1-FantasticBeastz: https ://github.com/7D2D/A20Mods/blob/main/1-FantasticBeastz.7z

オーマイ!

 

1-YeOldeUndeadPack:  https ://github.com/7D2D/A20Mods/blob/main/1-YeOldeUndeadPack.7z

デムボーンズ!

 

投稿者:Mr.Devolver

 

2-RaiderGurlzPack-Friendly: https ://github.com/mrdevolver/7D2D_Alpha20_Mods/tree/main/2-RaiderGurlzPack_Friendly 

拡張パックの拡張!DarkStarのRaiderGurlzのフレンドリーでヒラブルなバージョンを追加します。このmodをロードするときは 、コアとRaiderGurlz拡張をロードする必要があります。

 

投稿者:Arramus

 

2-NPCXSpiderPack-ColonyExpansionhttps ://github.com/arramus/A20-NPCMod/raw/main/2-NPCXSpiderPack-ColonyExpansion.zip  

拡張パックの拡張!より多くのクモの品種を追加します。このmodをロードするときは 、コアと1-NPCXSpiderPack拡張をロードする必要があります。

 

2-NPCXSpiderPack-ColonyExpansion.png

 

 

投稿者:GanTheGrey

 

1-GansStandardZombieshttps://dev.azure.com/pouellette25/_git/Gans Standard Zombies?path = / 1-GansStandardZombies.zip 

ガンは彼のA19のお気に入りの通常のゾンビのいくつかで戻ってきました

 

2022-01-11_10-28-55.png

 

1-GansSpecialZombies:   https://dev.azure.com/pouellette25/_git/Gans Special Zombies?path = / 1-GansSpecialZombies.zip

ゾンビの奇妙さのように?これ以上探さない。  

 

2022-01-11_10-23-15.png

 

 

投稿者:Khzmusik

 

1-khzmusik_Zombies:https ://gitlab.com/karlgiesing/7d2d-a20-modlets/-/tree/main/1-khzmusik_Zombies   

あなたが十分なゾンビを持っているかのように....

 

1-khzmusik_Civilians:    https ://gitlab.com/karlgiesing/7d2d-a20-modlets/-/tree/main/1-khzmusik_NPC_Civilians

あなたと同じように、生き残ろうとしている人々。

 

他の人による:すぐに来て、チームは成長しています!

 

 

チームに会う(歴史的および現在、順不同)

 

Sphereii:  C#ウィザードおよび改造コミュニティの教師。  彼のmodランチャーと他のコードビットで有名

Xyth:  Unityの男でモッディングコミュニティの先生。  あまり有名ではありません。

GuppyCur:不和のマスター、時にはゾンビメーカー。  彼がA20で活躍するのを見たい

TSBX:  TFPテスターであり、以前はゾンビ作成者 でした

DarkStarDragon:  NPCのアクティブな作成者、優れた拡張パックのメーカー

Sirillion:  UIマスター自身、画面とメニューの作成者。

FuriousRamsay:  NPCCorexmlコードのリードテスターおよび寄稿者

Khzmusik: C#コードの寄稿者およびローカル数学ウィザード

Mumpfy:  グラフィックスとキャラクターのリテクスチャリングの第一人者

Khaine:  modデザインに関する非常に役立つ情報

Arramus:  POI/スリーパーテスターおよびデザイナー

デボルバー氏:  長年のテスターであり提唱者

Magejosh:テスター

GanTheGrey:ゾンビメーカー

 

 

途中で助けてくれた他の何人かが行方不明になっていると確信しています。誰が行方不明になったのか教えてください!

 

役に立つかもしれないビデオ

 

 

 

 

NPCCore.png.09382bebdb7606511d82a1efbe9d5637.png

POWERED_LOGO_HORIZONTAL_low.png

Please tell me how to fix it. a20 New Bug Drink Fighters https://youtu.be/bx5s1XlhuCs

Link to comment
Share on other sites

12 hours ago, as2369 said:

Please tell me how to fix it. a20 New Bug Drink Fighters https://youtu.be/bx5s1XlhuCs

The Wasteland Mod is also being used and the Wasteland Raiders are holding water glasses. I wonder what other selection of mods you are using.

This is not something specifically related to the NPCMod and Wasteland Mod as they work very well together. I wonder if something else you have added to the Mods folder is the culprit. Maybe you can remove other mods one by one to find any conflict. That is the best way to find the cause and fix it.

Link to comment
Share on other sites

Is there an active tutorial on how to do this with animals? I find it amazingly strange that all the video tutorials I have watch state they might show you how its done but they never do. I also watch xyths tutorials and he goes over how to do it with NPC humans but never with animals .. is this because starvation mod has a release and they dont want everyone to have that ability?  I also went to Xyths git hub and the project files have been removed with the exception of the scripts... why has this happened? again did someone complain because they want their mods to be exclusive? I am not understanding. Personally I would love to have the ability to make these changes but i would never ever play on someone elses sever using the other mods (starvation mods or anything else out there) just a preference. I appreciate what modders have done but I prefer to learn and make my own. Any help would be greatly appreciated .. thank you

Link to comment
Share on other sites

19 hours ago, OnToYou said:

Is there an active tutorial on how to do this with animals? I find it amazingly strange that all the video tutorials I have watch state they might show you how its done but they never do. I also watch xyths tutorials and he goes over how to do it with NPC humans but never with animals .. is this because starvation mod has a release and they dont want everyone to have that ability?  I also went to Xyths git hub and the project files have been removed with the exception of the scripts... why has this happened? again did someone complain because they want their mods to be exclusive? I am not understanding. Personally I would love to have the ability to make these changes but i would never ever play on someone elses sever using the other mods (starvation mods or anything else out there) just a preference. I appreciate what modders have done but I prefer to learn and make my own. Any help would be greatly appreciated .. thank you

not sure what the reference to starvation means, it hasnt been updated in at a bunch of alphas and has nothing to do with npc mod

as for videos that are applicable to getting animal type entities in game xyths legacy to mecanim video(s) go through the process and this one i did a long time ago would also help

 

 

Link to comment
Share on other sites

5 hours ago, drkstardragon said:

not sure what the reference to starvation means, it hasnt been updated in at a bunch of alphas and has nothing to do with npc mod

as for videos that are applicable to getting animal type entities in game xyths legacy to mecanim video(s) go through the process and this one i did a long time ago would also help

 

 

thanks so much for the help on this... I think I have it all figured out.. I just need more insight on the tags but Im going to watch Xyths video again to get that part down.. Thanks again

Link to comment
Share on other sites

That should not happen often.  The SCore code attempts to reduce the occurrence.  The charactercontroller collider for some characters might be large and pathing gets confused.   No doubt this will be improved in A21 and having access to more NPC code.

Link to comment
Share on other sites

A small modlet for the NPCMod Addon collection.

 

2-SummonFoxFriend

https://github.com/arramus/A20-NPCMod/raw/main/2-SummonFoxFriend.zip

 

This modlet allows players to purchase a Fox Friend from the Trader in the secret stash area. It will be accessible at low level Barter Skill but more accessible as the Skill increases.

 

It works like this:

1. Purchase your 'puppy' from the Trader in the Secret Stash area. At Skill level 3 the cost was 1020 Dukes.

20220627001122_1.thumb.jpg.7b1752b2571548b73422f1e3390778bc.jpg

 

2. Read the 'quest'.

20220626021444_1.thumb.jpg.d3273229991403c4d417a5619f263a23.jpg

 

3. Accept the quest after moving to a more open area.

20220626021925_1.thumb.jpg.463045e4095df343fa792a95dc291699.jpg

 

4. A Fox Friend will appear very close to you and 20 meat will be placed in your inventory. If there are hostiles in the area, it will run away.

20220626021937_1.thumb.jpg.d9ed69b8ef68710b239c49d8230cb706.jpg

 

5. Your last action is to 'tame' the Fox Friend to become your companion by feeding the Fox Friend the 20 meat.

20220626022128_1.thumb.jpg.57cc4fd1767eb454fa2c6736d0c2c5ad.jpg

 

They work very well together in a pack. ^^

20220626233732_1.thumb.jpg.3c56be0a9ac91d5dc6aafa696d938663.jpg

 

This modlet serves a few purposes:

- Very easy to edit and customise for other NPCs.

- Provides a way to 'respawn' any lost hired NPCs if Admin are not around and going to look for a replacement in the Biomes is not an option.

- Gives an additional dynamic to how we can integrate the NPCs in a more controllable manner.

- Having a pack of foxes is like unlimited ammo in a SMG and pretty much hold the hostile in place.

 

With the fox's looting function turned on as well, your investment will continue 'giving'.

Link to comment
Share on other sites

2 hours ago, Lasher said:

Arramus - could we have a Dire Wolf version? - just for a little added meanness towards our Zombie friends? 😉

npc mod is not likely to see any more additions this alpha, more animal pets will be added in a21 as there seems to be a shortage of those types of companions in a20 ie. will revisit the dogs pack that was in a19 but missing from this version

 

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...