| Overview | Package | Class | Source | Class tree | Glossary | UnrealScript Documentation |
| previous class next class | frames no frames | |||||
| 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 |
/** * Kismet event that returns the GoalScore and TimeLimit for the match. * * Writen by Brian 'Snake' Alexander. Copyright(c) 2009-2010 All Rights Reserved. */ class DOMSeqEvent_GetMatchSettings extends SequenceEvent; /** The TimeLimit for the match */ var int TimeLimit; /** The ammount of points needed to win the match */ var int GoalScore; event Activated() { local WorldInfo WI; local UTGameReplicationInfo GRI; WI = GetWorldInfo(); if ( WI != none ) { GRI = UTGameReplicationInfo(WI.GRI); if ( GRI != none ) { TimeLimit = GRI.TimeLimit; GoalScore = GRI.GoalScore; } } } defaultproperties { ObjName="Get Match Settings" ObjCategory="UTDom Events" MaxTriggerCount=1 bPlayerOnly=false VariableLinks(1)=(ExpectedType=class'SeqVar_Int',LinkDesc="Goal Score",bWriteable=true,PropertyName=GoalScore) VariableLinks(2)=(ExpectedType=class'SeqVar_Int',LinkDesc="Time Limit",bWriteable=true,PropertyName=TimeLimit) } |
| Overview | Package | Class | Source | Class tree | Glossary | UnrealScript Documentation |
| previous class next class | frames no frames | |||||