Update
Sofar I've made a custom kismet action node that takes a string variable as an argument (VariableLink) and I've made the node extend to the "console command" to adjust the command array and set the string to a slot but it's not working sofar, here is the code for the node if that would be usefull to see.
Code:
// extend UIAction if this action should be UI Kismet Action instead of a Level Kismet Action
class EnigmaTestConsoleCommandArgument extends SeqAct_ConsoleCommand;
var string ValueA;
event Activated()
{
Command = ValueA;
Commands[0] = ValueA;
}
defaultproperties
{
ObjName="EnigmaTestConsoleCommandArgument"
ObjCategory="EnigmaTest Actions"
VariableLinks(1)=(ExpectedType=class'SeqVar_String',LinkDesc="String",bWriteable=true,PropertyName=ValueA)
}
As always
//Pensho
Bookmarks