16 lines
289 B
Plaintext
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;
|
|
|
|
}
|