Once I get that upgrade to 36-hour days, I will tackle that. – Mychaeel

UE1:HelloWorldCommandlet (U1)

From Unreal Wiki, The Unreal Engine Documentation Site
Jump to: navigation, search
U1 Object >> Commandlet >> HelloWorldCommandlet
Package: 
Core
This class in other games:
RTNP, UT, U2XMP, U2, UE2Runtime

UnrealScript "hello world" sample Commandlet.

Usage

ucc.exe HelloWorld

Properties

intparm

Type: int

An example integer variable that can be set from the command line with the parameter intparm=value.

strparm

Type: string

An example string variable that can be set from the command line with the parameter strparm=value.

Default values

Property Value
HelpCmd "HelloWorld"
HelpDesc[0] "An integer parameter"
HelpDesc[1] "A string parameter"
HelpOneLiner "Sample"
HelpParm[0] "IntParm"
HelpParm[1] "StrParm"
HelpUsage "HelloWorld"

Events

Main

event int Main (string Parms)

Overrides: Commandlet.Main

Prints "Hello, world!", any command line parameters and the values of the two example variables.

See also