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