Help finding where NPC mood strings are

drdax

Member
Joined
Jun 11, 2015
Messages
133
for the example below, where do I find all the possible command types for npc_sitting_chair for my screenplays?

self:setMoodString(pNpc, "npc_sitting_chair")

I have searched server side and TREs... did I overlook where they are at?

Thanks!!

edit: here is what I found searching the code base so far:

self:setMoodString(pNpc, "npc_sitting_ground")
self:setMoodString(pNpc, "npc_sitting_table_eating")
self:setMoodString(pNpc, "npc_standing_drinking")
self:setMoodString(pNpc, "npc_sitting_chair")
 

Circa

New Member
Joined
Jan 22, 2018
Messages
1
Whereabouts are these located for the npc? What file or string?
I was curious myself where you locate these for the npc.
 

Aeryna

Moderator
Staff member
Moderator
Joined
Oct 10, 2017
Messages
359
I got some and i hope they help you:

neutral (makes a factional npc neutral white)
happy
entertained
conversation
sad
npc_accusing
npc_angry
npc_consoling
npc_dead_01
npc_dead_02
npc_dead_03
npc_imperial
npc_sad
npc_sitting_chair
npc_sitting_ground
npc_sitting_table
npc_sitting_table_eating
npc_standing_drinking
npc_use_console_ag
npc_use_terminal_high
npc_use_terminal_low
 
Top Bottom