Once I get that upgrade to 36-hour days, I will tackle that. – Mychaeel

Legacy:UnrealScript Lessons

From Unreal Wiki, The Unreal Engine Documentation Site
Jump to: navigation, search

This is a page aimed at newcomers to UnrealScript. Head over to UnrealScript for a full reference. Readers of this page are invited to create pages, suggest ideas for topics or expand on what is already here.

Introductions[edit]

These pages cover some of background knowledge you'll need before you begin.

Tutorials (UT3)[edit]

These tutorials are strictly for use with UT3. Generally, scripting is pretty much the same as previous versions of the engine, but there are a few differences.

  1. UT3 Whats What – Getting ready to code for UT3
  2. UT3 Hello World – First Mutator in UT3

Tutorials (2003/2004)[edit]

This is a sequence of tutorials for Unreal Tournament 2003/2004. They're arranged in order of increasing complexity, starting from the very first steps in scripting. UT scripting tutorials are farther down.

UnrealScript Installation[edit]

  1. Setting Up UnrealScript – Getting everything set up ready to begin coding in Windows OS.
  2. Using UCC Under Linux – How to setup a friendly Unreal scripting environment in Linux. (Unsupported)

Simple mutators[edit]

These start with the extremely simple. These are all single classes, but there is considerable scope for modifying the game once we get started.

  1. UnrealScript Hello World – The absolute simplest piece of UnrealScript we could think of.
  2. MutTutorial – A simple player jump boost mutator.
  3. Modifying Vehicle Weapons – How to change the weapons on a vehicle.
  4. Regen Mutator – A simple regenerating mutator for UT2003 & UT2004.
  5. Modify Mutator Tutorial – The Cooler for UT2003.
  6. Super Arena Mutator – An intermediate gameplay mutator for UT2003.
  7. TheHealer – The Healer for UT2003.
  8. Bulldog Player – A UT2003 tutorial for creating a player that is a vehicle instead of a normal character.

More complex mutators[edit]

These require more than a single class to implement.

  1. Power Core Volume Control Mutator – A tutorial on changing volume levels.
  2. Weapon Mutator Tutorial – Minigun HE mutator.
  3. MiceMenGrav Mutator – Uses Config and Gamerules.
  4. Adding an Adrenaline Combo With A Mutator – Tutorial on adding adrenaline combos in UT2004.
  5. Fire and Forget Self-Guided Missile - Not a complete mutator, but contains a real working code.

Class-based mutators/gametypes[edit]

  1. RegularEngine/Player_Classes – Overview of how Player Classes work within the RegularEngine framework for UT2004. For an older or alternate tutorial, see Making A Class-Based Mod.
  2. Spawning Your Own Bot – A intro to show you how to spawn and get control of a bot. So that you can write your own customized AI-Controller
  3. Basic AI Scripting Tutorial – Recreating the NaliCow NPC for UT2004, focusing on the custom AI.

Replication[edit]

  1. Introduction To Replication – How objects sync with each other in online games.
  2. ProjectileDestroyerVolume – (Needs description!).

Other[edit]

  1. Stat Points System – Shows how to use stat points to change a gun speed, ammo held, etc.
  2. Using The Mod System In UT2004 – Shows how to use the mod system in ut2004 by guiding you through a series of basic procedure type pages.

Tutorials (UT)[edit]

This is a sequence of tutorials for UT. The are arranged in order of increasing complexity, starting from the very first steps in scripting. Unreal Tournament 2003/2004 scripting tutorials are farther up.

1. Mutators[edit]

  1. UT Low Gravity Mutator – A simple gravity mutator.
  2. Changing the Enforcer (UT) – A mutator that modifies the Enforcer.

2. Weapons[edit]

computergod666: Anyone want to help me write this section? (UT Only)

  1. Basic Weapon Class – How to create a simple projectile-firing weapon.
  2. Hitscan weapons – (like ShockRifle)

Outline: This section also needs at least the following:

  1. Rapid-fire weapons – how to change the firing speed.

I would also like to see the following: (These are just interesting advanced topics)

  1. Steerable projectiles – one way to implement a Redeemer-like missile.
  2. Delayed-action projectiles – things like sticky grenades, flechettes, and portals.
  3. Chainguns and Shotguns – how to make weapons that spin up/down or need to be pumped.

Class tutorials[edit]

These tutorials look at single classes. They are in no particular order (for now).

Understanding Existing Unreal Code[edit]

  • UT2003: Creating a new Weapontype – Create a new weapon based off a pre-existing (built-in) weapon's code.
  • UT and UT2003: Using LocalMessages – (Needs description!).
  • UT2003: The Code References Page – Several classes have been posted and heavily commented for learning. Other classes are upcoming.

