PGCC_PRC8/_module/nss/vtw_gmra.nss
Jaysyn904 e51634d39b Initial upload
Initial upload.
2024-10-09 14:17:22 -04:00

16 lines
289 B
Plaintext

#include "inc_baseitem"
int StartingConditional()
{
object oItem = GetLocalObject(GetPCSpeaker(), "MODIFY_ITEM");
if (
isGauntlet(oItem) ||
isMelee(oItem) ||
isRanged(oItem) ||
isAmmunition(oItem)
) return TRUE;
else return FALSE;
}