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

Gameplay.ActionDisablePointOfInterest


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
class ActionDisablePointOfInterest extends Scripting.Action;

var() name	PointOfInterestName	"Name of the point of interest to disable";

// execute
latent function Variable execute()
{
	local PlayerCharacterController pcc;
	local int i;

	Super.execute();

	pcc = PlayerCharacterController(parentScript.level.getLocalPlayerController());

	if (pcc != None)
	{
		for(i = 0; i < pcc.PointsOfInterest.Length; ++i)
		{
			if(pcc.PointsOfInterest[i].Name == PointOfInterestName)
			{
				pcc.PointsOfInterest[i].bPointEnabled = false;
				return None;
			}
		}
	}

	return None;
}

// editorDisplayString
function editorDisplayString(out string s)
{
	s = "Disable the Point of Interest named '" $PointOfInterestName $"'.";
}

defaultproperties
{
	returnType			= None
	actionDisplayName	= "Disable Point of Interest"
	actionHelp			= "Disables a Point of Interest"
	category			= "Other"
}

Overview Package Class Source Class tree Glossary
previous class      next class frames      no frames
Class file time: ne 5.9.2004 15:53:24.000 - Creation time: st 23.5.2018 00:10:40.150 - Created with UnCodeX