XIII
Class XIIISkill

source: C:\XIII\XIII\Classes\XIIISkill.uc
Core.Object
   |
   +--Engine.Actor
      |
      +--Engine.Inventory
         |
         +--Engine.Powerups
            |
            +--XIII.XIIISkill
Direct Known Subclasses:BreathSkill, DualWeaponSkill, FirstAidSkill, PickLockSkill, SilentWalkSkill, SixSenseSkill, SniperSkill, StunningSkill, ThrowingMastery

class XIIISkill
extends Engine.Powerups

//----------------------------------------------------------- // Skills are only there to be detected by the related actions via // FindInventoryType(class'MySkill'); //-----------------------------------------------------------

Function Summary
 void PickupFunction(Pawn Other)
     
//_____________________________________________________________________________
// skills don't go into selected slot



Source Code


00001	//-----------------------------------------------------------
00002	// Skills are only there to be detected by the related actions via
00003	// FindInventoryType(class'MySkill');
00004	//-----------------------------------------------------------
00005	class XIIISkill extends Powerups;
00006	
00007	//_____________________________________________________________________________
00008	// skills don't go into selected slot
00009	function PickupFunction(Pawn Other)
00010	{
00011	    Super.PickupFunction(Other);
00012	
00013	/*    if (bActivatable && Other.SelectedItem==None)
00014	      Other.SelectedItem=self;
00015	    if (bActivatable && bAutoActivate && Other.bAutoActivate)
00016	      Activate(); */
00017	}
00018	
00019	
00020	
00021	defaultproperties
00022	{
00023	}

End Source Code