Code: Select all
function bool CheckReplacement(Actor Other,out byte bSuperRelevant)
{
if(Other.class==Class'something.something')
{
ReplaceWith(Other,"something");
return false;
}
else if(...)
{
...
return false;
}
else if(...)
{
...
return false;
}
...
else return false;
return true;
}
Another thing to note: you should use one mutator instead of three to make sure that they don't conflict with each other. However, sometimes three are better, like if you will release them separately, but you should still be aware that one is better than three. And the last thing, I'm not sure if there are mutator groups in UE1, but if there are, make sure the group name is "Arena" - this will prevent other mutators of the same group to be added in a game, thus preventing conflicts.


