You are viewing a potentially older version of this package. View all versions.
hinyb-MPSelector-1.0.1 icon

MPSelector

Add a small feature to select player.

Date uploaded 2 weeks ago
Version 1.0.1
Download link hinyb-MPSelector-1.0.1.zip
Downloads 64
Dependency string hinyb-MPSelector-1.0.1

This mod requires the following mods to function

SmoothSpatula-TomlHelper-1.0.1 icon
SmoothSpatula-TomlHelper

Helper mod for saving and loading Toml config files for SmoothSpatula mods.

Preferred version: 1.0.1
ReturnOfModding-ReturnOfModding-1.0.48 icon
ReturnOfModding-ReturnOfModding

Lua Mod Loader for Risk of Rain Returns

Preferred version: 1.0.48
RoRRModdingToolkit-RoRR_Modding_Toolkit-1.1.25 icon
RoRRModdingToolkit-RoRR_Modding_Toolkit

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

Preferred version: 1.1.25

README

hinyb-MPSelector

This is a small mod that allows you to select player, which can help develop mods.

How to use

  • Press Tab to recyclic selected player

  • Initialize

mods.on_all_mods_loaded(function()
    for _, v in pairs(mods) do
        if type(v) == "table" and v.MPselector then
            _G["get_select_player"] = v["get_select_player"]
        end
    end
end)
  • Use the function to get CInstance of the selected player or nil.
get_select_player()

How to binding

Feedback

https://github.com/hinyb/hinyb-MPSelector/issues

Installation Instructions

Installation FAQ

Special Thanks To

  • The Return Of Modding team

CHANGELOG

v1.0.1

  • Add object_index check to solve the compatibility issue with the other hud.

v1.0.0

  • First upload.