There is no spoon

User:OlympusMons

From Unreal Wiki, The Unreal Engine Documentation Site
Revision as of 07:51, 19 December 2008 by OlympusMons (Talk | contribs)

Jump to: navigation, search

Who am I

Well Im OlympusMons thats who :P Ive done a fair bit over the years regarding making games and such. Unfortunally none of it has really been completed, mainly because of a lack of organisation on my part. Ive been an active member on the unreal wiki for some time and am glad to be contributing something back now that my skills are better.
Olympus Mons


Work Ive done

Graphics / Modelling
http://www.3dmpg.com/ is based in Perth, Australia.
Mods
Mutators
MotionBlurPC
Newtators Mutator pack for UT3
UC2004
I am inactive atm but I spent alot of time with a mod called UC2004 [[1]] which is a remake of Unreal Championship 2 for PC using the UT2004 engine.
UnrealWiki Contributions
UT3
UT2004


Work Im doing

Mods
Project: Triggerman
Gametypes
Attrition Gametype for UT3
Mutators
[ Mutatoes Mutator pack for UT3]


Skills

Modelling

Ive been modelling in 3dsmax since version 2.5, developed a small menu plugin called Quadmx7 which isnt publicly released. More recently this plugin has been upgraded for 3dsmax 9, now called QMX9.

Graphics

I learnt the Adobe Suite while doing a few TAFE courses, Photoshop and Illustrator are my strong points, I can use Premiere and Indesign also. Ive learnt alot more since doing these courses and am always looking to expand my skills. The Visual Arts and Technology course I did covered alot of stuff though not related directly to technology like design fundamentals, drawing foundations and design visualisation. There was some art critique involved but I really didnt like that as I prefer to do critiques on stuff where my knowledge is best, namely the interactive entertainment industry.

UnrealScript

For the last few years and I dabble in unreal scripting, Im really happy at where this is going and thanks to you guys Im 10x better than when I started. UT3 is proving to be really good for me and having started with UT2003 I think Ive come along way in that time, its good to finally get into alittle UE3 stuff. Its great to finally be able to see and use the upgrades to Unreal Script.


Rants

OlympusMons/Rants
(21/04/2007) Platforms and crossing the border!
(27/10/2006) Epic, UE3, UT2007 and the future...
(11/09/2006) Total Conversion Woes


Conclusion

My knowledge of games and game design is quite large but theres always more to learn. Thats what really attracted me to the wiki, this is a great place for people of all skills and skill levels to come, learn and contribute. I hope to add a little to the wiki myself and as time goes by, I hope to improve on my skills as well as help others improve on thiers.
Anyways you've probably heard enough by now.
Off you go do some modding! ;)


Contact Me

Forum

MonsOlympus on Beyondunreal Forums and Epic Games Forums

IRC

MonsOlympus on EnterTheGame and Quakenet

Email

