I have found that I can have an NPC perform an INTERACTION with the following code.
can i use run_interaction to run interactions that require a scope:target, such as contract_assistance_interaction and blackmail_interaction?
I tried the following but got an error that target was not found.
Please let me know if you have any information.
thank you.
Code:
run_interaction = {
interaction = interaction_name_here
actor = CHAR
recipient = CHAR
secondary_actor = CHAR
secondary_recipient = CHAR
execute_threshold = accept/maybe/decline
}
can i use run_interaction to run interactions that require a scope:target, such as contract_assistance_interaction and blackmail_interaction?
I tried the following but got an error that target was not found.
Code:
something = { save_scope_as = target }
run_interaction = { ... }
Please let me know if you have any information.
thank you.