14 lines
206 B
Plaintext
14 lines
206 B
Plaintext
|
#include "inc_baseitem"
|
||
|
|
||
|
int StartingConditional()
|
||
|
{
|
||
|
object oItem = GetLocalObject(GetPCSpeaker(), "MODIFY_ITEM");
|
||
|
|
||
|
if (
|
||
|
isArmor(oItem)
|
||
|
)
|
||
|
return TRUE;
|
||
|
else return FALSE;
|
||
|
|
||
|
}
|