Amon_PRC8/_module/nss/give_kboots.nss
Jaysyn904 c5cffc37af Initial Commit
Initial Commit [v1.01]
2025-04-03 19:00:46 -04:00

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);
}