Unreal Specific Objects[edit]

  • Classes and Objects
    • Package – Introduction to UT's code packaging system.
    • Traversing Classes – Introduction to interacting and manipulating variables, functions, and values that exist in other classes.
    • Input keys – Introduction to creating classes that allow user-inputted keys, and I include a trigger I made to use an Activate key (For original UT).
  • UnrealScript Vector Maths – Guide to using vectors.

When You Get Stuck[edit]

Building on Previous Experience[edit]

If you already have programming experience in a different language, the following topics will help you find out the similarities and differences between the languages you know and UnrealScript.

Please add pages for other languages. Just add UnrealScript questions and insights you gathered during your own learning process there as they come in.

Related Topics[edit]

Lessons in progress[edit]

Requests[edit]

computergod666: I need a tutorial on key bindings in UT. I know how to bind keys with UTExtraKeyBindings so you can have a mutator that does something when you press a key, but I want to know how to make a key binding that works like the Pawn.bFire variable: it is in one state when the key is down, and another state when the key is not pressed. I'm asking because I am making a user-controllable turret for UT, and I want to know how to bind other keys like this. Alternatively, I would like to know how to temporarily change the behavior of the default key bindings, so pressing Fire would make the turret fire, not the player's weapon.

Raven: http://wiki.beyondunreal.com/wiki/Keypress_Interactions

computergod666: Thanks. That was extremely helpful to understanding the low-level parts of keypresses. I also found a way to change the default behavior of certain key bindings. For example, if I wanted to bind Forward, Backward, Strafe Left and Strafe Right so they would also be available to control the motion of a vehicle, I could modify the aliases for those keys in User.ini so they read something like: Command="Axis aBaseY Speed=+300.0 | mutate vehicle_goforward",Alias=..." etc. This wouldn't change the default behavior, because I want the player to be able to run around when he's not in a vehicle. However, if the player is in a vehicle, the Mutate function will receive the vehicle_goforward message and temporarily disable player movement and move the vehicle instead.

Lizardman6: I would like to see a stat points system for UT2004... :-)

Unknown: I have a idea for a tutorial: how to change the main menu of ut2004

UnReally: I am making a weapon which has a unique secondary firemode: it fires a projectile that i would like to do the following: upon striking another player, NOT a wall etc., the player hit takes damage, AND the projectile forks out to nearby players like chain lightning (whether this splitting is instanthit or further projectiles does not matter), just as long as there is some sort of chain-lightning style thing going on. If neone has any ideas how to script this, please help out.

Craze: Hey, how about some UT weapon tutorials, please make a weapon from scratch tutorial and a more advanced weapon tutorial and a instant hit weapon tutorial.

computergod666: Working on it. Please check this page closer to the top.

Tarquin: I would really like a basic tutorial on replication: maybe something like a Trigger actor that does something to all players when touched.

NickR: I wouldn't mind some small replication examples just showing one type replication related code. Like when the simulated key word should be used or if static functions can be called from either the client or server and run on either.

Foxpaw: I'm not sure about tutorials, but those are (fairly) easily explained. Simulated functions run on actors with ROLE_SimulatedProxy or better. However, only if they are called from another simulated function. Entry points like Tick can be declared as simulated when you override them to facilitate this. A short example:

simulated function Tick( float Delta )
{
  Super.Tick( Delta );
 
  DoStuffOnServerOnly();
  DoStuffOnBoth();
}
 
// Called from a simulated function, but not simulated itself,
// the engine skips over this function on clients. (or rather,
// the non-authority version, which is usually the client)
function DoStuffOnServerOnly()
{
  DoStuffOnClient();
}
 
// A simulated function getting called from another simulated
// function. This gets called on both machines.
simulated function DoStuffOnBoth()
{
}
 
// Oops! This is a simulated function, but gets called from a
// non-simulated function, so although it COULD run on a client
// (because it's simulated) the code that calls it doesn't run
// on the client and so this won't ever get called.
simulated function DoStuffOnClient()
{
}

Static functions on the other hand, have no relation to replication and are functions that exist outside the context of an object. Static functions can't get replicated, obviously, because they aren't associated with any particular instance of an object. They can access only default variables and stuff. See Static Function and Simulated Function.

Also, feel free to refactor this somewhere or expand it into a full tutorial.. it's more a demonstration at the moment.

