9 lines
181 B
Plaintext
9 lines
181 B
Plaintext
|
// An "Actions Taken" script to set a quest variable on the PC
|
||
|
// in an NPC conversation
|
||
|
void main()
|
||
|
{
|
||
|
object oPC = GetPCSpeaker();
|
||
|
SetLocalInt( oPC, "DEV_TALKTIMES4", 100);
|
||
|
}
|
||
|
|