25 lines
771 B
Plaintext
25 lines
771 B
Plaintext
//::///////////////////////////////////////////////
|
|
//:: FileName rude_alora002
|
|
//:://////////////////////////////////////////////
|
|
//:://////////////////////////////////////////////
|
|
//:: Created By: Script Wizard
|
|
//:: Created On: 14/10/2004 1:29:24 PM
|
|
//:://////////////////////////////////////////////
|
|
#include "nw_i0_tool"
|
|
|
|
void main()
|
|
{
|
|
object oPC = GetPCSpeaker();
|
|
|
|
// Give the speaker some XP
|
|
RewardPartyXP(2000, GetPCSpeaker());
|
|
|
|
// Give the speaker the items
|
|
CreateItemOnObject("x0_it_mmedmisc06", GetPCSpeaker(), 1);
|
|
CreateItemOnObject("instuctionsfroma", GetPCSpeaker(), 1);
|
|
|
|
// Set the variables on the item for persistence
|
|
object oDatabase = GetItemPossessedBy(oPC,"Database");
|
|
SetLocalInt(oDatabase, "rude_alorasub", 200);
|
|
}
|