13 lines
202 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 (
isMelee(oItem)
) return TRUE;
else return FALSE;
}