#ror2-modding

1 messages · Page 133 of 1

bright quail
#

ty

#

and now i regret it XD

#

cause of a certain chat in there, but still will it be announced when api is back up?

wraith linden
#

prolly

mossy lagoon
#

maybe

#

theres apparently a new api in the works or something

#

expect things to be broken for a while

slow grotto
#

aaaa i messed up, last version for now probably. Fixes Desperado applying multiple times.

naive monolith
#

Ah, it's a relief that one's in the works

slow grotto
#

bandit's alt special

wraith linden
#

yes

#

wdym multiple times

slow grotto
#

had a bug where if you shot an enemy right after they died

#

you could get multiple desperado stacks

wraith linden
#

yes

jaunty shadow
#

Is most mods still dead bc update

tranquil pagoda
#

so uh, with these mods i grabbed, i can host a multiplayer session just fine, right?

https://thunderstore.io/package/Dragonyck/InstantTeleporter/
https://thunderstore.io/package/OkIGotIt/Infinite_Shrine_of_the_Mountain/
https://thunderstore.io/package/ontrigger/ItemStatsMod/
https://thunderstore.io/package/TheTimesweeper/SillyItems/```
mossy lagoon
tranquil pagoda
#

yes no maybe?

#

anyone know if those mods i grabbed are fine in terms of hosting a multiplayer session with no big issues?

mossy lagoon
#

I dunno

#

everyone else should have the mods too

#

if not try it with unmoddedversion

#

though most mods are broken in mp unless everyone has em

naive monolith
#

yeah basically like if a mod adds new content that wasn't in the game already it just doesn't work for the moment, so like skins, extra survivor mods, extra items

#

but if it just alters things that're already there (such as the teleporter turrets mod, which i can confirm works) then it's chill

old flame
#

is ror2 cheats working?

#

i have it running but i cant actually use it

mossy lagoon
#

no it's broke

gleaming cobalt
#

someone ping me when starting items works so i can FINALLY GET THE GRANDPARENT LOGBOOK!

zealous oar
#

is there a working dir for bepinex that i can drag dlls into for mod testing

#

installed via modman rn

mossy lagoon
zealous oar
#

i put it in there and it says 0 plugins loaded, but when i install the mod into modman it works just fine.

#

modman is overwriting the working dir for bepinex somehow i think

mossy lagoon
#

putting the dll into the folder won't make it show up in r2modman

zealous oar
#

i'm well aware. but putting the dll into the plugin folder is literally ignored

mossy lagoon
#

oh idk then

zealous oar
#

dll is in there, runs if installed with modman, does nothing when put in the plugin folder.

mossy lagoon
#

@ebkr

#

I can't mention him mobile lol

zealous oar
#

@wise ferry

#

they aren't online though, so probably worthless to do

wise ferry
#

BepInEx, or r2modman?

zealous oar
#

bepinex

wise ferry
#

Settings -> Browse profile folder gives you the folder you want

zealous oar
#

shows "0 plugins to patch"

wise ferry
#

It’s not in the game directory

zealous oar
#

i have it in the bepinex folder in there

#

C:\Users\trint\AppData\Roaming\r2modmanPlus-local\RiskOfRain2\cache\bbepis-BepInExPack\5.3.1\BepInExPack\BepInEx\plugins

wise ferry
#

Yeah, you’ve done the wrong folder

zealous oar
#

gosh darn it

wise ferry
#

Settings -> Browse profile folder

zealous oar
#

mm. annoying, but makes sense

#

profile based is probably better though

wise ferry
#

You’d need to do both

#

Cache is used whenever a mod needs to be installed

#

Profile is your current state

zealous oar
#

so for mod testing, copy to both folders?

wise ferry
#

Only if the mod is on Thunderstore

zealous oar
#

ah, so for local compilation, just the compile folder.

#

profile folder*

wise ferry
#

Yeah

zealous oar
#

👍 thanks, little confusing, using the mod manager, but probably better in the long run

#

muddling around without use of r2api is slightly difficult

#

everyone's tutorials link off of r2api 😁

wise ferry
#

Basically just don’t have access to On.RoR2

#

And the relevant APIs of course

zealous oar
#

oh really?

#

that's not that bad then, cause I can just use the patcher to access those areas.

wise ferry
#

Yeah pretty much, I mean R2APIs things like the skill API won’t be usable

#

But in theory it’s been made easier

zealous oar
#

I sort of figured out how the skills work, so hopefully that's not a problem.

#

However at the moment, getting the game to add a custom content pack is difficult.

gray mulch
#

I wouldn't say easier or harder, because this stuff only concerns the trivial parts, which as adding your content. It went from 1 line of code to 4 or so, but like, thats not even really what is relevant at all lol. The vast majority of work is always going to be actually making the content, and that is unchanged.

There are debates that can be had about existing mods needing to adopt a whole new architecture, and there are debates about that new architecture being better in long run.

zealous oar
#

current thing i'm having an issue with is that it seems to load my content pack into memory, but it doesn't seem to be storing the information in the contentmanager

gray mulch
#

Are you not using a bepinex plugin for this? if not then you're using stuff that isn't meant for use.

zealous oar
#

yes bepinex

#

i think the way i'm trying to do it is wrong, which is basically add another contentpack to the list before the game starts loading content from that list

gray mulch
#

From a quick glance, you need to hook SetContentPacks with an On hook, do newContentPacks.Add(mypack), and then orig(newContentPacks)

zealous oar
#

that is how i'm doing it, however harmony doesn't require the orig parameter

#

method, i mean

gray mulch
#

Never used harmony so I can't help you there.

zealous oar
#

like i said, it's loading the content pack, i'm pretty sure, but what i add in the content pack doesn't seem to be reflected in game

gray mulch
#

I don't know the semantics. all I know is you need your call to Add before that function executes

zealous oar
#

are cheats uh, enabled by default? so i can test a little easier?

gray mulch
#

Cheats cannot be enabled. I've only needed them 1-2 times when debugging dynamic mavmesh gen and for those cases I hooked the function that checks if cheats are on and told it to return true.

#

There aren't many last I checked

zealous oar
#

well i have a survivordef that isn't showing up in the menu, so wanted to swap the survivor ingame to see if it would work

gray mulch
#

Not really able to help much with this then. All I can say is I know 100% that the way I inject my defs works fine.

zealous oar
#

are you injecting directly into the content manager?

gray mulch
#

Ignore the random commented out emitting of assemblies lol.

zealous oar
#

that is uh, quite complex

gray mulch
#

Its like 6 lines

zealous oar
#

which part of this is the loading portion? that file is massive

gray mulch
#

Ignore the exlipse stuff that is just a feature for saving eclipse progress to config file since game will delete it if the mod is uninstalled

#

The main funcs are AddSurvivor, the cctor, and the Init_IL

#

Shimming is only if you're lazy like me.

#

If you don't shim then you omit the last two calls of Init_Il

vital shadow
#

any mods that increase maximum players in ror2?

zealous oar
#

probably more than one, check thunderstore

#

actually, definitely more than one

versed condor
#

TooManyFriends is one of the mods

#

theres also a way to do it via the built-in vanilla console

zealous oar
#

dedicated server also has a max of 16 configurable

vital shadow
#

