Added DMFI
Added DMFI. Set Diamond Golem appearance size to large. Full compile. Updated release archive.
This commit is contained in:
19
_module/nss/re_widget3.nss
Normal file
19
_module/nss/re_widget3.nss
Normal file
@@ -0,0 +1,19 @@
|
||||
int StartingConditional()
|
||||
{
|
||||
object oPC = GetPCSpeaker();
|
||||
object oArea = GetArea(oPC);
|
||||
object oObject = GetFirstObjectInArea(oArea);
|
||||
int iCounter;
|
||||
while(GetIsObjectValid(oObject))
|
||||
{
|
||||
if(GetLocalInt(oObject, "re_BESIE"))
|
||||
{
|
||||
iCounter = iCounter + 1;
|
||||
SetLocalObject(GetModule(), "re_oAreaTool" + IntToString(iCounter), oObject);
|
||||
}
|
||||
oObject = GetNextObjectInArea(oArea);
|
||||
}
|
||||
SetLocalInt(GetModule(), "re_iAreaTool", iCounter);
|
||||
SetLocalInt(GetModule(), "re_AreaToolIndex", 1);
|
||||
return iCounter;
|
||||
}
|
Reference in New Issue
Block a user