Aschbourne_PRC8/_module/nss/kpb_on_activate.nss

21 lines
494 B
Plaintext
Raw Normal View History

2024-06-14 10:48:20 -04:00
void main()
{
object oItem=GetItemActivated();
object oUser=GetItemActivator();
location lLoc=GetItemActivatedTargetLocation();
string sTag=GetTag(oItem);
if(sTag=="kpbwand")
{
if (GetIsDM(oUser) == TRUE)
{
AssignCommand(oUser, ActionStartConversation(oUser, "kpb_wand", TRUE));
}
else
{
DestroyObject(oItem);
SendMessageToPC(oUser, "I am not an immortal, and I cannot use that item!");
}
}
}