does everyone need the same mod for this to work?

gray mulch
#

Last I heard no, but I haven't kept up with that

zealous oar
#

No, only host.

#

Assuming it changes the "maxPlayers" value, if it does anything else possibly not

mossy lagoon
#

everyone needs toomanyfriends

dense cargo
#

does modding even work atm?

jade prairie
#

yes

sharp sluice
#

BetterUI should be fixed FYI

#

If you run into any new issues, do let me know

dreamy forge
jade prairie
#

Yo so there's a mod folder in my ror2 folder after i just installed

#

Was this always there? I might have added it before I uninstalled it before I got it again but I'm not sure

peak wind
# sharp sluice BetterUI should be fixed FYI

Thanks, pretty much everything was working for me before except for the buff timers, but disabling that in the config fixed it. Now with the latest update they're working for me again

#

Fantastic mod btw, it's very difficult for me to play without it now. Great design and functionality all around

solemn ginkgo
#

Hey sorry if it's been discussed about previously in chat, but does anyone know why all my skills that I previously had locked because I didn't do the achievements for them unlocked running via ror2modman?

#

I mean it's not the biggest concern, I'm just more so curious than anything

dry rose
#

does the split screen mod still work

winter sedge
dry rose
#

yeah

#

its called fixedsplitscreen

#

u need to use the console to enable it so u might need a debugging mod

gaunt inlet
#

Quick question, is anyone else having issues of other characters showing up like Rein's Sniper and others, and although I want to get in to modding RoR2 I was wondering if anyone is working on a permanent Desperado buff instead of resetting between stages, or should I get on that?

jade prairie
#

there is one that retains 3/4th charges

gaunt inlet
#

I don't see it on Thunderstore is there somewhere else I should be looking

#

ohh keepbanditskull i didn't realize that's what it meant sorry

#

I didn't realize modding was C++ this might be easier than I thought

solar aurora
#

hey ive been trying to make a custom language pack and i just copied the en folder, renamed the language.json file and edited the names of items. but when i select the language it completely messes up the words. any help?

gaunt inlet
#

Where is the On.RoR2 assembly saved

gaunt inlet
solar aurora
#

Gimmie a sec

#

where would on.ror2 be saved?

gaunt inlet
#

I would like to know the same thing lol, is that your issue

solar aurora
#

maybe? what is on.ror2? im new to this

gaunt inlet
#

oh wait my comment was unrelated sorry

#

I just am having an issue with a dependency

solar aurora
gaunt inlet
#

can you send your json file?

solar aurora
#

which one? language?

gaunt inlet
#

yes

solar aurora
gaunt inlet
#

which other jsons do you have

solar aurora
#

lobby, gamebrowser, gamemodes, credits, credits_roles, discord, hostgamepanel

gaunt inlet
#

can you send lobby

solar aurora
#

i havent edited lobby

gaunt inlet
#

can you zip them all and send it

solar aurora
#

the whole folder or only language and lobby

gaunt inlet
#

entire folder

solar aurora
gaunt inlet
#

so which files have you changed

solar aurora
#

items, artifacts, equip, language.json, icon

gaunt inlet
#
"TITLE_SINGLEPLAYER": "Singleplayer",
        "TITLE_SINGLEPLAYER_DESC" : "Begin a solo run.",
        "TITLE_MULTIPLAYER": "Multiplayer",
        "TITLE_MULTIPLAYER_DESC" : "Find or invite players online.",
        "TITLE_WEEKLY" : "Prismatic Trials",
        "TITLE_WEEKLY_DESC" : "Compete in a fixed seed challenge with other players online.",
        "TITLE_SETTINGS": "Settings",
        "TITLE_SETTINGS_DESC" : "Modify controls, display, and more.",
        "TITLE_LOGS": "Logbook",
        "TITLE_LOGS_DESC" : "Read lore, character details, and how to unlock new content.",
        "TITLE_UNLOCKABLES": "Challenges",
        "TITLE_MORE": "Music & More",
        "TITLE_MORE_DESC" : "Join Communities, learn about the game, and more!",
        "TITLE_EXIT": "Quit to Desktop",
        "TITLE_EXIT_DESC" : "Close Risk of Rain 2.",
#

so its showing the raw code

solar aurora
#

woah i wonder why its doing that

gaunt inlet
#

from my experience with RimWorld you might need a dll file to specify? I might be completely wrong but I would look at another language mod and see the difference to help figure it out

solar aurora
#

if thats the case i may just rewrite default english just to keep it easy for me LOL thanks for the help!!

gaunt inlet
#

No problem just trying my best, new to RoR modding but if you need help and you haven't gotten it in a while from the channel just @ or dm me

solar aurora
#

of course!

gaunt inlet
#

If anyone can help me figure out why it is throwing this even though I have BepInEx as a dependency please @ me I am confusion

plucky temple
#

Is there someone i can talk to about learning how to mod the game? I dont know how im supposed to set up visual studio to get started.

balmy sequoia
#

how is the item description mod called?

final crest
balmy sequoia
#

ty :3

peak wind
glossy mountain
#

so after the update when i try to run modded the character select screen has no characters available

final crest
#

most mods are completely broken

glossy mountain
#

😔

spark sun
#

how do i get modded skins to work?

naive monolith
#

You can't

grand schooner
bronze pawn
#

weeks may be the speculation but some mods may be easier to fix and may get fixed this week

#

it is kind of a gamble

grand schooner
#

i like gambling

mossy lagoon
outer marlin
#

modding ror2 is fun. but my friends call me a 'hacker' and they won't let me play with them

#

anyone know of good modded characters worth giving a try once they work again

proven raptor
outer marlin
#

they said i was hacking or modding when i asked about what items are good to prevent heratic as they never saw him before

proven raptor
#

Casuals

#

They should look things up before blindly accusing people of fraudulent legitimacy of an image

timid swallow
proven raptor
#

I can't WAIT till the Paladin mod gets updated

timid swallow
#

i bet second special icon is still gonna be a placeholder

dire mural
#

I wonder how long it could take to restore 'always run' mod

mossy lagoon
#

sniper is updated for the new patch already

strong bane
#

has anyone modded in Heretic as a selectable character from the start yet? would love to just play as them whenever i want

mossy lagoon
#

yes

strong bane
#

perfection

naive monolith
#

henry's apparently fixed

#

oh and the gurren lagann mod

#

wait, shit, so's the BetterUI

steady moss
#

is there a mod that adds more chests and such?

#

so playing with more than 4 players doesnt get so starved of itesm for everyone

timid swallow
#

yeah, toomanyfriens rn has it's flaws, playing on sacrifice is more beneficial with 5+ players

steady moss
#

sacrifice?

sullen shoal
#

Is there any mod that can handle saving that works properly ?

mossy lagoon
#

not right now

sullen shoal
#

sadge

mossy lagoon
#

propersave is the best one but it broke along with like every other mod after the update

sullen shoal
#

What modes weren't broken

mossy lagoon
#

betterui and itemstatsmod work

#

anything updated since thursday

short rock
#

After an update
do you have to redownload the mods you had
when their updated
to play them again?

timid swallow
#

you have to wait a reasonable amount of time until mod devs basically do them again

short rock
#

