You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Which Command
Vanilla command loadout_set_skill_variant
What should it do?
Use loose bodymatching, and change the current character if no body is specified.
The code for the command is found in RoR2.UserProfile as CCLoadoutSetSkillVariant(ConCommandArgs args)
For the loose bodymatching, I believe an IL hook can be performed at the BodyIndex set as the first variable argBodyIndex to the loose bodymatching provided by the mod for other mod commands.
For the second option, it has two routes:
Ignore BodyIndex
This would allow the command to run additionally as loadout_set_skill_variant x y
Requires more editing of the method.
Use 'self' instead
The command could be ran as loadout_set_skill_variant self x y where self is the NetworkUser's current body.
May cause an outlier issue if there is a body with the internal string of 'self', but it is a non-issue.
The text was updated successfully, but these errors were encountered:
Which Command
Vanilla command
loadout_set_skill_variant
What should it do?
Use loose bodymatching, and change the current character if no body is specified.
The code for the command is found in
RoR2.UserProfile
asCCLoadoutSetSkillVariant(ConCommandArgs args)
For the loose bodymatching, I believe an IL hook can be performed at the
BodyIndex
set as the first variableargBodyIndex
to the loose bodymatching provided by the mod for other mod commands.For the second option, it has two routes:
loadout_set_skill_variant x y
loadout_set_skill_variant self x y
whereself
is theNetworkUser
's currentbody
.The text was updated successfully, but these errors were encountered: