Difference between revisions of "Creating an Entity Mod"

From SkyCorp Global
Line 5: Line 5:
 
== Recommended prerequisites ==
 
== Recommended prerequisites ==
 
* Try making a quick [[Creating a Monster Mod|Monster Mod]] to learn more about text parsing.
 
* Try making a quick [[Creating a Monster Mod|Monster Mod]] to learn more about text parsing.
 +
* Basic understanding of [https://www.json.org/ JSON syntax].
 
* Some basic knowledge on LUA scripting will be necessary:
 
* Some basic knowledge on LUA scripting will be necessary:
 
** If you're already familiar with other programming languages:
 
** If you're already familiar with other programming languages:

Revision as of 03:00, 21 December 2017

Entities in The Underworld are generic objects. They can have custom LUA code, allowing you to make them do interesting things.

These tutorials will help introduce you to writing LUA-enabled mods.

Recommended prerequisites

  • Try making a quick Monster Mod to learn more about text parsing.
  • Basic understanding of JSON syntax.
  • Some basic knowledge on LUA scripting will be necessary:

Tutorials

Reference