HiddenTradition_PRC8/_module/nss/at_dwarfcarques9.nss
2024-06-20 15:47:42 -04:00

15 lines
355 B
Plaintext

#include "nw_i0_plot"
void main()
{
// Remove items from the player's inventory
object oItemToTake;
oItemToTake = GetItemPossessedBy(GetPCSpeaker(), "it_NorthlandChiefsHead");
if(GetIsObjectValid(oItemToTake) != 0)
DestroyObject(oItemToTake);
// Set the variables
SetPLocalInt(GetPCSpeaker(), "DwarfCaravanQuest", 9);
}