(only via the Unreal Wiki's E-mail user feature)


Suggested Pages

Unreal Engine 3 Bug Reports

Updated:

Bug warning, red warning block links to bugID. These could be on the page with the topic so people know what to watch for, shows description. Special Category?
Dont really like the idea should perhaps hyperlink to patch with the version number in there.

UE3:Bug Reports

  • Posting structure
    • unique number (identifier) for this bug.
    • image if required
    • what is happening (specifics on what the problem is)
      • Build number (Game/Version/Patch)
      • Error message
      • Log
    • instructions on reproduction

once a bug is fixed it could be added to a fixed list or removed and details on patch which removes bug.



There are other things like the projectiles spawning from the players head, this might be considered purely graphical since the projectile would still hit at the same location if the spawn location was moved.

Im not 100% sure if UT3 bugs should be categorized or not since its debatable on what they affect, it might be best to just include them in one long list.

Custom Class

Custom UT3-specific classes


DbMutator GameX-Flow.gif

//===================================================
//	Class: UTData_FactoryReplacer
//	Creation date: 11/08/2008 15:39
//	Last updated: 16/12/2008 00:26
//	Contributors: OlympusMons(/d!b\)
//---------------------------------------------------
//===================================================
class UTData_FactoryReplacer extends UTData
	Config(FactoryReplacer);
 
/** Factory Group */
enum FactoryType{
	FT_None,
	FT_Health,
	FT_Ammo,
	FT_Armour,
	FT_Powerup,
	FT_SPowerup,
	FT_Weapon,
		FT_SWeapon,
	FT_Vehicle
};
 
/** Factories to replace on a Per Map basis - Get from global when not found*/
struct FactoryReplacer{
	var FactoryType FactoryGroup;
	var name ReplacedFactory;
	var name ReplacedWithFactory;					//TODO: ReplaceWith=None
	var string ReplacedWithFactoryPath;
	//var name NextFactory, LastFactory;
};var config array<FactoryReplacer> ReplacerFactories;
 
/** Global Factories to replace */
struct MapFactoryReplacerSet{
	var string Map;
	var array<FactoryReplace> FactoriesToReplace;	//TODO: Linked list of struct?
};var config array<MapFactoryReplacerSet> PM_FactorySet;
 
var bool bCheckMapFactoryList;				/// Map is not found on the list, create a new entry in the ini using the defaults.
var config bool bUsePerMapSettings;			/// This mutator uses Per Map Setting from the FactoryReplacer
//---------------------------------------------------
 
function int Length(){
	if(ReplacerFactories.Length > 0)
		return(ReplacerFactories.Length);
	else return(PerMapFactorySet.Length);
}
 
//TODO: Function which outs ReplacerFactories to ReplaceWith() in GameExpansion
 
//TODO: Parse commandline options for this?
function SetupPerMapData(int MapIndex, out optional string Options){
	local int iFactory;
 
	iFactory = MapFactorySettings[iMap].FactoriesToReplace.Find('ReplacedFactory', Factory.Name);
	if(iFactory == INDEX_NONE)	{
		//Moves Per Map Settings to the Global Array for use.
		ReplacerFactories[iFactory].ReplacedFactory = PM_FactorySet[iMap].FactoriesToReplace[iFactory].ReplacedFactory;
		ReplacerFactories[iFactory].ReplacedWithFactory = PM_FactorySet[iMap].FactoriesToReplace[iFactory].ReplacedWithFactory;
		ReplacerFactories[iFactory].ReplacedWithFactoryPath = PM_FactorySet[iMap].FactoriesToReplace[iFactory].ReplacedWithFactoryPath;
	}
	SaveConfig();
}
 
/** Adds Map Name only entry if none is found! */
function AddDummyMapEntry(string CurrentMap){
	local MapFactoryReplacementSettings NewPerMapFactorySet;
 
	NewPM_FactorySet.Map = CurrentMap;
	PM_FactorySet.AddItem(NewPerMapFactorySet);
//	bCheckMapFactoryList = True;
 
	SaveConfig();
}
 
function AddPerMapEntry(int iMap, PickupFactory Factory){
	local FactoryReplace NewFactoriesToReplace;
 
	if(Factory == None)		return;
 
	//Factory is not in the list, add it!
	`logd("FactoryList: "$Factory.Name$" added to Per Map Factory List!",,'FactoryReplacer');
	NewFactoriesToReplace.ReplacedFactory = Factory.Name;
	PM_FactorySet[iMap].FactoriesToReplace.AddItem(NewFactoriesToReplace);
 
	SaveConfig();
}
 
function UpdatePerMapEntry(int iMap, PickupFactory Factory){
	local int iFactory;
 
	if(Factory == None)		return;
 
	iFactory = PM_FactorySet[iMap].FactoriesToReplace.Find('ReplacedFactory', Factory.Name);
	if(iFactory == INDEX_NONE)	{
		//Factory is in the list... Change it? :S
		`logd("FactoryList: "$Factory.Name$" Changed!",,'FactoryReplacer');
		PM_FactorySet[iMap].FactoriesToReplace[iFactory].ReplacedFactory = Factory.Name;
	}
	SaveConfig();
}


//===================================================
//	Class: UTGame_Data
//	Creation date: 11/12/2008 21:03
//	Last updated: 13/12/2008 19:22
//	Contributors: OlympusMons(/d!b\)
//---------------------------------------------------
//Cutdown Version
//===================================================
class UTGame_Data extends UTData;
 
//---------------------------------------------------
var string CurrentMap;				/// Name of the Loaded Map
 
/** Factory Replacement/Per Map Factory Replacement */
var FactoryReplacer_Data FactoryReplacer;
var class<FactoryReplacer_Data> FactoryReplacerClass< SEMI >
 
