legacy-Orion Pax
08-20-2003, 10:14 AM
I just got finished with the MutHelloWorld example on unreal wiki! It compiled fine...no errors.....and it wont show up on the mut list in the game!
class HelloWorld extends Mutator;
function PostBeginPlay()
{
Super.PostBeginPlay(); // Run the super class function (Mutator.PostBeginPlay).
Log("Hello World"); // Write out log message
}
defaultproperties
{
FriendlyName="Hello World Mutator"
Description="Log 'Hello World'."
}
class HelloWorld extends Mutator;
function PostBeginPlay()
{
Super.PostBeginPlay(); // Run the super class function (Mutator.PostBeginPlay).
Log("Hello World"); // Write out log message
}
defaultproperties
{
FriendlyName="Hello World Mutator"
Description="Log 'Hello World'."
}