14 lines
206 B
Plaintext
Raw Permalink Normal View History

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