PGCC_PRC8/_module/nss/vtw_mrt.nss

15 lines
258 B
Plaintext
Raw Normal View History

2024-10-09 14:17:22 -04:00
#include "inc_baseitem"
int StartingConditional()
{
object oItem = GetLocalObject(GetPCSpeaker(), "MODIFY_ITEM");
if (
isMelee(oItem) ||
isRanged(oItem) ||
isThrowing(oItem)
) return TRUE;
else return FALSE;
}