Mod Developers Guide

From Warzone Wiki
(Difference between revisions)
Jump to: navigation, search
Line 60: Line 60:
 
See also:  
 
See also:  
 
* [[Mod API Reference]]
 
* [[Mod API Reference]]
 +
* [[Mod Backwards Compatibility]]

Revision as of 02:08, 13 April 2017

This page describes information necessary for making Mods.

This guide assumes that you know the Lua programming language. If you've worked with other languages, such as Javascript, Lua should be very easy to learn. Many tutorials are available on the internet if you search for them.

Contents

Getting started creating a mod

To make your own mod, follow these steps:

  1. Open the page https://www.warlight.net/EnableModDevelopment to enable mod development for your WarLight account.
  2. Obtain the source code to an example mod, such as the Randomized Wastelands Mod from https://github.com/FizzerWL/ExampleMods/tree/master/RandomizedWastelandsMod. Download the lua files to a folder on your device.
  3. Launch the WarLight Unity Client, sign in. Click the "Mod Development Console" button. You can also use the hotkey Ctrl+Shift+M to bring up this dialog any time, and also note that this dialog can be docked to sides of your screen if you wish.
  4. Click the "Create New Mod" button and give your mod a name.
  5. Provide path to your folder with lua files that you downloaded in step 2.
  6. Click Submit to create the mod.
  7. From the main menu, click "Custom Single-Player game", then scroll down and click Change Mods.
  8. You should see the mod you created here. Check the box to turn it on and click Submit.
  9. If you've cloned the Randomized Wastelands mod, you'll also need to turn on wastelands if you want it to do anything. You can also turn off fog to more easily see its effects. Create the game, and see the wastelands be adjusted!

Now you can make modifications to the lua code, press the "Reload code" button and try them out!

Be sure to read the rest of this page for essential information on mod development.

Hooks

WarLight will call into a mod's lua code using what are called hooks. For example, it will call a hook named Server_StartGame when a game is beginning and give your mod an opportunity to change things about how the map is set up.

For full details on what hooks are available, see Mod Hooks.

Sharing code with "require"

You can call the "require" function to share code between different lua files.

For example, if you have utility functions in a file named 'Utilities.lua', simply write require('Utilities') at the top of another file to include it (omit the .lua).

Note that all lua files must be in the same directory (subdirectories are currently not supported).

Printing Output

In lua, you can print output with lua's print function. For example: print("Hello, world!")

To see this output, open the Mod Development Console (Ctrl+Shift+M) and click View Mod Output. Then create a single-player game using that mod, and when the print statement runs, you'll see the output appear in this window in real-time.

This is useful to assist in debugging.

In multi-player games, the output of mods that run on the server is currently not viewable anywhere. For this reason, it's easier to debug mods in single-player before moving to multi-player.

Global State

Never assume any state will persist, unless specifically called out in the documentation. For example, don't write to a global variable in one hook and access it in another.

If you try to in a single-player game, you may find that global state does persist. Hoever, don't be tempted to rely on this, since globals are always wiped in multi-player, and globals will also get wiped in single-player if someone saves and re-loads their game. Therefore, ensure you code as if globals will never persist between hook calls, except where expliclty allowed.

Tips

Be sure to test in multi-player! When running Server code in multi-player, your lua code runs on the WarLight server which uses a different lua engine. In theory, everything should be the same, but there is still an opportunity for differences. To ensure everything you're doing works, it's recommended you test in multi-player, not only before you're ready to go public, but also occasionally during your development process.

Note that all mods uploaded to WarLight must use the MIT license, or something equally or more permissable. Any mods without a license specified are assumed to be using MIT.


See also:

Personal tools
Namespaces

Variants
Actions
Navigation
Toolbox