generated from Jaysyn/ModuleTemplate
12 lines
360 B
Plaintext
12 lines
360 B
Plaintext
int StartingConditional()
|
|
{
|
|
int iResult;
|
|
object oWidget = GetLocalObject(OBJECT_SELF, "DM_SM_oWidget");
|
|
object oPlaceable = GetLocalObject(OBJECT_SELF, "DM_SM_oPlaceable1");
|
|
|
|
int iHaveThisProp = GetLocalInt(oWidget, "iProp" + ObjectToString(oPlaceable));
|
|
|
|
iResult = (!iHaveThisProp) && (oPlaceable != OBJECT_INVALID);
|
|
return iResult;
|
|
}
|