Jump to content
  • 0

[HELP] Implementing NPC Relations


Question

Posted

Hello everybody, nice to see all the useless help posts and some fimilar names.

 

Something that I've been working on is creating your own 'Instance' of the world independent of what other players do. To create a bit more of a dynamic role playing situation for players I've been wanting to implement relationships between NPC's. I'm currently using standard interlude L2j from the nightlies folder (r1434) incase you're wondering, though I'm wondering more about the concept of it rather than the practice.

 

The idea to paint an example of what I mean:

 

There is Tom and there is Joe. Tom is a trader. Tom receives his supplies from Joe and resells them. Joe is a traveling NPC which travels from location A to B. Joe dies, either by the hands of the player or a hostile NPC. Because Tom no longer has a supplier he cannot sell supplies anymore to the player.

 

Obviously it won't be so specific every time and it was just to illustrate what I mean but I want to implement something generic enough that I can define an entry point interface ( like checkRelation or something ) and from there script it myself in specific classes. However I'm running into trouble with a good implementation with the current system of npc's and spawning.

 

1) My original idea was to have the NPC's have a Map with the NPC id as the key and the value being some kind of relation interface (classes implement this with a doCheck as stated above, or something when the player interacts with the NPC). However NPC's can have multiple spawns, which means this is unreliable (or it can be managed if I'm the one managing the custom npcs)

 

2) The second idea is to use the spawn id's of npcs, however this wouldn't be known at compile time. To manage this I'd have to completely overwrite the current spawn system to make something to keep track of it then, which would then have to spawn things inside of a relation 'group'.

 

Anybody maybe have some kind of idea about how to go about this?

 

 

 

6 answers to this question

Recommended Posts

  • 0
Posted

It's interesting, but I'm not even sure you can rely on npc objectId after server shutdown. As CtrlIntention, you can make a Enum with all possible actions, and code any action.

 

About individual behavior (such as your Tom/Joe), I clearly doubt you can do something global. Each A type enters in a "case" you have to code. It could be patrolling an area, you have to give an area manually, or based on actual region.

 

How will you manage to say Tom and Joe are related, for exemple ? I see mostly a "clan" system. How will you manage to make them walk ? I see a pathnode system.

 

You could also do as L2J currently make, aka coding any single behavior. It is very long.

 

Anyway, even on The Sims, you haven't such relation, and it's a game based only about relations between NPCs.

 

You should better take a look on AI systems from others games.

  • 0
Posted

i got a bit lost:

"Instances": check how postIl did it, but it must be just controling knownList or smth like that

 

Relations between Npc's you can create a manager that save the info (Joe alive?) onCreate() turn it true, onDie() false [no idea if Npcs have onCreate(), they must, because some make an animation or a skill, i dont know] that manager may be static so you can access it easy.

 

AIs, there are some usefull information about this, i have read long time ago something about birds/fish simulations that are based on 3 keys:

- they follow a leader

- they have a formation

- they do random moves inside that formation

or something like that

 

Edit: http://www.red3d.com/cwr/boids/

  • 0
Posted

If u would like to make relation between single npcs(each npc spawn have got different relations) and u want those relations to be saved after restart. Npc = spawn, if spawns would be indexed it would be very easy, except that there is no option i think :/

Now, when something happends = relation is changed, it would have to be saved somewhere, best option is new Sql table with spawn relations. When relation has been removed(for example when 1 npc died) it can be just removed from database very fast.

 

Now about relations, u will need to create enum of them. I dont know what relations u want to do but i think that u will need to make each class for each relation so it will be easiest way. Seems like something not really hard to do :)

  • 0
Posted

Well I'm going to start with something simple to begin with. I have an enumation object with 2 statuses. Either the NPC's are going to like each other or they're going to hate each other (two poles to start simple). Let's just say they're both merchants. If you deal with Merchant A, Merchant B is going to hate you, and vice versa: If you deal with B, A is going to hate you. For now deal 2 is going to the player additional as I will have to add things in the L2PcInstance for that. Deal 1 my focus now is how the two NPC's see each other and how to bind them uniquely.

 

I'm making the decision right now that all boss NPC's and all interactable NPC's are only going to be allowed 1 spawn. I'm blocking spawning two uniquely identified NPC's from being spawned at the same time. This way the NPC id is going to become a reliable key for looking up relations.

 

I don't want to make a global solution for the implementation but I'd like to have a generic interface with a function

( RelationInterface.CheckRelations(L2Player ) ) with classes that implement the interface based on whom you're talking with.

 

public interface RelationInterface { public Something getRelations(); }

 

