generated from Jaysyn/ModuleTemplate
10 lines
429 B
Plaintext
10 lines
429 B
Plaintext
//******************************************************************************
|
|
// This script is attached to the conversation node that sets the PC warning
|
|
// variable. Attach this to onConversation End or a specific node.
|
|
// Created By: Jeremiah Teague
|
|
//******************************************************************************
|
|
void main()
|
|
{
|
|
SetLocalInt(GetLocalObject(GetPCSpeaker(), "ATTACKER"), "PC_WARNED", TRUE);
|
|
}
|