PDA

View Full Version : Unrealscript tutorial, anything similar/better?



flatland69
09-08-2010, 02:02 PM
Hi all

I'm new to the UDK, but I'm pretty competent with object-oriented coding in general and have quite a bit of Java experience under my belt. I'm fiddling with the UDK just for fun and a bit of experience, and in my efforts to get my head around unrealscript, I started following this tutorial:

http://www.moddb.com/groups/udk-developers-group/tutorials/unrealscripter-1

I chose this one since I really wanted to make a team deathmatch game where people could choose a faction, then choose a class (something like teamfortress i suppose), but unfortunately the tutorial is not complete. I was wondering if there is a similar tutorial like this one somewhere? I've searched high and low and can't find one.

Thanks in advance!

flatland69
09-08-2010, 08:23 PM
I thought I should clarify slighty.

I have made a pawn class inheriting from UTPawn:

APawn extends UTPawn

and in turn have 3 classes inheriting from that, each with different run speeds:

AScout extends APawn
ASoldier extends APawn
AHeavy extends APawn

Now, at the moment my default pawn is APawn, but is there a way to prompt a player at the beginning of the game to select which class he would like to play? I'm guessing using kismet would be the way?