Oh no i know that too
Im patient enough (^ - ^)
but
when they update the mod
does that mean we need to download the UPDATED version?

timid swallow
#

uuuuh, im confused

#

do you use r2modman?

mossy lagoon
#

but yeah use r2modman it'll take care of updates for you

serene depot
#

does anyone know about a mod that keeps 100% of banditskullcount?

#

desperado r

wraith linden
#

bruh

#

3/4 is enough trust me

mossy lagoon
#

0 is enough

#

desperado is really strong

wraith linden
#

that too

split lantern
#

Female mithrix skin when?

#

With jiggle physics please.

naive monolith
#

of all the characters to be horny for i dont think Mithrix is a good candidate

pine warren
#

why

#

just why

naive monolith
#

fucking MUL-T is a better choice

toxic jolt
#

mithrix is a hunk

jade prairie
#

someone should make a mod that makes the new alt shift for captain ||A giant laser strike instead of some random missile thingy||

toxic jolt
#

you know it. i know it. we all know it.

primal vault
#

hello, can someone help me modding? I'm interested in some mods but I don't know how to do install the mods

wise ferry
#

you can however install working ones using a mod manager if you're unsure

#

r2modman and Thunderstore Mod Manager are generally the recommended

zealous oar
#

Anyone have any references or tools for creating custom assets for unity games or ror2 in particular? Need to make a prefab, but I'm assuming it needs to have certain scripts attached to it, plus put into a bundle or whatever.

primal vault
proven raptor
#

I want a mod that makes the OST the one from Shovel Knight

paper topaz
#

shame there's no good soundtrack replacement mod

timid swallow
#

only chris chris is allowed to make such a mod

marble nacelle
#

hey, im looking for a way to export the new bandit model into source filmmaker, im currently using asset studio but bandit exists in several pieces, and im not sure which the right textures are, so im wondering how the best way to this would be

versed condor
#

dont know if it works currently

lunar sequoia
#

do mods still fuck my game in the ass

mossy lagoon
#

yes

#

it's been like 3 days

#

most mods probably won't be fixed for weeks or months

reef yoke
#

so long as ChefMod is fixed i can die happy

merry jetty
#

Does the Henry mod by rob work? It was updated recently but I can’t get it to work

versed sigil
#

Is there a mod out there that let's you teleport to any stage

#

Kinda want to see that crystal world

zinc cedar
#

I think you can do that in base game, actually?

#

if you turn cheats on

#

let me see real quick

merry jetty
versed sigil
zinc cedar
#

yeye you can

#

crystalworld is the screen for starting prismatic trials

dry rose
#

is there a mod that fixes scrap gun

versed sigil
#

Ahhhhhhh thats what it is

zinc cedar
#

whoops second screen

versed sigil
#

How about ai test world

zinc cedar
#

just open console with ctrl+alt+~

#

and type in
cheats = 1
set_scene "scenename"

versed sigil
#

Ohhhhh pog pog

zinc cedar
#

komedy

merry jetty
#

Damn that’s cool

versed sigil
#

Kinda sad, wish it was a like a real hidden realm we never went to

zinc cedar
#

yeah
you can teleport to the main menu scene
the dead commando is like gigantic tho

versed sigil
#

Nice nice, has anyone made a mod that adds more stages yet tho?

zinc cedar
#

I feel like there's one or two but I don't really remember
the modding discord could probably answer that

merry jetty
#

What’s the modding discord?

wanton furnace
#

check the pin messages

merry jetty
#

Thanks

jade prairie
#

for modded ror2 every singe characters main skills say under construction and i cant select them. they are locked. ;/

winged cargo
#

does anybody know the state of the mods

#

how many are actually working properly

jade prairie
#

uh

#

do you use ror2 modman

#

if so, check most recent

zinc cedar
#

A lot are still broken :I

jade prairie
#

pretty much only 20 are updated 😭

winged cargo
#

ou ok

#

good to know

jade prairie
#

tho can someone help me? all skills for every suvivor execpt their alts are locked and say under construction

royal marlin
#

So im new to modding on ror2 i have downloaded r2modman and in the directory i dont know which file to set it as

reef yoke
#

dont download any mods right now

#

the recent update threw the api for a loop so mods have to be updated first

royal marlin
#

Ah

mossy lagoon
#

should be steam>steamapps>common>risk of rain 2

royal marlin
#

Ty

mossy lagoon
#

but yeah most mods are busted rn

#

anything updated since Thursday should be fine and there's some other small qol stuff that works

paper topaz
versed condor
jade prairie
mossy lagoon
#

what mods do you have

#

because most mods are completely broken

#

sniper should be fine so there's a conflict somewhere

jade prairie
#

sniper rein

#

heretic selection

#

itemstats

#

and api and bepin

#

i just started modded a few days ago

mossy lagoon
#

might be a conflict between r2api and sniper

#

or it's heretic

jade prairie
#

i had the sniper bug when that was my only mod

mossy lagoon
#

alongside r2api right?

jade prairie
#

yes

mossy lagoon
#

yeah then it's probably a conflict

jade prairie
#

is api brokeb then?

naive thunder
#

i have api rn and sniper works perfectly fine

jade prairie
#

huh

#

you can see all ur skills?

naive thunder
#

yep and skins

jade prairie
#

maybe i should do a reinstallation

#

anyways thanks

#

so

mossy lagoon
#

hm weird ill have to test later

jade prairie
#

which should uninstall/reinstall

naive thunder
jade prairie
#

cool

primal crypt
#

xcom?

zinc cedar
#

looks like classic ror1 sniper?

jade prairie
#

IT FIXED

naive thunder
#

Nice

jade prairie
#

YES LETS GO THANKS SO MUCH

#

and i can see the other skills too

naive thunder
#

Proceeds to not tell the solution, so other players with same issue gets furious 😄

jade prairie
#

i just uninstalled the sniper mod and reinstalled it

#

sorry for not telling

#

but i got rid of the heretic and item stats mod too

#

so maybe that worked idk

naive thunder
#

this one?

#

it works fine for me, so no worries

mossy lagoon
#

funny picture

halcyon blade
#

What mods do y'all enjoy playing most

spice vault
#

acridregenfix

naive monolith
#

Enforcer

#

And also the DBZ character mods

naive thunder
#

Shared, where you can enjoy game with friends instead of fighting for items, who is faster, who is closer, changing the game from PVPVE (People vs People vs Environment) to actually pve co-op where we can play together

round adder
#

Do mods work now?

spice vault
#

not all of em, a few got updated

jaunty shadow
#

sry for the ghost ping cruel i didnt see you got it fixed

jade prairie
#

its fine 🙂

#

i dont care about pings or anything like that

lunar sequoia
#

risk of cheats work yet

jade prairie
#

idk

tough urchin
#

Why did hopoo have to fuck mods

mossy lagoon
#

no

jade prairie
#

i just want starstorm updated, but that would probably have to take a few weeks because of the new final stage

mossy lagoon
versed condor
#

it was an unintentional fucking of the mods (at least to this scale)

ripe perch
#

it was meant to be good in the long run

#

but still sucks right now

#

terraria has gone almost a year without mods on 1.4, i hope ror2 doesnt have the same fate jermaPluto

versed condor
#

ror2 probably wont meet the same fate

mossy lagoon
#

