views:

755

answers:

4

Now that the Unreal Development Kit is out and free to use by anyone, I am pretty excited to try it out. My understanding is that the programming is done through scripting in UnrealScript, I am wondering if any of you guys know of any good articles, tutorials, books, and references for Unreal Script or the Unreal Development Kit.

Documentation

Tools

Tutorials

Video Tutorials

+2  A: 

This was my first introduction to UnrealScript, written by the author and programmer himself, Tim Sweeney:

It gives a high-level overview of the language and the intentions behind its design.

Frank Krueger
Oh, that's pretty cool! Thanks for sharing. You mind editing it into the original post? That way it won't be lost :D
Jorge Israel Peña
+2  A: 

There really isn't that much out there, the best way to learn is by looking through the source code of UT3 and mods for it. I'd recommend exporting script from the .u files (don't have a link on me at the moment) so that you can see the code from all of the Make Something Unreal Contest mods.

Download the latest UT3 source code here: http://udn.epicgames.com/Files/UT3/Mods/UT3ScriptSource_1.5.rar

There's also a handy program called "UnCodeX" that makes it easy to trace unrealscript code. uncodex.elmuerte.com

There's an option for html output too, which I have a copy of (although it's not the absolute latest version, it's pretty recent) on my site: http://www.aaronash.com/ut3/UT3_UnCodex_v1.3/

The UT3 source code should be plenty for you to learn off of however, good luck!

Charybdis
There a reason why you didn't link the last two? Is it rep? I'll link them for you :)
Jorge Israel Peña
Thanks, I didn't have enough rep.
Charybdis
+1  A: 

The mailing lists are also very useful, they can be found in udn.epicgames.com

Moss
+1  A: 

Here are some really useful tutorials for UDK:

  1. http://forums.epicgames.com/showthread.php?t=711261 - Basic Kismet (Useful for basic game functions you don't want to script out.
  2. http://www.toltecstudios.com/theball/tutorialudk.htm - Setting you script, etc, etc. No scripting is shown here.
  3. http://forums.epicgames.com/showthread.php?t=711084 - Integrating you UScripts in Kismet.
  4. http://dl.deathtouchstudios.com/videotutorials/UnrealScriptSeries/ - Videos about UnrealScript. These ones are just awesome!!!
Fladur