23 lines
622 B
Plaintext
23 lines
622 B
Plaintext
//::///////////////////////////////////////////////
|
|
//:: FileName give_kboots
|
|
//:://////////////////////////////////////////////
|
|
//:://////////////////////////////////////////////
|
|
//:: Created By: Script Wizard
|
|
//:: Created On: 9/10/2005 10:07:51 PM
|
|
//:://////////////////////////////////////////////
|
|
void main()
|
|
{
|
|
// Give the speaker some gold
|
|
GiveGoldToCreature(GetPCSpeaker(), 10000);
|
|
|
|
// Give the speaker some XP
|
|
GiveXPToCreature(GetPCSpeaker(), 1000);
|
|
|
|
// Give the speaker the items
|
|
CreateItemOnObject("kurbisboots", GetPCSpeaker(), 1);
|
|
|
|
// Set the variables
|
|
SetLocalInt(GetPCSpeaker(), "KurbisBoots", 1);
|
|
|
|
}
|