Tarquin: Thanks... but see, you've alreayd lost RepliN00bs with this: run on actors with ROLE_SimulatedProxy or better.... how does Replication actually WORK? Should we imagine multiple facets of the same actor on different machines, or many actors on different machines that somehow correspond to each other?

Foxpaw: Well, they're different actors, but they have a unique identifier so they "correspond" to each other. An actors Role variable determines it's replication behaviour. ROLE_Authority is usually the one on the server, and it runs all functions, simulated or not. ROLE_SimulatedProxy is usually on the client, and runs only simulated functions. ROLE_DumbProxy runs no functions, but still replicates variables. ROLE_None replicates nothing.

WheatPuppet: Can we cram this stuff into a tutorial somewhere!? I hate having code on a Tutorial frontpage.

Tarquin: maybe create Introduction to Replication?

WheatPuppet: Sounds good to me... I'm not particularly qualified to write a tute or doc on replication, though. I wonder if anyone but Tim Sweeny is. ;) It seems to me that replication is the single least-understood aspect of UScript. I'd be willing to throw together a page as a starter in a few days (a.k.a. after final exams).

Tarquin: actually, I just meant throw the stuff we don't want here onto that page and leave it to fester :) Maybe someone more qualified will come along and clean up. At least this page will be tidier.

JimRimya: How about a simple weapons mod, like increasing the firing rate of the rocket launcher. Or maybe making all weapon spawn points be rocket launchers. What I'm getting at is something like rocket arena in Q3. Thanks!

M.r.bob: The GUI for UT2004 is very different from the GUI for UT2003, someone needs to make a tutorial for a UT2004 mutator with a GUI. Like one that lets you change the amount of health the pawns have, that would be a cool and simple mutator, and would teach people who only have 2004 how to make a decent mutator. Please Please Please :D


Bob_The_Beheader: I'd really like to see a tutorial for making heat-seeking or homing projectiles.

SuperApe: That's a good one. I just helped someone with that on BUF by using some code borrowed from BulldogRocket. That already has an Actor (Pawn) property defined for target, you just set it at launch to any (non-teammate) controlled Pawn. For the purposes making a lesson out of it, you'd want to set up how the projectile is fired. (i.e., make a new hand-held weapon? replace an existing vehicle weapon?)

Bob_The_Beheader: Cool. It does seem to me that the projectile of the heat-seeking weapon is more important then the code for the weapon itself. All you'd need to do for the weapon code in the tutorial would be to change an existing weapon's properties to fire your new heat-seeking projectile. Wait... I take that back. The weapon would need to contain code for aquiring the target, probably. Unless you wanted the projectile to aquire a target on it's own. This might make it a really difficult weapon to use, which I don't think is a characteristic of heat-seeking weapons ;). I think maybe the existing code for the Rocket Launcher and it's projectile would do nicely for this tutorial. You could just reduce the time required for a target lock, and up the manuverability of the rocket projectile, to make it move more like an AVRIL. Also probably reduce the damage the rocket deals and maybe the max ammo count of the launcher, in order to keep gameplay balanced. I've never seen the Bulldog at work, so I'm not sure how it's weapon works, but the target property does sound useful for this. You could just have it be set to the enemy Pawn closest to your crosshair (?? I think... :confused:) I think making this a hand-held weapon would be better suited for a tutorial, because then you could test it in a small, quick-loading 1v1 DM map instead of some monster long-loading ONS map.

computergod666: Now that we're on the topic of projectiles, is there a way to make a projectile stick to a player or bot in UT? I know it can be done with bones in UT2kX, but there is no GetClosestBone() in UT. Any ideas? A friend of mine who codes for Doom suggested that I make a fast-response homing projectile, but that would mean that it wouldn't necessarily be attached to the player, it would simply stay close by.

EntropicLqd: I can't answer your question directly, but, could you fake it by using an inventory item that behaves in a similar way to the CTF flag? ie. When the projectile hits the player is given the "sticky thing" as an inventory item with a Timer that fires to do damage (or whatever you want). Failing that, see if you can track down a copy of Nerf Arena Blast (or whatever it was called). I'm sure the nerf balls in that used to stick to players.

EricBlade: Of course it's possible. Instead of having the Projectile actually blow up when it contacts, have it set bHardAttach=True, SetBase() to the pawn it hit, turn off collision (so it doesn't get stuck on things the pawn brushes by)

computergod666: Thanks! I did get it to work (sort of) so that as soon as the projectile touched its target, it would go to a state where the projectile's velocity was set to the velocity of the target every time Tick() was called. It looks good until the target turns. What's the syntax for SetBase()?

