generated from Jaysyn/ModuleTemplate
15 lines
428 B
Plaintext
15 lines
428 B
Plaintext
/////////////////////////////////////
|
|
// Dragon's Edge
|
|
// by Charly Carlos
|
|
/////////////////////////////////////
|
|
// Sets the variable to 13 meaning the player has spoken to Pipito about his
|
|
// niece's mother which was accused of as a succubus years ago.
|
|
/////////////////////////////////////
|
|
void main()
|
|
{
|
|
if (GetLocalInt(GetModule(), "nSuzailQuest")< 13)
|
|
{
|
|
SetLocalInt(GetModule(), "nSuzailQuest", 13);
|
|
}
|
|
}
|