function InitMutator(string Options, out string ErrorMessage)
{
	local int iMap;
 
	CurrentMap = WorldInfo.GetMapName(true);
 
	if(FactoryReplacerClass != None){
		FactoryReplacer = new(self) FactoryReplacerClass< SEMI >
		`logd("Factor Replacer: "$FactoryReplacer,,'UTGame_Data');
	}
 
	if(FactoryReplacer != None)
	{
		if(FactoryReplacer.bUsePerMapSettings)
		{
			`logd("Using Per Map Factory Replacement Settings!",,'GameExpansion');
			//TODO: Parse commandline options for this?
			iMap = FactoryReplacer.PerMapFactorySettings.Find('Map', CurrentMap);
			if(iMap != INDEX_NONE){
				FactoryReplacer.SetupPerMapData(iMap);
			}else{
				`logd("Using Global Factory Replacement Settings!",,'GameExpansion');
				FactoryReplacer.AddDummyMapEntry(CurrentMap);
			}
		}
	}
 
	//FactoryReplacer.ReplacementFactories.FactoriesToReplace
 
}
 
//TODO: Support for any factory, vehicles, weapons, etc
function FactoryReplacement(NavigationPoint Other){
	local int iMap, iFactory;
 
	if(FactoryReplacer == None)		return;
 
	for(j = 0;j < FactoryReplacer.Length();j++)	{
		if(Other.IsA(FactoryReplacer.ReplacerFactories[j].ReplacedFactory) &&
			!Other.IsA(FactoryReplacer.ReplacerFactories[j].ReplacedWithFactory))
		{
			ReplaceWith(Other, FactoryReplacer.ReplacerFactories[j].ReplacedWithFactoryPath);
			`logd("Factory: "$Other$" Replaced With: "$FactoryReplacer.ReplacerFactories[j].ReplacedWithFactoryPath,,'FactoryReplacer');
			return false;		//NewFactory.InitializePickup();
		}
//		else if(ReplacementFactories[j].ReplacedWithFactory ~= "Remove"){
//			Factory.Deactivate();			//Deactivate Factory!
//		}
	}
 
	iMap = FactoryReplacer.PM_FactorySet.Find('Map', CurrentMap);
	if(iMap != INDEX_NONE)	{
		//TODO: Will add entry for every factory in the map, do not want!
		iFactory = FactoryReplacer.PM_FactorySet[iMap].FactoriesToReplace.Find('ReplacedFactory', PickupFactory(Other).Name);
 
		if(iFactory == INDEX_NONE)	{
			FactoryReplacer.AddPerMapEntry(iMap, PickupFactory(Other));
		}
		else if(iFactory != INDEX_NONE)	{
			FactoryReplacer.UpdatePerMapEntry(iMap, PickupFactory(Other));
		}
	}
}


//===================================================
//	Class: UTWeapon_Info
//	Creation date: 13/12/2008 18:00
//	Last updated: 13/12/2008 18:00
//	Contributors: OlympusMons(/d!b\)
//---------------------------------------------------
//This class gets attached to the weapon and makes adjustments.
//===================================================
class UTWeapon_Info extends UTInfo;
 
/** Weapon class so we can check owner is right type and set vars */
var UTWeapon Weap;
 
/** Make sure we have an owner and its the right type before moving on */
simulated event PostBeginPlay(){
	if(Owner == None) Destroy();
 
	Weap = UTWeapon(Owner);
	if(Weap == None) return;
}
 
defaultproperties{
	RemoteRole=ROLE_SimulatedProxy
	bAlwaysRelevant=True
}


//===================================================
//	Class: UCSpecies
//	Creation date: 08/12/2008 15:29
//	Last updated: 11/12/2008 00:49
//	Contributors: OlympusMons(/d!b\)
//---------------------------------------------------
//===================================================
class UCSpecies extends UTInfo
	config(UCSpecies);
 
//UTFamilyInfo_Human
//--Faction="Necris"        //UTFamilyInfo_Necris
//--Faction="Ironguard"     //UTFamilyInfo_Ironguard
//--Faction="TwinSouls"     //UTFamilyInfo_TwinSouls
//Faction="Krall"         //UTFamilyInfo_Krall
//Faction="Liandri"         //UTFamilyInfo_Liandri
enum KnownFactions{
	Ironguard,		//Human
	Necris,			//Human (Black Legion) (Phayder Corporation)
	TwinSouls,		//Human
	Krall,
	Liandri,		//Robotic (Liandri Mining Corporation)
	COG,			//Human
	Locust,
	Egyptian,
	Nakhti,
	Rodent,
	Nali,
	Skaarj,
	Genmokai,
	Juggernaut,		//Human / ExoSkeleton (Geneboosted)
	Corrupt,		//Cybernetic
	Axon,			//Vehicles / first Mk3 Armour
	ThunderCrash,	//Malcolm, Othello, etc
	Mercenary,		//Blood Reavers,
	Hellions,		//Punks
	Nightmare		//Necris experiment?
}
 
