Shargast_PRC8/_module/Chapter 2/nss/recall_stone_act.nss
Jaysyn904 66a0a3e043 Initial commit
Initial commit.
2024-08-03 14:13:18 -04:00

20 lines
500 B
Plaintext

#include "nw_i0_plot"
void main()
{
//IsRecall is defined in nw_i0_plot
IsRecall();
object oItem = GetItemActivated();
object oPC = GetItemActivator();
string sItemTag = GetTag(oItem);
ExecuteScript(GetTag(GetItemActivated()), OBJECT_SELF);
if (GetTag(GetItemActivated()) == "ModuleReloader")
{
StartNewModule("Shargast - Ch 2 [PRC8-CEP2]");
return;
}
if (sItemTag == "DyeKit") AssignCommand(oPC, ActionStartConversation(oPC, "dye_dyekit", TRUE));
}