PDA

View Full Version : Mutator extend problem



Taboen
11-23-2007, 05:54 AM
Right so I am creating my own gametype and I wanted start, I have nothing to do till my CE version arrives so.

This is what I did:

TFM extends UTTeamGame;

defaultproperties
{
classified information:p
}
I dont need to give whats in the defaultproperties because the error already occurs at the beginning.
It says: C:\Program Files\Unreal Tournament 3\Development\Src\TFM\Classes\TFM.uc<1> : Error, Bad class Definition ''/'UTTeamGame'/803/803

What is it?:confused:

SwaTz0rs
11-23-2007, 06:12 AM
u forgot the class in front of TDM extends UT.....


class TFM extends UTTeamGame;

defaultproperties
{
classified information:p
}

Taboen
11-23-2007, 06:51 AM
LOL. thanks.