Overview Package Class Source Class tree Glossary
previous class      next class frames      no frames

XGame.MutSpeciesStats


00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029
00030
00031
00032
00033
00034
00035
00036
00037
00038
00039
//=============================================================================
// MutSpeciesStats - species specific stats for players
//=============================================================================
class MutSpeciesStats extends Mutator;

function PostBeginPlay()
{
	local GameRules G;
	
	Super.PostBeginPlay();
	G = spawn(class'SpeciesGameRules');
	if ( Level.Game.GameRulesModifiers == None )
		Level.Game.GameRulesModifiers = G;
	else    
		Level.Game.GameRulesModifiers.AddGameRules(G);
}

function ModifyPlayer(Pawn Other)
{
    local xPawn xp;

    Super.ModifyPlayer(Other);
    
    xp = xPawn(Other);
    if(xp == None)
        return;
    xp.Species.static.ModifyPawn(xp);
}


defaultproperties
{
    IconMaterialName="MutatorArt.nosym"
    ConfigMenuClassName=""
    GroupName="Species"
    FriendlyName="Species Statistics"
    Description="Each race has unique combat statistics."
}

Overview Package Class Source Class tree Glossary
previous class      next class frames      no frames
Class file time: Di 5.9.2006 22:36:26.000 - Creation time: Do 14.8.2014 09:58:45.010 - Created with UnCodeX