generated from Jaysyn/ModuleTemplate
22 lines
798 B
Plaintext
22 lines
798 B
Plaintext
/* -=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
|
|
Forsettii's Quest Builder System.
|
|
Version 1.0
|
|
Created for Layonara Online
|
|
Forsettii Forsettii@yahoo.com
|
|
April 7, 2004
|
|
Sets variable #9 (Solo)
|
|
Variables: Quest_Name - Same as Journal Entry
|
|
-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-= */
|
|
void main()
|
|
{
|
|
|
|
string sName = GetLocalString(OBJECT_SELF, "quest_name");
|
|
object oPC = GetPCSpeaker();
|
|
|
|
// Remove PC from Party since this is an individual Quest
|
|
RemoveFromParty(oPC);
|
|
// Set the variables
|
|
SetLocalInt(oPC, sName, 9);
|
|
AddJournalQuestEntry(sName, 9, oPC, FALSE, FALSE, FALSE);
|
|
}
|