Initial upload
Initial upload
This commit is contained in:
13
_module/nss/sfcs_armour_sc.nss
Normal file
13
_module/nss/sfcs_armour_sc.nss
Normal file
@@ -0,0 +1,13 @@
|
||||
int StartingConditional()
|
||||
{
|
||||
string sItemType = GetLocalString(OBJECT_SELF, "ITEM_TYPE");
|
||||
if (sItemType == "CLOTH" || sItemType == "FULL_PLATE" ||
|
||||
sItemType == "LEATHER" || sItemType == "SHIELD" ||
|
||||
sItemType == "RING" || sItemType == "BRACERS" ||
|
||||
sItemType == "AMULET" || sItemType == "CLOAK" ||
|
||||
sItemType == "BOOTS")
|
||||
{
|
||||
return TRUE;
|
||||
}
|
||||
return FALSE;
|
||||
}
|
Reference in New Issue
Block a user