WoR_PRC8/_module/nss/qst_taer_wep_don.nss

14 lines
385 B
Plaintext
Raw Normal View History

2025-04-03 11:49:34 -04:00
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);
}