12 lines
201 B
Plaintext
12 lines
201 B
Plaintext
|
int StartingConditional()
|
||
|
{
|
||
|
string sItemType = GetLocalString(OBJECT_SELF, "ITEM_TYPE");
|
||
|
if (sItemType == "ARROW" || sItemType == "BOLT")
|
||
|
{
|
||
|
return TRUE;
|
||
|
}
|
||
|
return FALSE;
|
||
|
}
|
||
|
|
||
|
|