Difference between revisions of "Mod support"

From Heroes of Hammerwatch wiki
Jump to: navigation, search
m (Adjusted position and name of alternate modifier documentation.)
 
(15 intermediate revisions by 5 users not shown)
Line 1: Line 1:
Welcome to the modding page! This page is dedicated to offering a list of important information in a ladder to get around modding Heroes of Hammerwatch!
+
Welcome to the modding page! This page is dedicated to offering a list of important information to get started with modding Heroes of Hammerwatch.
  
=Modding resouces=
+
= Starting a mod =
==Starting a mod==
+
* [[Mod base|How to start]]
[[mod_base|How to start]]
+
* [[Info.xml|info.xml specification]]
*XML
+
* [[Unpack resources|Unpacking resources]]
*Unpack
+
 
==Editor==
+
= Editor =
*Editor UI tutorial
+
* [[Editor guide|Getting started with the editor]]
*I dunno how to easily explain how the editor works in a easy format just use what hip did lol
+
 
 +
= Mod examples =
 +
The following pages gives some common examples of basic mods you can make. These are great starting points if you're a beginner!
 +
 
 +
* [[Custom items|How to make custom items]]
 +
* [[Custom Materials (Dyes)|How to make custom materials (player dyes)]]
 +
 
 +
= Scripting =
 +
Everything in the game is powered by scripts. Getting used to the scripting language (AngelScript) will give you a lot of great insight on how to make more advanced mods.
 +
 
 +
== Class models ==
 +
These are the class models that are defined in scripts that do not inherit from any base class directly. Their functions are automatically searched for by the engine and called if they exist.
 +
 
 +
* [[WorldScript Class|WorldScript]]
 +
* [[GameMode Class|GameMode]]
 +
* [[Behavior Class|Behavior]]
 +
* [[Toolkit Class|Toolkit]]
 +
 
 +
= Upload to workshop =
 +
When you're ready to publish your mod, read about [[Uploading to the workshop|how to upload to the Steam workshop]].
 +
 
 +
= List of common resources =
 +
* [[Script Hooks]]
 +
* [[List of modifiers]]
 +
* [https://docs.google.com/document/d/1UMSypmyY6f9GLjdMOlCsipVpKJD08fOJb3zF-46SBew/edit?usp=sharing Alternate List of Modifiers]
 +
* [[SValue Loaders]]
 +
* [[Classmaps]]
 +
 
 +
<!--
 
===How to use:===
 
===How to use:===
 
*Assets
 
*Assets
Line 24: Line 52:
 
*Prefabs
 
*Prefabs
 
====How to put Prefabs into:====
 
====How to put Prefabs into:====
*Levels! lol
+
*Levels
  
 
==Custom assets page==
 
==Custom assets page==
Line 31: Line 59:
 
*Doodads
 
*Doodads
 
*Actors
 
*Actors
*Items
 
 
*Worldscripts
 
*Worldscripts
  
==Scripting/GUI page?==
+
===GUI===
 
*GUI modification and creation
 
*GUI modification and creation
===Scripting modification and creation===
 
 
*GUI scripts
 
*GUI scripts
 +
 +
===Scripting===
 
*Worldscript
 
*Worldscript
 
*Gamemode scripts
 
*Gamemode scripts
 
+
-->
==Upload to workshop==
 
[[Uploading_to_the_workshop|How to upload to the workshop]]
 
 
 
=List of common resources=
 
[[Custom_items|Custom Items]]
 
  
 
{{Template:BaseNav}}
 
{{Template:BaseNav}}

Latest revision as of 02:46, 25 January 2021

Welcome to the modding page! This page is dedicated to offering a list of important information to get started with modding Heroes of Hammerwatch.

Starting a mod

Editor

Mod examples

The following pages gives some common examples of basic mods you can make. These are great starting points if you're a beginner!

Scripting

Everything in the game is powered by scripts. Getting used to the scripting language (AngelScript) will give you a lot of great insight on how to make more advanced mods.

Class models

These are the class models that are defined in scripts that do not inherit from any base class directly. Their functions are automatically searched for by the engine and called if they exist.

Upload to workshop

When you're ready to publish your mod, read about how to upload to the Steam workshop.

List of common resources