PDA

View Full Version : how do i run ut3 make?



elgourmet
11-24-2007, 03:14 PM
hey there. i'm new to mods, and i just dont know how to run "ut3 make"
i have the hello world file here:
C:\Users\myuser\Documents\My Games\Unreal Tournament 3\UTGame\Src\muthelloworld\classes\muthelloworld.u c

which has the following code:

class muthelloworld extends UTMutator
config(Game);

function PostBeginPlay()
{
Super.PostBeginPlay();
LogInternal("Hello World");
}

defaultproperties
{
bExportMenuData=true
GroupNames(0)="TEST"
}

but what now? i've read in the other thread that i should run ut3 make, which is a file?! i couldnt find anywhere.
i coincidentally startet the unreal editor, which asked me if i want to rebuild my scripts. if i click yes, i get the following warning:
Warning, cant find files matching C:\Users\myuser\Documents\My Games\Unreal Tournament 3\Binaries\..\Utgame\Src\muthelloworld\classes\*uc

any help would be very much appreciated! :)
oh and btw, i opened the uteditor.ini file and could NOT find [Modpackages] in there, so i added it manually:

[Modpackages]
ModPackages=muthelloworld

MysTikal
11-24-2007, 04:13 PM
Create a shortcut on your desktop called UT3 Make. Point it at UT3.exe with the end shortcut command 'make'.

So it looks like this: "C:\Program Files\Unreal Tournament 3\Binaries\UT3.exe" make

elgourmet
11-24-2007, 04:35 PM
mystikal: thank you very much!
but i still get this:
Warning, cant find files matching C:\Users\myuser\Documents\My Games\Unreal Tournament 3\Binaries\..\Utgame\Src\muthelloworld\classes\*uc

does anyone know whats going on here? :-/

jbizzler
11-24-2007, 08:06 PM
I'm guessing this si a typo, but your first post has the file "muthelloworld.u c" with a space between u and c?

jbizzler
11-24-2007, 08:40 PM
No, I got it. ModPackages shoudl have more info in it.

[ModPackages]
ModPackagesInPath=..\UTGame\Src
ModOutputDir=..\UTGame\Unpublished\CookedPC\Script
ModPackages=muthelloworld

Those firts two were there by default for me.

MysTikal
11-24-2007, 09:17 PM
i opened the uteditor.ini file and could NOT find [Modpackages] in thereThat's not ordinary. Are you sure you couldnt find it, even with CTRL+F?

elgourmet
11-24-2007, 09:35 PM
thanks a lot, jbizzler! unfortunately, i still get this warning:
Warning, cant find files matching C:\Users\myuser\Documents\My Games\Unreal Tournament 3\Binaries\..\Utgame\Src\muthelloworld\classes\*uc

what could cause this problem? its weird :/
do you know if there is some sort of hello world tutorial for ut3? because the guides on unrealwiki are quite outdated... :(

oh and btw, that was a typo. file extension is .uc

@mystikal. you are right, that was my fault. the [modpackages] was there, including these 2 lines of code jbizzler mentioned. sorry for that!

kisk
11-24-2007, 10:12 PM
Not sure if the case matters, but just go ahead and cap the 'C' in "classes" (directory).

...and ModPackages is in \My Documents\My Games\Unreal Tournament 3\UTGame\Config\UTEditor.ini. If you added it to a different ini, I'd try to remember where and remove it.

elgourmet
11-25-2007, 08:09 AM
yeah, i added everything to the correct ini file. tried the cap you mentioned. didnt help either :( this is so strange....
once again, this is my uteditor ini file


.........................
[FEditorModeTools]
ShowWidget=True
MouseLock=False
CoordSystem=0

[Configuration]
BasedOn=..\Engine\Config\BaseEditor.ini

[ModPackages]
ModPackagesInPath=..\UTGame\Src
ModOutputDir=..\UTGame\Unpublished\CookedPC\Script
ModPackages=muthelloworld

[ObjectPropagation]
Destination=0

[ReferencedAssets]
ViewMode=1
SplitterPos=200
DepthMode=1
GroupByClass=False
IncludeDefaultRefs=True
IncludeScriptRefs=False
CustomDepth=0..................

elgourmet
11-25-2007, 08:20 AM
ohhhhh nevermind. i fixed it. the problem was so damn stupid. notepad additionally added a txt extension to the file. so the filename was muthelloworld.uc.txt . the txt was not displayed in my windows explorer -.-
damn damn -.-
however, thank you very much for your friendly help :)

kisk
11-25-2007, 11:49 AM
Yeah the windows option to hide known file extensions is no good for anyone.