RoRRModdingToolkit-RoRR_Modding_Toolkit icon

RoRR Modding Toolkit

Friendly abstractions of the game's internal functions for easier modding.

Last updated 2 weeks ago
Total downloads 3285
Total rating 5 
Categories Mods Tools Libraries
Dependency string RoRRModdingToolkit-RoRR_Modding_Toolkit-1.0.16
Dependants 9 other packages depend on this package

This mod requires the following mods to function

ReturnOfModding-ReturnOfModding-1.0.34 icon
ReturnOfModding-ReturnOfModding

Lua Mod Loader for Risk of Rain Returns

Preferred version: 1.0.34

README

Friendly abstractions of the game's internal functions for easier modding.
Documentation can be found here.

To use, include RoRRModdingToolkit-RoRR_Modding_Toolkit-1.0.16 as a dependency, and place the following line in your code:

mods.on_all_mods_loaded(function() for _, m in pairs(mods) do if type(m) == "table" and m.RoRR_Modding_Toolkit then Actor = m.Actor Alarm = m.Alarm Buff = m.Buff Callback = m.Callback Class = m.Class Equipment = m.Equipment Helper = m.Helper Instance = m.Instance Item = m.Item Net = m.Net Object = m.Object Player = m.Player Resources = m.Resources Survivor = m.Survivor break end end end)

Current Functionality

  • General-purpose helper functions
  • Instance finding
  • Callback setup
  • Network syncing
  • Custom content
    • Buffs
    • Items and Equipment
    • Objects
    • Survivors (still a WIP, but usable)

Installation Instructions

Follow the instructions listed here.