11 lines
279 B
Plaintext
11 lines
279 B
Plaintext
int StartingConditional()
|
|
{
|
|
string sItemType = GetLocalString(OBJECT_SELF, "ITEM_TYPE");
|
|
if (sItemType == "HEAVY_CROSSBOW" || sItemType == "LONGBOW" ||
|
|
sItemType == "LIGHT_CROSSBOW" || sItemType == "SHORTBOW")
|
|
{
|
|
return TRUE;
|
|
}
|
|
return FALSE;
|
|
}
|