Aschbourne_PRC8/_module/nss/ww_inc_on_unacq.nss

17 lines
457 B
Plaintext
Raw Permalink Normal View History

2024-06-14 10:48:20 -04:00
void WWunacq(object oPC, object oItem)
{
string sDTag=GetTag(oItem);
object oPC = GetNearestCreature(CREATURE_TYPE_PLAYER_CHAR, PLAYER_CHAR_IS_PC, oItem);
if(sDTag=="controlshapetool")
{
CreateItemOnObject("controlshapetool",oPC);
DestroyObject(oItem);
}
if(sDTag=="wolfformtool")
{
CreateItemOnObject("wolfformtool",oPC);
DestroyObject(oItem);
}
return;
}