• Please make sure you are familiar with the forum rules. You can find them here: https://forums.tripwireinteractive.com/index.php?threads/forum-rules.2334636/

Code Basic Mutator Error

otester

Grizzled Veteran
Mar 7, 2006
366
5
Recently trying to get into the world of RO coding I though i'd try and make a basic 'Hello World' mutator.

I put the "MutHelloWorld.uc" file in my "common/red orchestra/System" folder and added the EditPackages line in the RedOrchestra.ini

I have inclosed the code I used and the error I got:

class HelloWorld extends Mutator;

function PostBeginPlay()
{
Super.PostBeginPlay(); // Run the super class function (Mutator.PostBeginPlay).
Log("Hello World"); // Write our log message
}
defaultproperties
{
FriendlyName="Hello World Mutator"
Description="Log 'Hello World'."
}

roproblemda7.jpg


Any help at all is gladly appreciated :)