LoD_PRC8/_module/nss/ka_weapon_use.nss
Jaysyn904 94990edc60 Initial Upload
Initial Upload
2023-09-21 21:20:34 -04:00

26 lines
658 B
Plaintext

//::///////////////////////////////////////////////
//:: ka_weapon_use.nss
//:: Copyright (c) 2004 Karl Adamaitis
//:://////////////////////////////////////////////
/*
use the placeable weapon object - start the
associated conversation file for commanding.
*/
//:://////////////////////////////////////////////
//:: Created By: Karl Adamaitis
//:: Created On: Aug 30, 2002
//:://////////////////////////////////////////////
void main()
{
object oPC = GetLastUsedBy();
if (!IsInConversation(OBJECT_SELF) &&
(GetIsPC(oPC) || GetIsDM(oPC) || GetIsDMPossessed(oPC))
) {
ActionStartConversation(oPC, "", TRUE);
}
}