EricBlade: Don't forget to SetPhysics(PHYS_NONE) too. SetBase(Actor) should stick it to the given Actor. Something like... SetPhysics(PHYS_NONE); bHardAttach=True; SetBase(WhatImStickingTo); you could even attach it to a bone, if you're using like UT04

computergod666: Thanks again. Do you know if I set the base of an object to be a player, is it supposed to hurt the player? I'm asking because I just made a gravity gun for UT that is meant to be able to pick up and throw decorations and projectiles. Every time I pick up a decoration with it, it sets the decorations base to me, sets its physics to PHYS_None, and then enables a Tick() function that keeps the object a certain distance and rotation away from me. Whenever I do this, it deals me one point of damage! Why? Also, I did finish the projectile question. I've implemented it for toxin darts (flechette cannon), sticky grenades, and my Shrink Ray / Microwave Expander (see my personal page for more details.)


Powerups[edit]

computergod666: I just made a few of my own powerups for UT. They work similarly to relics, in that only one person can pick them up at a time, they can drop it by throwing it or dying, and you can't pick up another powerup or a relic if you have either already. I want to make a stealth powerup that makes you invisible to Bots as well as to other players. Is there a way to make bots have a harder time seeing you? Also, I would like to make it silence player noises like footsteps and weapon firing sounds. Does anyone know how to do something like that?


Bob_The_Beheader: Does anyone out there know how to code a melee weapon?... I guess I could just look at the code for the melee weapons in the ChaosUT mod...

Grudge Mutator[edit]

Tarquin: This is an idea I've had for some time for a simple mutator, and it strikes me that it could serve as a simple tute for netcode. It's called Grudge, and it would implement a few extra announcements to do with who is killing who. This is how it works:

  • Suppose Player Bob kills you, and after you respawn your first kill is Bob: it's a "Revenge" (cue announcement and screen message)
  • If you get killed by Bob, and then after respawning Bob kills you AGAIN (and you've not managed to kill him), then it's a "Grudge". If that happens again, there could be further announcements...

Bob_The_Beheader: I'm not sure I understand you here, Tarquin. At first I thought you were talking about something like the Revenge Rune, but are you saying that all this would do is display the message "Revenge" and later possibly "Grudge" onscreen? This sounds like the mutator on the UTAN clan's gibzilla CTF server, I forget what it's called.

Tarquin: I've actually made a start on this. A beta version is available.

Bob_The_Beheader: By the way, I'm not good enough to kill ANYONE twice in a row, not unless I'm very lucky :D.

Guest:(TurkeyFromHell) Tarq, I'm just started trying to make a mutator to prevent revenge killing (for a camping server), and the only way I can see to go about it (being so unfamiliar with the majority of the Engine's class system as I am) is to extend off of Pawn and redefine the TakeDamage function. Is there an easier/less... drastic way to do this?

Eliot: try extending GameRules it contains a function for damage too.

Guest:(TurkeyFromHell) Yes lol I just decompiled an existing revenge mutator to see how it worked :P, ty.

Discussion[edit]

DUc0N:Thought it might be nice to mention semi-up-front that mod authoring under Linux is NOT supported as of yet. Stay tuned though, I for one plan to gripe :)

Mr.Bob/his brother: these pages really need to be updated for 2004 im trying to figure out how to make a High gravity mutator. :cheesy:

EntropicLqd: Well, you could start by looking at the code for the low gravity mutator that gets shipped with UT2004, and then rather than make the gravity less, make it more. Seems like a good place to start to me.

Tarquin: I decided that Instant Start wasn't really suitable as a lesson.

Mr.bob: KEWL! ;D my thingy is finally at the top, and i didn't even have to put it there!

Fearless: It would be nice to have a subject about modifying a standard UT weapons as this is what someone beginning in Uscript would like to do.

Prospero: A tutorial on the finer points of coding for networking would be rad. There are a lot of comments to the effect of "this isn't coded for networking", but why it is wrong is rarely explained.

Bob_The_Beheader: Fearless: first UScript thing I did at least was modify an original weapon. I kind of integrated this into learning how to make models and textures for UT. Now the link gun has a new model and shoots yellow glowing exploding rings! :cheesy:

OlympusMons: Added link to using the mod system in ut2004 but the page itself is ruff, if anyone could lend a hand with suggestions or give me feedback on how well it works for them Id greatly appreciate it.

Ace Ulimited: Can you make weapons for Killing Floor using Unreal Editor or using this Unreal Script Tutorial? I have no idea where to start because im new at this and I have no knowledge what so ever on any of this.