Botpack
Class TFemale1Bot

source: e:\games\UnrealTournament\Botpack\Classes\TFemale1Bot.uc
Core.Object
   |
   +--Engine.Actor
      |
      +--Engine.Pawn
         |
         +--Botpack.Bot
            |
            +--Botpack.HumanBotPlus
               |
               +--Botpack.FemaleBotPlus
                  |
                  +--Botpack.TFemale1Bot
Direct Known Subclasses:None

class TFemale1Bot
extends Botpack.FemaleBotPlus

//============================================================================= // TFemale1Bot. //=============================================================================

Function Summary
 void ForceMeshToExist()



Source Code


00001	//=============================================================================
00002	// TFemale1Bot.
00003	//=============================================================================
00004	class TFemale1Bot extends FemaleBotPlus;
00005	
00006	function ForceMeshToExist()
00007	{
00008		Spawn(class'TFemale1');
00009	}
00010	
00011	defaultproperties
00012	{
00013	     FaceSkin=3
00014	     TeamSkin2=1
00015	     DefaultSkinName="FCommandoSkins.cmdo"
00016	     DefaultPackage="FCommandoSkins."
00017	     SelectionMesh="Botpack.SelectionFemale1"
00018	     MenuName="Female Commando"
00019	     VoiceType="BotPack.VoiceFemaleOne"
00020	     Mesh=LodMesh'Botpack.FCommando'
00021	}

End Source Code