I mean they knew how breaking it was going to be but I don't think it should have been released on live client yet

ripe perch
#

at least terraria has tmodloader as a seperate thing from terraria

mossy lagoon
#

probably should have been on beta branch until the new system is complete and give modders more time to transition

frigid shale
#

Hello, guys. Is there somewhere I could find a detailed tutorial on how to setup your own dedicated server of RoR2? Because me and my friend are trying to set it up following a thread on steam forums but it doesn't seem to work 😦

fathom sun
#

back to spinel tonic fking my eyes again nooooooooooo

cursive hull
#

does anyone know a fix for r2modman, some of the mods i install dont work in game. (sillyitems, betternames, and ror2cheats)

naive thunder
#

@cursive hull

cursive hull
#

k

naive thunder
#

Update came 25th so we need to be patient for modders to update @cursive hull

mossy lagoon
#

cheats and betternames are broken

#

silly items should be fine

thorn swift
#

Hey guys, I have a question.

#

My steam account is used across 2 pc's, but for reasons I want mods to specifically be on a single PC.

#

Will it mess with my game if I download mods on only 1 pc or do i have to have them on both or what?

mossy lagoon
#

it's fine to have it on one

thorn swift
#

Oh ok

#

What're good mods?

#

Im definitely getting enforcer but what else is there

naive thunder
#

@thorn swift enforcer doesnt work rn

thorn swift
#

is there a mod that adds lemons into the game

naive thunder
#

Buut depends what you mean by good, i personally love shareditems when i play with friends, but scraper is fucked rn so just dont use scraper if you want multiplayer.

thorn swift
#

or banana peels that enemies can step on and they slip and get stunned

naive thunder
#

Sniper works fine if you want custom character

thorn swift
#

ok, ty

dry rose
#

any one else having problems selecting characters in the menu

#

nvm figured it out the split screen mod doesnt work

mossy lagoon
#

most mods don't work

dry rose
mossy lagoon
#

they don't

timid swallow
naive thunder
#

Ugh, false hope and lying, someone said henry works after patch but it doesnt! The wait for enforcer is killing me

#

What a timing xD

timid swallow
#

damn

#

I didn't try it

#

it's really strange, someone told that when they opened-closed the game a few times it started to work

naive thunder
#

bamboozled dumbdazed

timid swallow
#

but then it stopped

#

omegalul

#

well I didn't try it out myself
I just trust rob too much haha

#

he updated it and that's a fact

naive thunder
#

WAIT

#

damn, maybe it actually works, i have version from yesterday but there is a one from today, 28

#

but r2modman doest let me update

old flame
#

is r0r2 cheats working yet?

empty fog
#

I accidentally launched modded and it fucked up my save

#

how do I fix?

young dock
#

it most likely just created a new profile.

empty fog
#

aight I just did the xml thing.. false alarm

coral lotus
#

Can somebody please make a Zenitsu Mercenary skin?

#

And then we can equip these and make a real lightning wielding melee character

#

And that overloading worm boss item

thorn swift
#

h heaahoo weabooo ape noise

coral lotus
coral lotus
mellow mason
#

hey guys, downloaded r2modman and some mods, started the game, it told me to create a new profile and all my progress just vanished. what should i do? i think it deleted my profile

coral lotus
#

New update came out, mods that haven't been updated to the new version won't work most of the time

#

So for now we have to cope with no mods

#

Sorry brother

mellow mason
#

and if i delete this mods, everything will be fine?

coral lotus
#

No, you have to reload your old save, this save is corrupted

#

Follow these instructions directly

mellow mason
#

thanks a lot, i got so scared

gleaming cobalt
#

does stutter stunter still work?

mossy lagoon
#

probably not corrupted

#

just uninstall mods and change profile in game

coral lotus
#

@mossy lagoon The method I linked worked for me anyway, so doesn't matter which way you do it

short rock
tacit shoal
#

its like a mod manager, you can download and set up mods from there.

short rock
#

oooooh?

tacit shoal
#

pretty easy to use and figure out. much better than manually installing and disabling mods.

#

but right now most mods arent working since the game just recently updated.

fossil dagger
#

wait so as of the recent update, the majority of mods dont work? unless a select few that have already been updated or?

wraith linden
#

yes+

dreamy forge
#

^

naive dune
#

does anyone know any updates about the R2API update?

burnt quartz
#

does anyone know a working mod to increase the number of players on r2modman

fossil dagger
mossy lagoon
acoustic raft
#

😔

gilded jolt
#

Got an idea for a modded character, just spitballing

#

Name is like Duelist or something

#

Think three musketeers vibe

#

M1 is a flurry of three stabs, M2 is a flintlock pistol, utility is a lunge stab, and special would be a, I dunno

#

what would be a good special

acoustic raft
#

isnt that just acrid 😳

mossy lagoon
#

charged railgun

gilded jolt
#

m1 is also similar to huntress flurry

#

procs bleed on every 3rd hit

mossy lagoon
gilded jolt
#

would her special be, like a cannon or something?

#

that would fit the theme

mossy lagoon
#

lightsaber

gilded jolt
#

maybe her foil could be a lightsaber, this is the future after all

mossy lagoon
#

that's kind of like artis black hole move from old floodwarning

#

cube but it explodes

gilded jolt
#

harpoon cannon that hits the enemy, does massive damage, pulls them towards duelist, and stuns them

#

hmmmmm

#

nah

#

what about a buffing special

#

something that increases attack and movement speed for herself and all allies... oh no that's just gorag's opus

gaunt inlet
#

I'm confused so is R2API being stripped and replaced with EnigmaticThunder?

gilded jolt
#

you know how blackbeard kept like, 6 pistols tucked into his vest or something, maybe that could work

#

just pulls out flintlocks one after the other, maybe scoring a kill with the pistols increases the duration or something

west parrot
#

Is there an ichigo mod for mercenary?

#

Or a gintoki one?

proven raptor
#

I'm sad no one made a skin mod for Bandit that makes his default skin Zer0 from BL2 and the Chilly skin Handsome Jack

west parrot
#

That would be awesome to the bone

proven raptor
#

I'd kill to play as Handsome Jack in ROR2

west parrot
#

What about Ben 10 and each ability lets you change form for a short amount of time

proven raptor
#

OOOOOOOO, a Ben 10 Survivor that lets you change into different aliens, maybe even choose which alien goes into which skill slot would be amazing

shadow rock
#

any customs skins for bandit?

proven raptor
shadow rock
#

I would really love to see a simple black and red combo

proven raptor
#

TBH I'd love to see a mod that adds certain Overwatch Characters as Survivor Skins

ocean vessel
#

does anyone know if certain mods are crashing ROR2 im trying to start it with the default mods and the cut scene never starts while the music for it keeps playing on loop

spice vault
#

a lot of mods are broken right now because of the update

ocean vessel
#

lol fuck it ill just mod the game inna month after all the modders got the shit sorted out

west parrot
#

Ultra Instinct Shaggy survivor would be amazing

gleaming scaffold
#

you guys like my Hammerfall refrence for the mithrix dialoge?

dusky sluice
#

is R2API updated yet?

brittle swift
mossy lagoon
dusky sluice
#

ah shit, is there any alternative api (either completed or wip)?

