10 lines
180 B
Plaintext
10 lines
180 B
Plaintext
|
int StartingConditional()
|
||
|
{
|
||
|
string sItemType = GetLocalString(OBJECT_SELF, "ITEM_TYPE");
|
||
|
if (sItemType == "GAUNTLETS")
|
||
|
{
|
||
|
return TRUE;
|
||
|
}
|
||
|
return FALSE;
|
||
|
}
|