View Single Post
  #2  
Old 02-20-2015, 06:46 AM
dagulus2
Hill Giant
 
Join Date: Feb 2013
Posts: 220
Default

Ok, so in the table "npc_faction" create a new faction group for each of your two NPCs. You will need to give both of them a 'primaryfaction' (322 and 444). Leave 'ignore_primary_assist' at 0.

Then in the table "npc_faction_entries" you need two entries for each of the new 'npc_faction' records you have just made.

'Npc_faction_id' = the 'id' of the entries in "npc_faction". 'faction_id' is the valeu you want manipulated, 'value' is how much you want it to change. You can leave 'npc_value' and 'temp' at 0 for now.

So your "npc_faction_id" should look something like this:
Code:
npc_faction_id   faction value 
999991            322       -30
999991            444       +30
999992            322       +30
999993            444       -30
Finally, in "npc_types" assign the npcs to the "npc_faction" you created by putting the 'id' number in the 'npc_faction_id' field.
Reply With Quote