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

UnrealShare.SinglePlayer


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
00040
00041
00042
//=============================================================================
// UnrealGameInfo.
//
// default game info is normal single player
//
//=============================================================================
class SinglePlayer extends UnrealGameInfo;

var string StartMap;

function PostBeginPlay()
{
    Super.PostBeginPlay();

    bClassicDeathmessages = True;
}

function Killed(pawn killer, pawn Other, name damageType)
{
    super.Killed(killer, Other, damageType);
    if ( Other.IsA('Nali') )
        killer.PlayerReplicationInfo.Score -= 2;
}   

function PlayTeleportEffect( actor Incoming, bool bOut, bool bSound)
{
}

function DiscardInventory(Pawn Other)
{
    if ( Other.Weapon != None )
        Other.Weapon.PickupViewScale *= 0.7;
    Super.DiscardInventory(Other);
}

defaultproperties
{
     StartMap="..\maps\Vortex2.unr"
     bHumansOnly=True
     GameName="Unreal"
}

Overview Package Class Source Class tree Glossary
previous class      next class frames      no frames
Class file time: za 22-4-2006 13:00:12.000 - Creation time: za 22-4-2006 13:01:33.640 - Created with UnCodeX