You are viewing a potentially older version of this package.
View all versions.
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
Helper mod for saving and loading Toml config files for SmoothSpatula mods.
Preferred version: 1.0.1RoRRModdingToolkit-RoRR_Modding_Toolkit
Friendly abstractions of the game's internal functions for easier modding.
Preferred version: 1.1.25README
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
- Open the ImGUI window display (default key is
Insert
) - List of possible keys for the toggle
Feedback
https://github.com/hinyb/hinyb-MPSelector/issues
Installation Instructions
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.