enum KnownSpecies{
	Human,			//Ironguard, TwinSouls?,
	ClonedHuman,	//juggernauts?
	Undead,
	Robotic,		//Corrupt, Liandri, Axon?
	Alien
}
 
struct Species{
	var string SpeciesName;
	var KnownSpecies Species;
	var KnownFactions Faction;
	var array< class<UTFamilyInfo> > FamilyInfo;
};var array<Species> SpeciesTypes;
 
struct SpeciesStats{
	var SpeciesTypes Faction;
//	var class<UTFamilyInfo> Species;
	var class<UCSpecies_Ability> AbilityList;
	var class<UCAbility_Armour> ArmourClass< SEMI >
	var float	AC,			//AirControl
//				Species_DAC,		//DefaultAirControl
				GS,			//GroundSpeed
				WS,			//WaterSpeed
				JZ,			//JumpZ
				MJB,		//MultiJumpBoost
//				RDS,		//ReceivedDamageScaling
//				DS,			//DamageScaling
				AR,			//AccelRate
//				WP,			//WalkingPct
//				CP,			//CrouchedPct
				DS,			//DodgeSpeed
				DSZ;		//DodgeSpeedZ
};var config array<SpeciesStats> SS;
 
//	local class<UCSpeciesArmourInfo> ArmourClass;
//		local class<UTFamilyInfo> FamilyInfoClass;
//		class<UCSpecies_AdrenMove> AdrenMovesClass;
 
var bool bUseSpeciesArmour;
 
static function SetSpecies(class<UTFamilyInfo> FamilyInfo, UTPawn P)
{
	local int i,j;
 
	if(FamilyInfo == None)
		return;
 
	for(i = 0; i < SS.length; i++)
	{
		if(SS[i].Species == FamilyInfo)
		{
			P.AirControl = P.Default.AirControl * SS[i].Species_AC;
			P.DefaultAirControl = P.Default.DefaultAirControl * SS[i].Species_AC;
			P.GroundSpeed = P.Default.GroundSpeed * SS[i].Species_GS;
			P.WaterSpeed = P.Default.WaterSpeed * SS[i].Species_WS;
			P.JumpZ = P.Default.JumpZ * SS[i].Species_JZ;
			P.MultiJumpBoost = P.Default.MultiJumpBoost * SS[i].Species_MJB;
			P.AccelRate = P.Default.AccelRate * SS[i].Species_AR;
//			P.WalkingPct = P.Default.WalkingPct * Species_WP;
//			P.CrouchedPct = P.Default.CrouchedPct * Species_CP;
			P.DodgeSpeed = P.Default.DodgeSpeed * SS[i].Species_DS;
			P.DodgeSpeedZ = P.Default.DodgeSpeedZ * SS[i].Species_DSZ;
 
			`logd("Species: "$SS[i].Species,,'SpeciesStats');
 			`logd("AirControl: "$P.AirControl$" DefaultAirControl: "$P.DefaultAirControl,,'SpeciesStats');
 			`logd("GroundSpeed: "$P.GroundSpeed$" JumpZ: "$P.JumpZ$" MultiJumpBoost: "$P.MultiJumpBoost,,'SpeciesStats');
 			`logd("DodgeSpeed: "$P.DodgeSpeed$" DodgeSpeedZ: "$P.DodgeSpeedZ,,'SpeciesStats');
 //   MaxFallSpeed=1250.000000
//   MultiJumpRemaining=1
//   MaxMultiJump=1
//   bStopOnDoubleLanding=True
//   UnderWaterTime=20.000000
			if(SS[i].Species == class'UTFamilyInfo_Krall_Male')
				 P.bStopOnDoubleLanding=False;
 
			//Check INFO's for how to run from there
			//Info.Controller
 
			for(j = 0; j < SS[i].SpeciesFamilyInfo.length; j++)
			{
				SS[i].SpeciesFamilyInfo[j]
			}
		}
	}
}
 
