generated from Jaysyn/ModuleTemplate
13 lines
442 B
Plaintext
13 lines
442 B
Plaintext
int StartingConditional()
|
|
{
|
|
int iResult;
|
|
object oWidget = GetLocalObject(OBJECT_SELF, "DM_SM_oWidget");
|
|
object oPlaceable = GetLocalObject(OBJECT_SELF, "DM_SM_oPlaceable4");
|
|
|
|
string sPropList = GetLocalString(oWidget, "sPropList");
|
|
int iHaveThisProp = TestStringAgainstPattern("**." + ObjectToString(oPlaceable) + ".**", sPropList);
|
|
|
|
iResult = (!iHaveThisProp) && (oPlaceable != OBJECT_INVALID);
|
|
return iResult;
|
|
}
|