Amon_PRC8/_module/nss/give_kboots.nss

23 lines
622 B
Plaintext
Raw Permalink Normal View History

2025-04-03 19:00:46 -04:00
//::///////////////////////////////////////////////
//:: 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);
}