mossy lagoon
#

enigmatic thunder

#

it's on thunderstore

dusky sluice
#

ah ok

young sinew
#

Anyone wanna assist me on setting up a modded lobby? Im bad at this kind of stuff

turbid osprey
#

What is the mod that if you pick up a item everyone gets it?

#

nvm found it

rocky rover
#

anybody got the copypasta text edit to unlock the new things?

jade prairie
west parrot
#

since theres a goku mod that already changes forms

jaunty shadow
#

so apparently

#

you cant have R2API and EnigmaticThunder active at the same time or the game black screens while trying to load in

deep sonnet
#

so just downloaded a few mods and everytime I launch game it says resourceavailability.availability not found and game won't launch

#

I downloaded using thunderstore mod manager. am I missing something?

jade prairie
#

Most mods are broken right now due to the recent update

deep sonnet
#

ahhh ok makes sense

jaunty shadow
#

@deep sonnet if you filter by recently updated and check for ones that updated after the anniversary update they should work

rustic heart
#

If I have mods and my friends are playing modded as well do we all need multiplayer mods for it to work? Or will just mine work?

dreamy forge
#

Everyone should have the same mods

#

unless it's just client side stuff like betterui

wise ferry
vocal galleon
#

pepecry cant even pick a diff or artifacts

vocal galleon
#

found da culprit

#

hmmminteresting why does mystic's items fuck up my ui

iron crow
#

Does enigmatic thunder fix some of the busted character mods?

dreamy terrace
#

Hi guys, I want to use RORcheats mod. but it requires the riskofoptions mod. There are some instructions in the riskofoptions which I am clueless on how to follow. It requires me to do something with visual studio

vocal galleon
#

still makes me wonder

brisk stag
scarlet acorn
# outer marlin modding ror2 is fun. but my friends call me a 'hacker' and they won't let me pla...

just for some clarification.
he was using a ror cheats mod that unlocked him everything and gave him like 60+million lunar coins.
ik this because i am one of his friends but i'm not the ones who have called him hacker, all i've said is i can see that they were a bit salty and tilted because everyone in the group has gotten them legit and all he had to do was download something to get them.

like i said to him in dms after he told me what happened, when i come back to play with him i won't mind as long as it isn't something stupid like god mode or something so i'll still be playing with him, but it is a bit annoying that all he did to unlock more things was just a simple download while the rest got it legit.

there isn't any rule books that says you can not do this so yea.

however i still don't think he deserved to be ignored and abandoned because he downloaded a cheat mod and they all play ror casually except me (i'm the odd one out, they call me a sweat XD)

timid swallow
#

lunars coins are such a hassle, lunar items are too fun not to hack everything in

scarlet acorn
#

it isn't too hard to save is it?

#

i almost never use lunar items so i've got a lot XD

timid swallow
#

yeah, depends on playstyle

scarlet acorn
#

yea i guess

#

you do also experiment a lot during your time as a noob

timid swallow
#

getting a ton of magnets and lunar chimeras from aetherium mod was too funny to save em lmao

scarlet acorn
#

oh i was talking about vanilla lol

#

i haven't started downloading mods yet, any recommendations?

timid swallow
#

recommendation is to wait

#

cuz nothing works rn

scarlet acorn
#

wdym nothing works?

scarlet acorn
#

oh

timid swallow
#

mystic items, aetherium, supply drops for items

#

but only when things will be up and running again

timid swallow
#

everyting changed in game internally

#

with the new update

jade prairie
brittle swift
#

with starstorm2's roster of completed models i cant wait for this mod to be updated

#

i like the big dude, executioner, the robot with the barrel, and the guy crouching next to the axe the most

vocal galleon
#

that looks sick

brittle swift
#

i didnt even notice the guy next to the blocky dude

#

with the square helmet i like him too

#

goddd i want it to update so i can play some more executioner

#

wanna get his fallout skin

timid swallow
#

knight gonna join in a bit

naive monolith
#

every day is another f in the chat

naive monolith
#

well in other news the Tracer character mod did get updated

#

so that's something

wraith linden
#

😭

outer marlin
#

if you are looking for a challenge you could also use multitudes which allows you to choose how many players the game sets in difficulty such as a solo run being the loot and difficulty of a 4 person game

#

just remember to download r2modan to get your mods easier into ror

timid swallow
#

so

#

if you have mods that work on enigmasomethingsomething and on r2api, you need to choose one as i understood

#

sniper is up n runnin, icon for spotter debuff is just red square and there's no item displays, but so far everything is good

outer marlin
#

is sniper a good mod?

#

i heard one sniper mod is like captain where you need to time shots

wise ferry
timid swallow
#

wait guys

#

he can't spawn mithrix yet

#

gotta wait a little till moff does a tweak

#

but yeah, essentially sniper is all about timing the shot, and moff's does it really fast

upper harbor
#

any1 got propersave working on the latest update?

full flicker
full flicker
delicate topaz
full flicker
full flicker
sharp ice
brisk stag
sharp ice
#

which one?

#

oh wait

#

well poop

dreamy forge
#

gets 'em every time

brisk stag
dreamy forge
#

99% of users don't usually think to check for a new pin

#

Can't blame them either so it's whatever as long as someone says CheckPins lol

brisk stag
#

The CheckPins is definitely our savior

timid swallow
jade prairie
#

Well then remove it lol

sharp sluice
#

Yeah the ratio is similar for most mods I think

mossy lagoon
#

except moistureupset

clear lichen
tiny stone
#

is there a way to unlock all logbook recordings?

real kite
#

is r2api still recommended right now? or has it not been updated?

abstract valley
#

hasn't been updated

feral geyser
#

r2api is unrecommended and can break stuff at the moment until it's been updated

lyric sand
#

Ayo what is the "Potmobile" in the game files

sterile idol
#

Is there a tutorial available for making a simple modpack?

hollow oracle
#

still hopeful to see admiral updated eventually, I really liked the beacons from that mod

remote briar
sharp sluice
#

Kinda, not as a simple swap for end users

acoustic raft
#

No, there are absolutely no mods for ror2 😳

sharp sluice
#

Go to the page i linked lol

#

Well that's where you get all the mods lol

#

Good luck without it

#

No

#

I literally linked you to page with all the mods and you said "nah" and you want to talk about attitude? Lmao

#

Lmao

desert furnace
static helm
#

Maz more like cringe

wary epoch
#

anyone know why the r2modman might not work after the newest update its not letting me select my main profile and when i select the profile my friend uses there are no character choices

deep sonnet
#

So I enabled enigmatic thunder. the mod loader terminal is showing no errors in regards to the mod but the game won't launch past the black screen?

static helm
#

Mods are broken

#

Wait for a new API

deep sonnet
#

yes but enigmatic thunder was updates like yesterday so it should be fine since that was after the anniversary update no?

deep sonnet
static helm
#

New update changed a bunch of internal code, modders are trying, just be patient

wary epoch
#

ah so we just have need patience right now thats fine

static helm
#

Yes

acoustic raft
#

Enigmatic thunder works but not with R2API at the same time I believe

static helm
#

99% of the mods dont work right now, just wait, in the meantime vanilla is still extremely fun

deep sonnet
#

so groove is right

static helm
#

