nev7n
By: a guest | Jan 31st, 2010 | Syntax:
None | Size: 0.74 KB | Hits: 234 | Expires: Never
// Declaring the class and extend the SequenceAction functionality
class SeqAct_NTConvoOver extends SequenceAction;
// Declaring variable, the name of npc
var() bool isOver;
// Here we set the default values of the variables
defaultproperties
{
// This is the name that will apear in the Kismet Editor
ObjName="Is Convo Over"
// This is the name of the event that will be triggered when this action is called
HandlerName="IsConvoOver"
// Here we set the default value to the item
isOver = false;
// There we create slots in the Kismet Editor, linking the slots with this class variables
VariableLinks(1)=(ExpectedType=class'SeqVar_Bool', LinkDesc="Convo Over Result", bWriteable=true, PropertyName=isOver)
}