Keep in mind I'm focusing on simple relations of NPC's right now, the addition of players will come next (need to take this one step at a time since it's quite ambitious).

 

Adenaman: I'll take a look at the link and give it a read over, thanks for the link.

 

  • 0
Posted

If you deal with B, A is going to hate you.

It means player got a role to play. Your system (even that simple one) can't work without player interaction.

 

For such "simple" exemple, you have to register every player. You have also to create a static link between both L2Npc (another map ?), which you have to feed by yourself (or at least finding a particular variable to make checks on, like ALL Gludio merchants hate ALL Dion merchants - in that case, the region).

 

Basically, for a global table, as simple as possible, I see something like :

npcId EnumAction parameter

The parameter being related to EnumAction. Could be a Location model (patrol), a L2PcInstance (trade), another L2Npc (follow/escort), a monster (hunt).

 

SQL table feeding a ConcurrentHashMap, which can return all stored interactions following npcId. Then the AI will act following priority of action.

 


 

About a PURE relation system, just do like the SIMS. One variable put to 100, at 0 it means hate, 100 love. Following npc template, react according other npc template.

  • 0
Posted

You can copy the Varka/Ketra system, if you add the Tryskell idea

-100 to -20 = love completly Varka

-20 to +20 = neutral

+20 to 100 = love Ketra

 

If you want any interface then it must be something like Comparable (or Comparator dont remmember now) but i dont think that you need it.

 

if it is personal player based (love Dion or love Heine) then just add a int / boolean at L2PcInstance and some help method "boolean isDionFriend()" or "int getDionHeineFriendship()"

 

if it is not, (like Hellbound levels more or less) then you need a manager that store that var, it can be singleton because there will be only one (no 2 Dion-Heine relationship)

 

Btw the link is about behavior simulations, dont think that is relevant

Guest
This topic is now closed to further replies.


  • Posts

    • Do you want stability? Lagless and bugless game? Instant support? Daily PVP? Long-Term playing? You are in the right place, time to start! Lineage2 X70 Interlude NEW Season 2025 February 8th 13:00 UTC+2 Greece/Lithuania: 13:00 UTC+2 Poland/Norway: 12:00 UTC+1 United Kingdom: 11:00 UTC+0 Brazil/Argentina: 8:00 UTC-3 Opening Bonus First 100 players after third class changing will automaticly get Premium Coin award in their inventory. All new players spawn in town of Gludio! All players start from 25 LvL with starter pack (adenas and equipment)! RATES XP: x70 | SP: x70 Party XP/ SP: x1.2 Adenas drop rate: x30 Drop Items: x25 | Spoil: x25 Drop SealStones rate: x1.2 Drop Manor rate: x1 Drop Quest rate: x5 | Reward rates: x2 (NOT FOR ALL) Raid Boss Drop: x10 Raid Boss Adenas Drop: x3 Grand Boss Drop: x1 Grand Boss Adenas Drop: x2 Information NPC Buffer 32 Buffs | 4 Debuffs PET Buffer for all classes [Except Necromancer] Scheme buffer: 3 Profiles. Buffs time: 2 Hours | Summons buffs - 60min. Global Gatekeeper. GM SHOP till weapon / armor / jewel B grade. Caradine letter 3rd part in GM Shop. Offline shop: SELL , PRIVATE CREATION , PACKAGE SALE from 35 LvL ! Mana potions: 500MP/2s. Spawn Protection: 20 Seconds. EVENTS Manager [TVT/DM]. Max Clients for one PC: 5 Rift | 4S Players: 3 Maximum inventory slots: 240 Maximum inventory slots for Dwarf: 250 Custom drop list: - Raid Boss Horus, Ember, Brakki, Nakondas: 1 VIP COIN (25%) | Korim (50%). - Raid Boss Apepi, Shacram, Atraiban, Korim: 1 BEWS (25%). - Raid Boss Glaki, Olkuth: 1-2 BEAS (40%). - Raid Boss Golkonda, Galaxia: 1-3 BEAS (60%). - Raid Boss Shyeed: 1-3 BEWS (30%) | 1-7 BEAS (40%) | 1-5 TOP LS 76 (50%). - Raid Boss Shuriel: 1-7 TOP LS 76 (50%) | 1-4 BEAS (60%). - Raid Boss Ashakiel: 1-2 BEWS (30%) | 1-7 TOP LS 76 (50%) | 1-4 BEAS (75%). - Raid Boss Antharas Priest Cloe: 1-3 BEWS (30%) | 1-7 TOP LS 76 (70%). ------------------------------------------------ - Hestia: Demon Splinters / Forgotten Blande (10%). - Ember: Arcana Mace / Draconic Bow (10%). - Galaxia: Angel Slayer / Heaven's Divider (10%). 1. Baium Lair and TOI 13/14 are PVP zones. 2. Valakas PVP zone near NPC "Klein" and inside Valakas room. 3. Antharas Lair and near "Heart Of Warding" are PVP zones. 4. Frintezza PVP zone is in first Imperial Tomb room. 5. Queen Ant PVP zone after the bridge and near Boss. 6. Zaken ship deck and rooms - PVP area. How to connect STEP BY STEP: 1. Install clear Lineage2 Interlude client 2. Download our patch, delete old system folder and add our 3. Delete, turn off anti virus or add our system folder to anti virus exceptions 4. Run l2.exe from Lineage2/system 5. Enter data on login window and enjoy the game! * You have to remove, turn off or use exceptions of antivirus because of our security protection. It is not a virus. * If you have connection issues with Windows 8 or 10, press right mouse button on l2.exe icon, press Properties, choose compatibility and unmark compatibility mode. Take your friends, clan, alliance, enemys, sharp your swords, clean your armors and meet your destiny at 2025 February 8th 13:00 UTC+2! WWW.L2BLAZE.NET INTERLUDE Empire X70 New Season: 2025 February 8th 13:00 UTC+2! WEBSITE: http://WWW.L2BLAZE.NET
    • Hello all,  i use L2jAcis 409 and i have problem with oly cycle, everyday is a different oly cycle and oly won't finish at the end of the month...almost 50 cycles and no end. I see oly matches in db but no points and after a day pass with /olympiadstat no points... Any help welcome, thank you.
    • Bump NEW USER IN TELEGRAM AND DISCORD IS "mileanum"  NEW USER IN TELEGRAM AND DISCORD IS "mileanum"  NEW USER IN TELEGRAM AND DISCORD IS "mileanum" NEW USER IN TELEGRAM AND DISCORD IS "mileanum" 
  • Topics

×
×
  • Create New...