Huh, gonna give a look at that, but the general consensus is most mods dont work and wont work for awhile

deep sonnet
#

I'm just gonna do what you said tho and play vanilla until it all gets updated

acoustic raft
#

Yeah a few mods work rn but selection is pretty limited

#

People are starting to update tho

wise ferry
#

not an r2modman issue

sharp sluice
#

@deep sonnet

#

Same for you

acoustic raft
#

Oh good to know

deep sonnet
sharp sluice
#

It fixes R2API and ET working together

deep sonnet
#

ok cool thx^

acoustic raft
#

Sorry I’m a bit out of the loop rn

sharp sluice
#

While you're at it I recommend installing BetterUI cause it's great

#

Lol

deep sonnet
#

It's my first time playing modded risk of rain I just wanted to play as goku cmkLUL

#

and then there were all these other mods I wanted

sharp sluice
#

Well, my totally unbiased recommendation is BetterUI

deep sonnet
#

well tbh I also looked for other playable character mods like whitebeard but there's no mod for that rn.

deep sonnet
sharp sluice
#

Well if you have BetterUI it would've come with MMHOOK which fixes ET/R2API

deep sonnet
#

I definitely didn't just look at the mod manager and see an update for BetterUI with your name on

#

not at all

sharp sluice
#

What no why would it have my name on it that's weird

deep sonnet
#

right I think someone's messing with the mod launcher

sharp sluice
#

Yeah

#

Well just make sure you have MMHOOK Standalone

deep sonnet
#

yeh I installed it. thx^

brittle swift
pulsar latch
#

anyone knows why i can't see any added characters (ex:tracer or gunslinger)?

timid swallow
pulsar latch
#

i downladed by r2modmanager but i doesn't show any character except sniper

brittle swift
#

ahhh

#

i dont have ror1

jade prairie
#

is there any way to contact people who make mods?

brittle swift
#

bigger fan of the 3rd dimension and all that

acoustic raft
jade prairie
timid swallow
brittle swift
#

dragonyck's mods are fine i just really dont like the models

#

gunslinger has that weird skeleton arm and tracer is just

jade prairie
brittle swift
#

that's just bri'ish overwatch

jade prairie
#

and other stuff is unfinished or scam

#

with 0.00001 of games actually being decent

#

thats just how i see it

timid swallow
#

and things that brought me in was isaac and terara

#

based

jade prairie
#

on what?

timid swallow
#

on yomama

jade prairie
timid swallow
full flicker
#

does anyone perhaps made a list on which mods are currently working properly or is it just trial and error?

sharp sluice
#

Anything updated after the patch dropped

#

the rest is trial and error

stuck bluff
#

Am I allowed to ask a question about ror1 modding or will I be banished

#

lol

cunning horizon
#

does anyones mods work?

#

like my game is black screened

#

whenever I run the mods 😦

stuck bluff
#

Most ror2 mods aren't updated to work for the new update

cunning horizon
#

dang

stuck bluff
#

It's unfortunate but hopefully most of them should be fixed soon :D

cunning horizon
#

I hope

#

I like playing with the mods

#

but vanilla is also great

stuck bluff
#

the paladin mod is kinda broken for me atm

#

Like they updated it to work with the new update

cunning horizon
#

huh

stuck bluff
#

but once I spawn in I cannot move at all lmao

cunning horizon
#

i only got a couple mods updated

#

but ive been waiting for all of them to

#

update

stuck bluff
#

idk if anyone can help me but ping me if you can: The ror1 mod loader rainfusion just kinda stopped working for me. Well, the mod browser feature won't work and continuously asks me to re-launch it with administrator. I even tried uninstalling it and re-downloading it but that hasn't worked unfortunately. Maybe I've missed something obvious but i dunno how to get it to work again

fickle cradle
#

Yo anyone know why the Sayians are still not showing up when running their mods? 😦
I was guessing those 3 sayians would work, because they each had an update when i run it earlier

lyric sand
#

Mods are all broken rn

west parrot
#

a one punch man mod for loader would be awesome imo

#

it makes so much sense

alpine relic
#

How do I save edit

sharp sluice
lyric sand
#

For the most part

sharp sluice
#

No

lyric sand
#

Have to do testing

#

Oh okay then

timid swallow
#

i wonder if modloader dev is here

sharp sluice
#

There are plenty of mods that didn't break or have already been updated

lyric sand
#

Sounds good

timid swallow
hard bone
#

unfortunately just doesn't work for some people

#

never had any idea why

#

you'll just have to manually install mods from the website

timid swallow
#

big sadge

#

at least manual installing is pretty easy

alpine relic
#

Seriously how do I edit my pc save

stuck bluff
#

😔 well that kinda sucks

#

Not that big of a deal tho

#

Also idk if you can anymore unless I've completely missed something

alpine relic
#

Dang

full flicker
alpine relic
full flicker
#

care if you join me in a voice channel?

alpine relic
full flicker
#

ahh <.< ill dm ya with the info then

alpine relic
hollow oracle
#

so does this actually work with anniversary?

#

still depends on r2api, and having that loaded throws some errors

reef yoke
#

if it has been updated in the past 2 days, yes

mossy lagoon
#

r2api throws errors but it's fine

old flame
#

does anyone want to know if ror2 cheats works?

hybrid minnow
#

ror2 cheats currently doesn't work

#

at least from my last test just right now

old flame
#

When i launch the game with mods i know work it says i have no mod errors but i have a vanilla error?

reef yoke
#

unless they have been updated these past few days, mods are broken and will not work properly

brittle swift
#

its me! goku!

cobalt sand
old flame
#

sad

brittle swift
#

i wish r2modman had like, a checkmark next to your mods in the installed tab so youd know that they're up to date/compatible with the current version of the game

modest hill
#

in the Risk of Rain 2 folder for the game, there's now a "Mods" folder with a text document named "enabled_mods". Do I put mods in here now or do i continue to use r2api

alpine relic
#

Is dire seeker mod still working?

nimble rune
copper herald
#

Curious is Verisitile Survivors will be updated
Or if there's an alternative, looks like great fun

brittle swift
#

does paladin feel a bit janky after the update now?

#

his run animation is weird

#

and his equip regions are all janked up

#

