WoR_PRC8/_module/nss/qst_taer_wep_don.nss
Jaysyn904 b5e28e52f4 Initial commit
Initial commit [1.18]
2025-04-03 11:49:34 -04:00

14 lines
385 B
Plaintext

void main()
{
object oPC = GetPCSpeaker();
object oDatabase = GetItemPossessedBy(oPC,"Database");
SetLocalInt(oDatabase, "PLAYERGOTTAIL", 100);
// Destroy an object (not fully effective until this script ends).
DestroyObject(GetObjectByTag("Black_Dragon_Tail"));
// Give 6000 gold to the PC.
GiveGoldToCreature(oPC, 6000);
GiveXPToCreature(oPC, 6000);
}