PDA

View Full Version : 'Ucc make' problems ...



legacy-Grooter
07-19-2003, 03:48 PM
Okay, I made a stupid little mutator just to test it & see if I can get it to work (followed Ezekiel's powerpoint tutorials), and every time I run "Ucc make" (note: I don't put the quotes), it does everything, but then after it finishes with everything, it just sits there and says Analyzing ... and it'll sit there until i CTRL-ALT-DEL & close it. Here's the codes I have:

(It's located it UT2003 > TEST > Classes > TEST.uc



class TEST extends TEST;
defaultproperties
{
GravityZ=-353.7531000
GroupName="Gravity"
FriendlyName="Robert's Low Gravity"
Description="More Low Gravity."
}


And then in the UT2003 > System folder, I have TEST.int, which reads:



Object=(Class=Class,MetaClass=Engine.Mutator,Name= TEST.TEST,Description="Way...Low Gravity.")


Plus also, the mod doesn't show up in the mutators section in UT2003. So does anybody know how I can fix this problem? Thanks.

elmuerte
07-19-2003, 04:05 PM
:eek:
a child can't be his own father

legacy-Grooter
07-19-2003, 04:38 PM
So I guess what you're saying is that I have the same thing in two spots where it should be different? Would you mind pointing out where that is for me please? Thanks my man.

legacy-Vir@s
07-19-2003, 05:26 PM
???? class TEST extends TEST; ????

You have to extend any existing class - that is what Muerte tried to point out ;)

legacy-Grooter
07-19-2003, 05:56 PM
So what should it say? Keep in mind i said that i was following a tutorial, so that should point out i'm just learning. However, I am fluent in C++, but that's more like JavaScript, something I'm not good at, so I wasn't sure if that part was the error. But in that case what should it say?

legacy-Mychaeel
07-19-2003, 06:36 PM
As somebody "fluent in C++" I'd expect you to be acquainted with the OOP concept of extending a class.

Obviously your attempt to extend your class from itself catches the compiler in an infinite loop.

legacy-yoDon
07-19-2003, 08:15 PM
If you are making a mutator, your derived class should extend the Mutator class.

class TEST extends Mutator;

-Don

legacy-Grooter
07-19-2003, 08:37 PM
Okay, thanks to all of you!