and his skins are missing too, wtf :(

main agate
brittle swift
#

which version you using

main agate
#

newest

#

legit just downloaded the update that just dropped for the mod

#

now that i think of it goku isnt showing up either

brittle swift
#

that's weird

main agate
#

yeah actually a good amount arent showing that are updated

#

but for some reason sniper is

#

my least favorite custom character D;

untold berry
#

Just a heads up for the upcoming walkthrough, you may need to add me for discord PMs. I attempted to add you, but it seems you have requests disabled for just mutual servers. I also attempted to do a bit of DIY in the meantime and getting to learn how to use DNSpy a little better, though, it seems far more convenient to make a new mod than to edit an existing one, or so I've found.

gray mulch
#

Yeah it is. For docs its probs best to go to the wiki tbh. on thunderstore theres a for developers dropdown at top somewhere with a link.

untold berry
#

Aye.. And the only successful compile (god knows how I managed, I can't replicate it), destroyed a lot of the game's functionality. I think it's safe to say I'm not very good at this. commandosweat

main agate
gray mulch
#

yes

main agate
#

uwaaaaa thats lit i miss that mod lmfao

gray mulch
#

me too :(

main agate
#

why sad? you ditching it or something?

gray mulch
#

broke and its basically not fixable without insane time spent.

main agate
#

ahhhhhh damn it will be missed

untold berry
#

I did hear that certain things after the modding support update went a little downhill? I assume it's rather specific as opposed to effecting the entirety of character modding, considering the Paladin mod seems to be up and running again?

gray mulch
#

Just a new system to learn, not a big deal unless your mod concept or some features aren't possible to express with new system.

main agate
gray mulch
#

tbf it wasn't expressable on old system either the old system just had some stuff I could exploit to get it working

untold berry
#

I think that's mostly just because all other mods are currently outdated, as a lot changed and a lot of mods call for functions that I believe are different? (At least that's my understanding of it)

brittle swift
#

im just sittin here bbq sauce on my titties wondering why when i was in a game earlier i got kicked to the main menu without as much as a pop up

untold berry
gray mulch
#

The wiki is basically fine. There are just going to be 2-3 things you tweak

#

If you run into major issues just ping me and I'll take a look

untold berry
#

Fair enough. Speaking of tweak, perhaps I'll be able to look into the code of existing mods to get a basic understanding of adding a new character to the select screen? I was thinking of using the Heretic Selection mod as a basic reference of adding an existing body to it.

#

Since it's one of the newer mods that achieves a similar goal with the new modding stuff.

wraith linden
#

do the goku mods not work? thought they were updated :c

#

sadge

lusty hollow
#

are bepin and r2api updated? do they even need to be updated for the current patch of the game? I thought I saw someone saying something about them needing an update still. maybe im just going insane lol

feral geyser
#

It works for a few mods though that don't rely on certain features

mossy lagoon
copper herald
alpine relic
#

Does dire seeker still work

mossy lagoon
#

no

alpine relic
#

Dang

naive monolith
#

i showed you my power level answer me

wise ferry
#

clearly asking for a friend

wraith linden
naive monolith
#

Yes

split lantern
#

is auto-sprint client-sided only?

tender pebble
#

just curious, in r2modman if you create a new profile will that still transfer progress from vanilla and when switching to the already existing account with progress be lost?

jade prairie
#

how the hell did this happen

versed condor
#

i see nothing wrong with that image happiesttroll

wise ferry
jade prairie
#

and this is the code

naive monolith
#

That's a lot of lunar debt

prisma oracle
#

you went over the 32-bit integer limit, so the values wrapped around into the negatives

#

the coins still work fine

tender pebble
neon thistle
#

does Multitudes still work?

wise ferry
#

So progress is the same regardless of r2modman profile

tender pebble
#

even progress within a mod?

wise ferry
#

Depends how it’s stored

#

So it’s hard to say yes or no

tender pebble
#

ah ok

#

i was gonna make another profile so i could only use mods that have support on the anniversary update

fiery palm
#

im a lil confused, i downloaded some mods that said they were updated for the anniversary update but they still dont show up for me in game

brave belfry
#

having the same issue

brittle swift
#

hoping when enforcer is updated i dont have to unlock nemforcer's mastery again

jade prairie
#

how do you host modded games for modded clients

mossy lagoon
#

have everybody have the same mods and the just host a lobby normally

jade prairie
#

but ive joined modded games without having mods

#

shared items and more than 4 playes

#

i want to host a modded game for some friends

stuck bluff
wraith linden
#

AND THIS IS TO GO EVEN FURTHER BEYOND

jade prairie
sour torrent
#

why does the paladin run like an idiot now

#

it looks ridiculous

untold berry
#

@gray mulch I think I've gotten somewhere, I've built the mod with what I assume are the correct dependencies utilizing some code from another mod, there's just one major issue.. As much as it compiled with no errors, it seems to have lead to the exact same problem from my disorganized attempt with DNSpy from earlier. An intro cutscene that's unskippable, all of the subtitles are broken, and the game shortly softlocks after it's finished. 🤔

#

I'm trying to see if the console is outputting any major errors related to the mod, though I'm not seeing any regarding it's name.

#

I think I may require further guidance.. I have absolutely no idea how to set this up from scratch and the wiki provides very little info on how to do exactly what I'm trying to aim for.

gray mulch
#

That means an exception in awake

#

Err, more than just exception. You need an exception that propogates to application init

#

It will show in console or something is horribly wrong

untold berry
#

Oh right, just found it I think

gray mulch
#

Should be hard to miss lol

untold berry
#

Probably just blind or somethin'.

gray mulch
#

Are you looking at bep console?

untold berry
#

Mhm.

#

I think the problem is, I may have forgotten to rename a few things.

gray mulch
#

Erm

#

There is zero red text anywhere in console?

untold berry
#

Oh there was.

gray mulch
#

Ok that is the error lol

untold berry
#

Though having a bit of a hard time deciphering it

gray mulch
#

Paste it here

#

I'll give example for how to clean them up a bit

untold berry
#

Eh, gimmie just a sec. Gonna see if a newer version outputs the same thing.

#

Then I'll paste it if it still occurs.

#

Uhh, here, this is what's being shown when the intro loads up. Yes, the mod's called GrandDad, is using code from the heretic mod, and no it's not being distributed, I'm not thievin' code

#

I'm unsure how hard this mod's killing the game from this error. I can't quite understand it properly.

gray mulch
#

Its because this is happening in a hook to contentmanager.setpacks. that method is called in games main init and if a throw happens there game stops load because its basically a critical issue.

#

I don't know of any other way to add a pack though

#

Although I don't think you're adding one anyway

#

Regardless. That line: Sequence contains no matching element, is the problem

#

Whatever you are looking for in the sequence doesn't exist.

untold berry
#

I imagine it's happening because of this line then.

gray mulch
#

Maybe. Basically nobody here uses harmony though, including me, so its gonna be harder to get help.

jade prairie
#

Yay most mods I want updated today! Any update on star storm or enforcer mod?

prisma oracle
#

they aren't working yet

copper herald
#

Starstorm 1 is getting the Knight in its next update

jade prairie
#

Coo

copper herald
#

Only Melee survivor i like is Acrid, and Han-D to an extent atm
So idk, ill just have to play him and find out

spark sun
#

i have the r2modman and i downloaded paladin mod and bepinex and r2api, but hey wont show up, anyone know why?

untold berry
# gray mulch Maybe. Basically nobody here uses harmony though, including me, so its gonna be ...

Hm. Maybe I could ask the author.. Rein, do you know if the wiki, or at least this bit is remotely up to date? The mod I was trying to use code from was roughly my only real idea of what to really do, and I'm kinda lost if this is no longer functional. And regarding the tweaks, I'm still unsure what exactly I'm looking to do differently. How hard would it be to use something like this to point to a vanilla body ID on the select screen? Stuff like HAN-D for example.

#

There is a more updated tutorial though, that seems more for custom made characters with new models and skills as opposed to what I'm trying to achieve.

#

If need be I can probably try to look for further solutions on the main modding discord. I may have an easier time starting out there.

pine dragon
#

anyone managed to get twitchvs runig? each time i try to start a run i get a black scren and the console spams red messages

scenic loom
#

may not exactly modding but anyone know how the change the names of bosses and items in the files?

mossy lagoon
#

in the language folder

#

bunch of txt files

scenic loom
#

Ty

sharp ice
#

Is it possible to go to an earlier version of ror2 to get mods to work?

untold berry
sharp ice
#

Danken

jade prairie
#

i wish fw artifacts was updated 😦

spice vault
#

has anyone tried to import acrid's model into blender recently ?

mild star
#

Does anyone know what the Playable Mini Mushrum mod is called?

teal cave
#

Engineer

mild star
#

:(

#

Your not wrong

#

lol someone should make a mod for Tricky the clown using the gmod addon model

mossy lagoon
#

go for it

#

also playable mini mushrum isnt a mod but you can use console commands

#

though i think the spawn_as command is broken in debugtoolkit

teal cave
#

P O T M O B I L E I S R E A L 4 0 4 2

next shoal
#

so I've got the updated Paladin mod installed and I've set the Config to force unlock the character, but it's still not showing up

#

are there any mods it conflicts with?

brittle swift
#

ive set up a mod profile ive called vanilla plus if people want to try it out

#

3F1W9YOYTM

carmine quest
#

are the mod authors working on the mods right now?
cuase minerunearther enforcer sandstorm2 more items are all decrepted

jaunty shadow
carmine quest
#

kingmods got his updtaed in like 2 days

jaunty shadow
#

yes

#

some people work faster

carmine quest
#

i removed alomst everymode(disable tell update) still wont work no enamies spawning in is bepinex updated?

mossy lagoon
#

bepinex is game and version agnostic

#

it's a dll injector

#

doesn't need to be updated

hollow oracle
#

also people have things to do

wooden crystal
#

Any modders here?

#

I just altered my “support” idea.

#

Medic

Escape: And so she left, emotion stripped from her.

[Passive]

Passive:
+enemies that have not been provoked by Medic will not attack her.

[Primary]

Particle beam:
+can attach to allies to heal them and enemies to hurt them.

[secondary]

Triple battery:
+Medic can lock onto 3 targets for 5 seconds.

[Utility]

Relieve:
+regenerate 50% of health lost in the past 3 seconds.

Boost: unlocked after healing 10,000 health with relieve in 1 run.
+Medic boosts her speed, attack speed, ability cooldown speed, and jump hight for 5 seconds.

[special]

Healing pack:
+Medic heals herself and surrounding players for 25% of their health every 1 second for 5 seconds.
-Healing is reduced by 5% for every 1 player in the healing’s range. ( Medic: 25%, 1 nearby players: 20%, 2 nearby players: 15%, 3 nearby players: 10%).

Nano aura: unlocked after gaining 50 items that can heal other players.
+for 6 seconds, all players within Medic’s aura have reduced cooldowns.

lament rampart
wooden crystal
#

How about it stops at 5%?

copper herald
#

If you wanna be a support
Stack Bungus and Leptons
And Stand
Be a living dispenser

kind forum
#

Edited message

versed condor
kind forum
#

Oh

#

Dumb moment

bronze saffron
#

so, im fairly new to this, how bad is it to use deprecated mods? I get that they are outdated but does that necessarily mean I can't use them? and in multiplayer?

brittle swift
#

it means what it says on the tin. its probably not supported, functional or both anymore

bronze saffron
#

alright thanks

brittle swift
#

starstorm2 is gonna be fuckin spicy spicy spicy spicy when they add more characters im genuinely excited after seeing how many they have

#

executioner is fuckin sick

dense pivot
#

this is what my ror2modman looks like when i start up modded, anyone know why?

brittle swift
#

your mods are outdated

#

look for mods that have been updated in the past 4 days

dense pivot
#

ohhhhhh i didn't know you had to manually update alr

vagrant gate
#

hey so, I'm struggling to figure out how to install the enigmaticthunder mod. Do I put it in the BepInEx>plugins folder, or should it be BepinEx>plugins>plugins ?

haughty leaf
#

It should just be Bep > Plugins also highlly recommend using r2modman. makes things much simplier for instaling

vagrant gate
#

okay thanks! I didn't know r2modman was a thing so I'll give that a shot

haughty leaf
#

It's basically pinned on Thunderstore so hard to miss atleast 😛

dense pivot
#

for some reason no enemies or bosses are spawning, i'll send my modlist but I can't imagine any of them messing it up

#

its worth noting that the auto sprint isn't working

reef yoke
#

dont use mods right now

timid swallow
#

i don't remember seeing spawn overhaul, item tweaks, hypercrit n multjump updating

#

and yeah, even simple but outdated mods can fuck up the game rn

dense pivot
#

alr

brisk stag
#

I mean...
CheckPins

fringe echo
neon thistle
#

I think I tried using Multitudes w/ Sacrifice
just didn't get items
was running around with monsoon difficulty times 4 as bandit for a good 18 minutes with no items

light fractal
#

anyone else having problem starting the game with the kingmods on?

naive monolith
#

i recommend getting the EnigmaticThunder API

mild star
#

i have downloaded 35 random mods and i will make my life suffering

jaunty shadow
#

all I know is pain

covert hull
#

So many depreciated mods, is it the modders marking it as such or is there some automagical system thats doing that?

grizzled bolt
lost echo
#

I've was told in the modding server that the mods will no longer be deprecated once the creators update them to work with the anniversary update

brazen heath
#

someone halp

#

what do i do?

#

I've tried running as administrator

fallow depot
#

yah i think the new update threw off most mods

#

better ui and sharesuite still work tho

brazen heath
#

k

#

let me try that to see if it is a another problem.

#

nope still broken

fallow depot
#

at least im playing with them and they seem to work fine

#

i think multitudes just broke

#

also r2api itself needs an update

brazen heath
#

ok

#

i ll just play normal for now

wise ferry
#

Or log out and back in

brazen heath
#

o ok

#

i ll try that

fallow depot
#

also do you know how to run as administrator?

#

you right click the icon and it will come up as an option

brazen heath
#

yes i know

alpine relic
#

So what mods still work if any?

severe nimbus
#

am i understanding that if i have old and unupdated mods, it will screw up currently updated ones?

simple delta
#

all the mods updated within the last 5 days, and maybe some ui mods like item counters might still work after a big update no one is really doing any testing so its hard to see which mods work after an update or not

alpine relic
#

Gotcha

#

Hopefully proper save still works

#

And item stats

agile chasm
#

any autosprint mods that work with current patch?

timid swallow
pastel vale
#

proper save is listed as deprecated

timid swallow
#

i might show my working mods pack

pastel vale
#

StartingItemsGUI is also broken, not listed as such though

alpine relic
timid swallow
#

i also use toomanyfriends, paladin and turretbuffs, nothing breaks

#

there could be other neat mods that work too

#

i need to test faster scrap and faster chances

alpine relic
timid swallow
#

rob fixed him, bless rob

#

character mods are coming back slowly

barren gate
#

Do the mods work again yet? I wanna play with more than 4 people haha

timid swallow
#

im really curious how's things going for aetherium, supplydrop and mysticitems

timid swallow
barren gate
#

Coolio thanks

#

Oh what about the one that tallies everyone's items?

timid swallow
timid swallow
barren gate
#

We get particular about people having the same amount if possible