Changing the .ini files

Alterations

This is where most of the tutorials turn obsolete. As I mentioned earlier, Epic is constantly updating the .ini files. What is an .ini file anway? Well, the INI file format is a de facto standard for configuration files. INI files are simple text files with a basic structure. These can be created with something as simple as your notepad program, or for easier viewing, with a program like Visual Studio 2010.

Go to <UDKPath>UTGameConfigUDKEngine.ini and add the following beneath the

[UnrealEd.EditorEngine] section:

[code]

+ ModEditPackages=MySideScrollingGame

[/code]

It should be around line 498.

Now, go to  <UDKPath>UTGameConfigDefaultGame.ini &  <UDKPath>UTGameConfigUDKGame.ini

and make the following changes to BOTH:

Replace

[code]

;DefaultGame=UTGame.UTDeathmatch

;;DefaultServerGame=UTGame.UTDeathmatch

[/code]

with

[code]

DefaultGame=MySideScrollingGame.MySideScrollingGameInfo

DefaultServerGame=MySideScrollingGame.MySideScrollingGameInfo

[/code]

Leave a Reply

This site uses Akismet to reduce spam. Learn how your comment data is processed.