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

KFMod.KFGrabbable


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
00043
00044
00045
00046
00047
00048
00049
00050
00051
00052
00053
00054
00055
00056
00057
00058
00059
00060
00061
00062
00063
00064
00065
00066
//=============================================================================
// KF Use Trigger. Now with bigger messages, and Refire delays for human users.
// This shit's used for Doors in Killing Floor.
// By: Alex
//=============================================================================
class KFGrabbable extends UseTrigger;

var bool bUsed;
var     float   LastMessageTimer;
var() sound PickupSound;

/*
function bool SelfTriggered()
{
	return true;
}         */

function UsedBy( Pawn user )
{
    local Controller C;
    if( !bUsed )
    {
        if( KFHumanPawn(user) != none )
        {
            For ( C=Level.ControllerList; C!=None; C=C.NextController )
            {
                 if( KFPlayerController(C) != none )
                 {
                     KFPlayerController(C).ClientPickedup(self);
                 }
            }
        }
       	PlaySound( PickupSound,SLOT_Interact );
       	TriggerEvent(Event, self, user);
	    bUsed = true;
        bHidden = true;
    }
}

// Modded to account for...Zombies, and the Sealing (removal) of the Door Movers.
function Touch( Actor Other )
{
	if( Pawn(Other)==None || Pawn(Other).Health <= 0 )
		Return;

	// Send a string message to the toucher.
	if(PlayerController(Pawn(Other).Controller)!=none && bUsed == false)
	{
		if( LastMessageTimer<Level.TimeSeconds && Message!="" )
		{
			LastMessageTimer = Level.TimeSeconds+0.6;
			if ( InStr(Message, "USE") != -1 )
			{
				PlayerController(Pawn(Other).Controller).ReceiveLocalizedMessage(class'KFMod.WaitingMessage', 7);
			}
		}
	}
}

defaultproperties
{
     PickupSound=Sound'KF_InventorySnd.Ammo_GenericPickup'
     Message="Press USE to pick up Z.E.D. gun piece"
     RemoteRole=ROLE_SimulatedProxy
}

Overview Package Class Source Class tree Glossary
previous class      next class frames      no frames
Class file time: Fri 13-10-2023 03:17:26.000 - Creation time: Fri 13-10-2023 03:19:03.455 - Created with UnCodeX