Page 1 of 1

MH-FNB-LiandriTowers

Posted: Thu Feb 08, 2024 8:29 am
by Buggie
Conversion for MonsterHunt this map:
https://unrealarchive.org/maps/unreal-t ... 1223f.html
Shot00962.jpg
Shot00963.jpg
Shot00964.jpg
Shot00965.jpg
Shot00966.jpg
Shot00967.jpg
Shot00968.jpg
Shot00969.jpg
Shot00970.jpg
MH-FNB-LiandriTowersV0.7z
(21.78 MiB) Downloaded 28 times

Re: MH-FNB-LiandriTowers

Posted: Wed Mar 27, 2024 2:23 pm
by Barbie
Actor "MapFix" is visible.
class'MapFix '

Code: Select all

//=============================================================================
// MapFix.
//=============================================================================
class MapFix expands Actor;

function MapFix() {
	local Inventory Inv;
	local int FixedInventoryAlwaysRelevant;

	foreach AllActors(class'Inventory', Inv) {
		if (!Inv.bAlwaysRelevant) continue;
		Inv.bAlwaysRelevant = false;
		FixedInventoryAlwaysRelevant++;
	}
	Log("FixedInventoryAlwaysRelevant:" @ FixedInventoryAlwaysRelevant);
}

auto state Idle {
Begin:
	MapFix();
}