19 lines
546 B
Plaintext
19 lines
546 B
Plaintext
|
//::///////////////////////////////////////////////
|
||
|
//:: Mephistopheles, Player Chooses Replace (Action Script)
|
||
|
//:: H9a_Meph_Replace.nss
|
||
|
//:: Copyright (c) 2001 Bioware Corp.
|
||
|
//:://////////////////////////////////////////////
|
||
|
/*
|
||
|
Flag the player as having chosen to Replace
|
||
|
Mephistopheles.
|
||
|
*/
|
||
|
//:://////////////////////////////////////////////
|
||
|
//:: Created By: Rob Bartel
|
||
|
//:: Created On: September 10, 2003
|
||
|
//:://////////////////////////////////////////////
|
||
|
|
||
|
void main()
|
||
|
{
|
||
|
SetLocalString(GetModule(), "sPCEndChoice", "Replace");
|
||
|
}
|