Worst-case scenario: the UEd Goblin wipes the map and burns down your house.

UE1:HelloWorldCommandlet (RTNP)

From Unreal Wiki, The Unreal Engine Documentation Site
Revision as of 09:12, 17 May 2008 by Wormbo (Talk | contribs) (Auto-generated page)

(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to: navigation, search
RTNP Object >> Commandlet >> HelloWorldCommandlet
Package: 
Core
This class in other games:
U1, UT, U2XMP, U2, UE2Runtime

UnrealScript "hello world" sample Commandlet.

Usage[edit]

ucc.exe HelloWorld

Properties[edit]

intparm[edit]

Type: int

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

strparm[edit]

Type: string

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

Default values[edit]

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[edit]

Main[edit]

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[edit]