19 lines
607 B
Plaintext
19 lines
607 B
Plaintext
//::///////////////////////////////////////////////
|
|
//:: FileName rude_tanzalora
|
|
//:://////////////////////////////////////////////
|
|
//:://////////////////////////////////////////////
|
|
//:: Created By: Script Wizard
|
|
//:: Created On: 21/10/2004 9:34:19 PM
|
|
//:://////////////////////////////////////////////
|
|
void main()
|
|
{
|
|
object oPC = GetPCSpeaker();
|
|
|
|
// Give the speaker the items
|
|
CreateItemOnObject("letterfromtanzan", GetPCSpeaker(), 1);
|
|
|
|
//Set variable on player item for persistence
|
|
object oDatabase = GetItemPossessedBy(oPC,"Database");
|
|
SetLocalInt(oDatabase, "rude_tanz_quest", 100);
|
|
}
|