defaultproperties
{
	SpeciesTypes(0)=(Ironguard, (SpeciesFamilyInfo(0)=class'UTFamilyInfo_Ironguard_Female',SpeciesFamilyInfo(1)=class'UTFamilyInfo_Ironguard_Male'))
	SpeciesTypes(1)=(Necris, (SpeciesFamilyInfo(0)=class'UTFamilyInfo_Necris_Female',SpeciesFamilyInfo(1)=class'UTFamilyInfo_Necris_Male'))
	SpeciesTypes(3)=(TwinSouls, (SpeciesFamilyInfo(0)=class'UTFamilyInfo_TwinSouls_Female',SpeciesFamilyInfo(1)=class'UTFamilyInfo_TwinSouls_Male'))
	SpeciesTypes(3)=(Krall, (SpeciesFamilyInfo(0)=class'UTFamilyInfo_Krall_Male'))
	SpeciesTypes(3)=(Liandri, (SpeciesFamilyInfo(0)=class'UTFamilyInfo_Liandri_Male'))
 
 
//ArmourClass = class'Mutatoes.UCSpecies_Necris_ArmourInfo'
	SS(0)=(Species=class'UTFamilyInfo_Ironguard_Female',AbilityList=None,ArmourClass=class'Mutatoes.UCSpecies_Ironguard_ArmourInfo',AC=1.0,GS=1.0,WS=1.0,JZ=1.0,MJB=1.0,AR=1.0,DS=1.1,DSZ=1.0)
	SS(1)=(Species=class'UTFamilyInfo_Ironguard_Male',AbilityList=None,ArmourClass=class'Mutatoes.UCSpecies_Ironguard_ArmourInfo',AC=1.0,GS=1.0,WS=1.0,JZ=1.0,MJB=1.0,AR=1.0,DS=1.1,DSZ=1.0)
	SS(2)=(Species=class'UTFamilyInfo_Necris_Female',AbilityList=None,ArmourClass=class'Mutatoes.UCSpecies_Necris_ArmourInfo',AC=0.9,GS=1.1,WS=0.8,JZ=1.1,MJB=0.95,AR=1.0,DS=0.9,DSZ=1.1)
	SS(3)=(Species=class'UTFamilyInfo_Necris_Male',AbilityList=None,ArmourClass=class'Mutatoes.UCSpecies_Necris_ArmourInfo',AC=0.9,GS=1.1,WS=0.8,JZ=1.1,MJB=0.95,AR=1.0,DS=0.9,DSZ=1.1)
	SS(4)=(Species=class'UTFamilyInfo_TwinSouls_Female',AbilityList=None,ArmourClass=class'Mutatoes.UCSpecies_TwinSouls_ArmourInfo',AC=1.1,GS=1.0,WS=1.0,JZ=1.0,MJB=1.0,AR=1.0,DS=1.0,DSZ=1.0)
	SS(5)=(Species=class'UTFamilyInfo_TwinSouls_Male',AbilityList=None,ArmourClass=class'Mutatoes.UCSpecies_TwinSouls_ArmourInfo',AC=1.1,GS=1.0,WS=1.0,JZ=1.0,MJB=1.0,AR=1.0,DS=1.0,DSZ=1.0)
	SS(6)=(Species=class'UTFamilyInfo_Krall_Male',AbilityList=None,ArmourClass=class'Mutatoes.UCSpecies_Krall_ArmourInfo',AC=0.9,GS=1.2,WS=1.0,JZ=0.86,MJB=1.08,AR=1.0,DS=1.0,DSZ=1.0)
	SS(7)=(Species=class'UTFamilyInfo_Liandri_Male',AbilityList=None,ArmourClass=class'Mutatoes.UCSpecies_Liandri_ArmourInfo',AC=0.8,GS=1.0,WS=1.0,JZ=0.88,MJB=1.06,AR=1.0,DS=1.0,DSZ=1.0)
 
///GOW
//COG chars
//	SS(10)=(Species=class'UTFamilyInfo_COG_Marcus.UTFamilyInfo_COG_Marcus',AbilityList=None,ArmourClass=class'Mutatoes.UCSpecies_Ironguard_ArmourInfo',AC=1.0,GS=1.0,WS=1.0,JZ=1.0,MJB=1.0,AR=1.0,DS=1.1,DSZ=1.0)
//	SS(11)=(Species=class'UTFamilyInfo_COG_Kim.UTFamilyInfo_COG_Kim',AbilityList=None,ArmourClass=class'Mutatoes.UCSpecies_Ironguard_ArmourInfo',AC=1.0,GS=1.0,WS=1.0,JZ=1.0,MJB=1.0,AR=1.0,DS=1.1,DSZ=1.0)
//	SS(12)=(Species=class'UTFamilyInfo_COG_Gus.UTFamilyInfo_COG_Gus',AbilityList=None,ArmourClass=class'Mutatoes.UCSpecies_Ironguard_ArmourInfo',AC=1.0,GS=1.0,WS=1.0,JZ=1.0,MJB=1.0,AR=1.0,DS=1.1,DSZ=1.0)
//	SS(13)=(Species=class'UTFamilyInfo_COG_Baird.UTFamilyInfo_COG_Baird',AbilityList=None,ArmourClass=class'Mutatoes.UCSpecies_Ironguard_ArmourInfo',AC=1.0,GS=1.0,WS=1.0,JZ=1.0,MJB=1.0,AR=1.0,DS=1.1,DSZ=1.0)
//	SS(14)=(Species=class'UTFamilyInfo_COG_Dom.UTFamilyInfo_COG_Dom',AbilityList=None,ArmourClass=class'Mutatoes.UCSpecies_Ironguard_ArmourInfo',AC=1.0,GS=1.0,WS=1.0,JZ=1.0,MJB=1.0,AR=1.0,DS=1.1,DSZ=1.0)
//	SS(15)=(Species=class'UTFamilyInfo_COG_Carmine.UTFamilyInfo_COG_Carmine',AbilityList=None,ArmourClass=class'Mutatoes.UCSpecies_Ironguard_ArmourInfo',AC=1.0,GS=1.0,WS=1.0,JZ=1.0,MJB=1.0,AR=1.0,DS=1.1,DSZ=1.0)
//	SS(16)=(Species=class'UTFamilyInfo_COG_Hoffman.UTFamilyInfo_COG_Hoffman',AbilityList=None,ArmourClass=class'Mutatoes.UCSpecies_Ironguard_ArmourInfo',AC=1.0,GS=1.0,WS=1.0,JZ=1.0,MJB=1.0,AR=1.0,DS=1.1,DSZ=1.0)
//Locust
//	SS(20)=(Species=class'UT3_Family_Locust.UTFamilyInfo_Locust',AbilityList=None,ArmourClass=class'Mutatoes.UCSpecies_Ironguard_ArmourInfo',AC=1.0,GS=1.0,WS=1.0,JZ=1.0,MJB=1.0,AR=1.0,DS=1.1,DSZ=1.0)
//	SS(21)=(Species=class'UT3_Family_Locust.UTFamilyInfo_LocustB',AbilityList=None,ArmourClass=class'Mutatoes.UCSpecies_Ironguard_ArmourInfo',AC=1.0,GS=1.0,WS=1.0,JZ=1.0,MJB=1.0,AR=1.0,DS=1.1,DSZ=1.0)
//	SS(22)=(Species=class'UT3_Family_Locust.UTFamilyInfo_LocustC',AbilityList=None,ArmourClass=class'Mutatoes.UCSpecies_Ironguard_ArmourInfo',AC=1.0,GS=1.0,WS=1.0,JZ=1.0,MJB=1.0,AR=1.0,DS=1.1,DSZ=1.0)
//	SS(23)=(Species=class'UT3_Family_Locust.UTFamilyInfo_LocustD',AbilityList=None,ArmourClass=class'Mutatoes.UCSpecies_Ironguard_ArmourInfo',AC=1.0,GS=1.0,WS=1.0,JZ=1.0,MJB=1.0,AR=1.0,DS=1.1,DSZ=1.0)
///
//Egyptian
//	SS(30)=(Species=class'UT3_Family_Egypt.UTFamilyInfo_Egypt',AbilityList=None,ArmourClass=class'Mutatoes.UCSpecies_TwinSouls_ArmourInfo'AC=0.9,GS=1.1,WS=0.8,JZ=1.1,MJB=1.0,AR=1.0,DS=0.9,DSZ=1.1)
//Rodents
//	SS(40)=(Species=class'UT3_Family_Rodent.UTFamilyInfo_Rodent',AbilityList=None,ArmourClass=class'Mutatoes.UCSpecies_Krall_ArmourInfo',AC=0.9,GS=1.4,WS=1.2,JZ=0.86,MJB=1.08,AR=1.0,DS=1.0,DSZ=1.0)
}