rott/kf_sources/GamePlay/Classes/Action_GOTOACTION.uc
2026-07-14 20:27:09 +07:00

18 lines
313 B
Ucode

class ACTION_GotoAction extends ScriptedAction;
var(Action) int ActionNumber;
function ProceedToNextAction(ScriptedController C)
{
C.ActionNum = Max(0,ActionNumber);
}
function string GetActionString()
{
return ActionString@ActionNumber;
}
defaultproperties
{
ActionString="go to action"
}