XIDMaps
Class Kello03

source: C:\XIII\XIDMaps\Classes\Kello03.uc
Core.Object
   |
   +--Engine.Actor
      |
      +--Engine.Info
         |
         +--XIII.MapInfo
            |
            +--XIDMaps.Map07_Kellownee
               |
               +--XIDMaps.Kello03
Direct Known Subclasses:None

class Kello03
extends XIDMaps.Map07_Kellownee

//----------------------------------------------------------- // this is the mapinfo for Kello01b //-----------------------------------------------------------

Function Summary
 void SetGoalComplete(int N)
     
//_____________________________________________________________________________



Source Code


00001	//-----------------------------------------------------------
00002	// this is the mapinfo for Kello01b
00003	//-----------------------------------------------------------
00004	class Kello03 extends Map07_Kellownee;
00005	
00006	//_____________________________________________________________________________
00007	function SetGoalComplete(int N)
00008	{
00009	  if ( N == 99 )
00010	  {
00011	    SetPrimaryGoal(0);
00012	    return;
00013	  }
00014	
00015	  if ( N == 0 )
00016	  {
00017	    SetPrimaryGoal(1);
00018	  }
00019	
00020	  Super.SetGoalComplete(N);
00021	}
00022	
00023	//_____________________________________________________________________________
00024	
00025	
00026	
00027	defaultproperties
00028	{
00029	     EndMapVideo="cine07"
00030	}

End Source Code