20 lines
610 B
Plaintext
20 lines
610 B
Plaintext
//::///////////////////////////////////////////////
|
|
//:: FileName rude_questrune
|
|
//:://////////////////////////////////////////////
|
|
//:://////////////////////////////////////////////
|
|
//:: Created By: Script Wizard
|
|
//:: Created On: 24/10/2004 10:55:40 AM
|
|
//:://////////////////////////////////////////////
|
|
void main()
|
|
{
|
|
|
|
object oPC = GetPCSpeaker();
|
|
|
|
// Give the speaker the items
|
|
CreateItemOnObject("glowingrune", GetPCSpeaker(), 1);
|
|
|
|
// Set the variable on the item for persistence
|
|
object oDatabase = GetItemPossessedBy(oPC,"Database");
|
|
SetLocalInt(oDatabase, "rude_tanz_quest", 300);
|
|
}
|