#modded-drg-chat
1 messages · Page 10 of 1
lame
u shud try drg rebalanced
i had an online friend years ago who i wud argue with constantly about cryo vs flamer (with him thinking flamer shud be buffed). He wud always recommend me rebalance mods
Greetings, how can I put blades on a pickaxe from the back slot to the front slot?
I understand this is some kind of mod, but can you tell me which one?
I believe it’s this one:
Keep in mind it’s client-side only, so nobody will see what you see
"The Armor and Weapon Framework paintjobs can be seen by everyone, so can the Pickaxe parts. However, the Default paintjobs for the guns, e.g. the LOK-1 paintjob, cannot be seen on other guns by other players unless they have this mod too."
fear not .. other players can see your drip
Oh, that’s new to me
Good point, thanks for bringing this up
shame the weapon paintjobs don't show .. can't absolutely blind everyone with that one paintjob that makes glowy bits 50000 watts
This chat is forever reserved for people asking questions that can be answered by a 40 second search on mod.io
what is the name of the mod that gives grunts hats then 
how tf do i mod this game?
tried modded.io but the mods doesnt appear
oki found it
mods don't work
hi lads wondering about the verified mods is there a way i can get the game to install them when my friends join or is it purely client side?
Ok, thank
there needs to be a Carpenter Brut music mod
would be epic
does anyone know the file name for slashers? am trying to add them in a difficulty mod
Question; if I want to have the love post-game stats mod, how do I do it? Is it via steam?
does anyone have the files for the supporter vanity pack that made the brown metal also gold? it's been removed from mod.io and i uninstalled it ;3;
hello friends, does anyone know if there's a mod that shows the amount of experience you need for the next level?
Total conversion?
Is there a mod for C4 to always explode with the maximum explosion radius ?
guys which mod is when you pick a class but other players cant pick the same class?
also how you guys do the server description like +100lvl
??
for example i pick gunner and you want to join after i started the mission. You cant pick the gunner cuz i picked it.
oh ! that's not a mod, that's in settings
same with the mission name
hmm ... away from my computer rn .. but I think it's in the first tab? you might need to scroll down
it's called prevent late join duplication and it had a tick box
ohh thanks also sorry for asking it in modding channel xd
yes its top of the first tab
coolio
Would GSG approve any mods for gameplay that add a bonus to mission rewards if the mod also adds more difficult mechanics to the game and keeps it balanced?
Hey uh having some problems getting mod.io to work. when the steam overlay comes up, I try to login but the overlay keeps turning into a blue color scheme and then nothing happens
Currently the site in the overlay is broken because of the recent design change
You can log on in your normal browser
Yeah.
will the mods still work if we subscribe to them in a normal browser if we can't log in on steam?
just tested and it does work 🙂
why is there a limit on the amount of client sided mods i can have on multiplayer? i know there's a data limit on how much info can be sent through steam and all that but verified mods shouldn't count towards that, should it? they only affect client side changes
Hello, my friend have problem with installing mods, he cant subscribe mods, I mean he can, but these mods are not downloading
They do due to how the modding system is implemented currently.
i have a bit of a problem, the tails for the kobold player models mod isn't rendering anymore, how do i fix this?
Hey! First time modder here. I wanted to ask, since I only installed one mod. Which changed the profile pics to icons so I wasn’t conflicted with my avatar’s appearance to the profile. Why does all the beards turn into static objects? They have no turn of movement in physics in regards to the wardrobe, and the celebration mission completion screen. Anyone can help?
uhm hey guys, im new to modding, i installed some mods to improve fps and my dwarves beard and mustache are twitching, you guys anyway to fix it?
is there a mod that add's a sandbox mode
sandbox utilities
Is there any description on how can I boot up modded difficulties in Sandbox? I.e., I downloaded Haz 5 4p scaling mod via Custom Difficulty, but can’t quite figure out how do I make it show up in appropriate menu for choosing sandbox difficulty
this happens to me aswell, i don't think it's mod related and only occurs when i'm in menus like the closet or the end game screen, nothing is changed in-game
you can start a normal mission then click "create sandbox"
I will try that - I was thinking it’s possible to have it show up in Sandbox menu, but this will do I suppose
go into the custom difficulty menu, choose the difficulty you want, press "save". then go into the sandbox utilities menu and in the "space rig" tab you should be able to just create the sandbox with the custom difficulty you selected
is there a mod that makes power attack cooldown easier to notice, like having a sound notification of some kind?
is there a mod to disable bosco on solo missions
You don't need a mod, just uncheck "Bring Bosco" from the bottom-left of the drone terminal.
Oh nice
thank you
I installed custom difficulties and its dependency, is there a config file I have to edit or is there a drop down menu like the screenshot?
just open mod hub
I wish there was a mod that replaced the coil gun crosshair... I find it very difficult to see
yeah I installed it from modhub and I get much else
a bit
That worked wonderfully. Thanks!
would a mod to make base carry capacity 50 be considered a progression altering mod?
it would certainly fall under the approved mod category
at least lol
Which one of the many engineer turret mods gives you three turrets when you select the Gemini system? (nvm i found it)
Hey guys quick question/request. I let chatGPT write a mod for changing the kill/scoring system at the end of the game. Perhaps somebody familiar with coding could make it into a real mod. I would be really grateful:
using ModIO.API;
// Define an enum to represent each type of bug
public enum BugType {
Grunt,
Praetorian,
GlyphidDreadnought,
MacteraSpawn,
AcidSpitter,
WebSpitter,
Swarmer
}
// Define a dictionary to map each bug type to its point value
private Dictionary<BugType, int> bugPointValues = new Dictionary<BugType, int> {
{ BugType.Grunt, 10 },
{ BugType.Praetorian, 25 },
{ BugType.GlyphidDreadnought, 50 },
{ BugType.MacteraSpawn, 15 },
{ BugType.AcidSpitter, 20 },
{ BugType.WebSpitter, 20 },
{ BugType.Swarmer, 1 }
};
// Define a variable to store the total points earned by the player
private int totalPoints;
// Register for the mod's events
void OnEnable() {
ModManager.OnDownloadCompleted += OnModDownloadCompleted;
MissionScript.OnBugKilled += OnBugKilled;
MissionCompleteScreen.Show += OnMissionComplete;
}
// Unregister from the mod's events
void OnDisable() {
ModManager.OnDownloadCompleted -= OnModDownloadCompleted;
MissionScript.OnBugKilled -= OnBugKilled;
MissionCompleteScreen.Show -= OnMissionComplete;
}
// Handle the completion of the mod's download
private void OnModDownloadCompleted(Modfile modfile) {
// Perform any initialization for the mod
}
// Modify the game's scoring system to track points instead of kills
public void OnBugKilled(BugType bugType) {
int points = bugPointValues[bugType];
totalPoints += points;
}
// Modify the end-of-mission screen to display total points instead of kills
public void OnMissionComplete() {
MissionCompleteScreen.Show(totalPoints);
}
https://mod.io/g/drg/m/gold-ak-47-model-replaces-gk2-rifle
I often see mods (usually Chinese) where people have a large column with passive abilities, but I can't find a similar mod, am I looking badly?
Am I looking in the wrong place?*
We cannot add C++ or anything of that sort, so that doesn't exactly transfer 1 to 1 but it's pretty good logistically.
Hey what's the mod that allows for Hazard 6 to be enabled?
I've tried to find it on the modpage, yet everytime i try running it the game crashed
custom difficulty
bit of a dumb question, but when joining a modded server, does it download the mods from the host itself or from mod.io
modio - based on what the host is using and if it is not optional
After about 4 months of putting in 6-12 hours of work on the regular and usually after my work hours, I have finally released the 2.10 update for Mission Content Randomizer (MCR) onto the main branch. MCR can be found here: https://mod.io/g/drg/m/mission-content-randomizer
MASSIVE UPDATE (2.10) - Major performance boost for the entire game by me optimizing and remaking the vast majority of game assets and without fidelity loss, mission desync is actually fixed properly now, many many many mod options, Bosco overhaul to make him great for MCR, model and mechanic overhauls, new gameplay mechanics, 10 new warnings and 1 anomaly, addressed discrepancies in vanilla, vanilla missions are now available alongside MCR ones, a bunch of overhauls and templates were made for MCR code to allow easy implementation of new things going forward, added opt in and out functionality for clients for certain things so they can dictate their experience instead of the host, an indescribable amount of bug fixes, over 100 new skins for you to use and more!
Thank you for your reply. Any parameters I should tell chatGPT so that it works (better)? Perhaps in what language to code?
Visual scripting through Unreal Engine and using vanilla game functions.
Are there any verified music mods that use Windrose or Doom music?
Guys I’m new to drg. Does modding custom music make you play offline or can I still play in open lobbies?
which chatgpt might just word vomit lol
imagine it describing the spaghetti 😂
Check pins on mod classification, it'll typically be a verified mod
Where’s that?
pins in this channel
Okay so, given Approved mods allow progression but don't allow Steam Achievements, I have some questions (sorry if repeat) :
- Does playing with approved mods permanently disable steam achievements for that save?
- Does playing with approved mods permanently add the "modded" identifier to your name/save?
- If approved mods don't permanently disable achievements, can you disable the mods just before doing something like promoting to Gold and get that achievement?
- If you do complete something while modded that would have given you an achievement, and you didn't get it, but then you disable mods, do you retroactively get that achievement? (for example if you were to get all classes promoted to gold while modded)? If not, can you permanently ruin your ability to get certain achievements on that save (like the above all class gold promotion achievement)?
Thanks driller
i wish my platform could do this, these are really funny.
you know what would be a neat idea for a mod replacing the swarm music with the doom sound track.
is there anything that all ready does this?
how do i "download mod from game client"?
im in the game pressed install mods went to the mod and it says that
cant download from the steam overlay right now, just subscribe to the mod on mod.io in your normal browser
there is a doom soundtrack mod, here is a link to it: https://mod.io/g/drg/m/doom-music
isnt there a mod that lets you see other peoples loadouts?
i swore i played with someone that had it
build inspector
awesome thanks
"the only one they fear is you! rock and stone until it is done."
Has anyone experienced a thingin which the steam overlay isnt going login right on modio anymore?
Thanks for the pointer. I thought that might have been it
is there a more popular discord for finding/hosting modded drg?
https://mod.io/g/drg/m/barrels found the perfect mod
hi mod devs. just installed DRG mods for first time and discovered F1 F2 etc are keybound to mod logging actions etc. In game this means my mouse stops working on F2 for example.
This is bad cause my mouse is configured to send F-keys for my side mouse buttons. How can i clear/rebind F-keys for mods?
it would be a tremendous pain to configure my mouse differently just for DRG when i have keybinds setup for many other games
edit: keybinding of F keys is happening in DRGLib, disabling drglib fixes the issue.
issue also reported by others: https://mod.io/g/drg/m/drglib#458888
@ebon juniper ^
Reguarding the three Boss Music sound cues, do all three of them get randomly played for bosses or are they tied to specific bosses or events?
I just found the Kobold voice pack/models, and they make me happier than they have any right to
10/10
Finally, another kobold mod user!
Open modhub, go to DRGLib, right click on the offending bindings
anybuddy know where the terms of use is?
Should be able to click on the orange text to open a link, inner
use "custom difficulty"
I'm sure I look like a hot mess to other people not using the mod, but, they look bad to me too, so joke's on them
Hey just to make sure
if you play on a normal save with a mod and then after a mission disable them. Is your save permanently modded?
nope
alright just needed to know
I've replaced the boss music with my own and excluded all other music files in the template with the packing settings, yet all other music stops ingame. What am I missing here
What files are you including in the pak for your mod? Make sure you don't have any sound classes/other cues/etc.
I'm using the template from Buckminsterfullerene02's github though I deleted all the music files I am not using and I've excluded the red
SoundControl is ommited from the packing
Should I be removing the controller and test too?
yes
also there should be a folder with a name strating with "_" in the content folder containing your custom tracks
yes
Right. I followed a video and, while I assumed unused files should be deleted, they didn't remove them, nor exclude them in the video, so I was confused
Thanks a bunch
Alright I'm very confused as still there is no music
I have no other mods loaded
did you do... the rest of the things from the guide? i recommend actually reading it, the video is not the best in some places
I will check to see if I missed anything. I clearly have so time to find out what
the only things you should need to package up into your mod are any custom sound files and cues that you modified. nothing else. but yeah, follow the guide.
Alright so I read everything again and everything seemed correct but clearly something was being packaged that I didn't intend.
Instead of packing through DRGPacker I instead used the Alternate assign to chunk method and it worked
Hey wanted to ask around, does anyone remember a verified mod that replaced most of the wood parts of the supporter paint jobs with gold? I think it was called "Actually gilded" or something like that but I cannot find it on the mod.io search
is there any mod that randomizes weapons, weapon mods, and ocs every mission?
Made a custom difficulty: Haz 1x128
Hazard 1 with 128x the number of enemies, with swarms that happen twice as often as haz 5, resupply costs 30, and all the smaller enemy types have higher spawn chances so you get a wider variety of enemies at any given moment. Use it with the custom difficulty mod. I balanced it so it is actually possible to complete missions still (if your frames can handle it) but chaotic enough that you have no idea what is going on. I suggest running with a few performance mods such as disabling ragdolls.
My favorite mod from a video that I watched is: "that shit looks like the weep woo"
how to stop the game from downloading mods
i subscribed the randomizer mod, but it took me a thousand year to download
so i decided to unsubscribe it
i did it but the game wont stop downloading
no matter how many times i restart
i hate this mod
Hey! How do approved mods affect the Promotion Achievements like "Legendary-Team - Earn Gold Promotions for all four dwarves.". I would like to play custom difficulties. But what happens, if I promote a dwarf to gold while having it enabled? Does it count for the achievement?
Anyone skilled enough to make a mod that plays low HP remix from pokemon black and white made by VGR ? That would be gold..
As far as i know approved mods still count for achievements.
Hmm, I read everywhere that approved mods allow ingame progression, but disable achievements.
Ok , must be mistaken lemme check
You,re right its the verified ones that allow steam achievements still i’m sorry.
No problem. I think it's absolutely fine that achievemnts are disabled, but I'd really like to know how it works with these promotion achievements.
They should switch those out verified makkes it sound like its a safe mod to use and approved well makes it seem like usable within game rules.
Yeah, was somehow confused at first too. The official modding FAQ doesn't say anything about ingame progression or achievements, but the mod.io page does: https://mod.io/g/drg/r/mod-guidelines-and-status-categories
hey, has there been a fix yet for jittery beards with mods active?
like whenever I have any mods installed, even ones that only touch sounds, the beards feel like they wound need an exorcism and twice their volume in concrete to stop moving
I'm trying to install mods, but the steam mod.io turns blue and won't let me subscribe.
I already have mods, but they don't show up as subscribed (even though they're installed).
anyone know whats going on?
cap your fps to like the screen's refresh rate
does anyone know the mod that shows you the resources you've mined / bugs you've killed at the top of the screen?
like the one shown in the run summary
thanks! :)
could someone make a mod that brings back old tcf sound and link it
thank you!
I am new to mods and trued a few so fun. When I had my friends join the SSG for the engineer was miss. Everyone know why?
how hard is modding for this game? i want to add some custom music for industrial sabotage that isn't an already existing mod
like this
but with something like live and learn
I made this for fun, only crassus detonators spawn that are 1hp and can't move
use it with the custom difficulty mod if you want to try it out
uh the modding page wont work at all
whenever i try to subscribe to something the gui just turns blue and nothing happens
same issue here, what gives?
well i ended up just trying it through my regular browser and it works there
I have a question;
I should do another profile/game for play with modifier mods, or I can play with my default profile, just turning on and off the mods, for can play mp and that stuff?
When I have my game moded what happens to the engineers SSG’s
Hi guys. Just started modding recently.
I wanted to ask, do you have sound, when Leech is coming for you? I mean the hissing. I have only 2 mods active rn, but still cannot hear them (my main source of dying xd), playing solo Driller. I wonder if it's bug in vanilla, or problem with mods-
Mods active are:
2x flashlight range
Combined resources
Abusing Deep Rock Galactic's Overclock System to Land Market Gardens, interesting approach
https://shrinke.me/2O8kovmiska
are there any mods for improved wardrobe functionality? pan/zoom/rotate/hide UI/etc
Had to do the same. I think it was unable to login, for some reason.
Never heard them ever. I wasn’t aware there was supposed to be a sound, actually…
Doesn’t help that there’s pretty much always other sounds covering it up
And the leech being far away probably doesn’t help
Someone should make a mod where this song plays from macteras
guys, how to fix the problem when mod.io isn't linking to an account
my friend has created an acc on mod.io and linked steam
but nothing happened in drg
Guys how do I find teammates to play Haz6+ with? Like in game lobby or otherwise
maybe #lfg-modded-steam
Anyone knows where to get wav file for the games audio
you need a tool to extract them. the modding discord has a list of tools you can use, you can check those
Thx mate
I have a bunch of mods that seems to be hidden. But I can't unsubscribe, how do I remove them?
yo
same issue. anyone has any ideas?
Trying to remove mods is literally nerve-wracking
Also, I try to to unsubscribe from my subscribe mods on the super slow mod.io page, but, most of the subscribed mods under "My Subscriptions" filter are NOT subscribed to
I can't even subscribe to them, to unsubscribe to them, and if I try to load them in game, all of them, my main menu crashes and i can't do crap
Some more work on this in next session will be highly appreciated, trying to remove mods should NOT be this tedious, long and frustrating...
also, can there be like, a unsub from all mods? manually going to each 70 mods will take an hour or two
There could also be an option to view subscribed hidden mods?
Why doesnt my mod.io load up on steam? And i mean by loading up i mean i cant press anything and its loading forever. Nor can i log in
My screen just turns blue if i try to log in.
to mod deep rock would i need to use mod io or can i just download and drop files
the supported way is through the mod.io tab ingame
ok ty
so this guy isn't playing on a modded serv but his serv is with a tons of dwarfs, how
he even playing music on the lobby
not written moded
Hi! Is there any mod to rebind iron will from space to smth else?
i only use client side mods, but even then all my mods are turned off when i join a lobby. is this normal? pretty frusturating and this never happened to me before
can you guys help? whenever i go into the mod io tab, and i try to click the subscribe button on any mod, or the log in button, nothing happens. for some reason, the gui turns blue too.
u have to link it to ur steam account
the log in button wouldnt work, but i got it to fix
the steam browser wasnt working for some reason so i just went onto my normal browser and made a steam-linked account there and stuff proceeded as normal
oof
someone should made a mod that replaces the caretaker battle music with too big to fail from hi fi rush
i want a mod with corn (if you know what i mean) in it
I have a mod with banana if you want
Does anyone experience losing all their mods and reinstalling it? My game does it every once in a while.
why are miracles more mutators icons showing up for me even though i don't have the mod enabled?
nvm, restarting fixed it
Hi, do I need to play vanilla DRG in order to get achievements? Because I didn't get the Lone Wolf (despite finishing 18 solo missions) or Karl would be proud
You can get achievements and ingame progress with "verified" mods. With "approved" mods, you have ingame progress (levels, unlocks), but no achievements. With "sandbox" mods achievements and progress are locked.
Oh, thank you. I used Slightly better flares as QoL, because I can't see a damn thing xd. Unfortunately it's only approved
C4 the scout for not using his flare gun! Jk, don't do it to randoms 😄
https://mod.io/g/drg/m/brighter-objects could be for you.
I've decided to gold promote my gunner and driller. And get the solo achievements along the way.
anyone can help with that....?
As far as I know you can sorta glitch it out an it can get become a normal game if you crash from it. Even tho I'm not sure what you mean with the music
do u know how 👀
I don't know is there a mod for that still but when I played with people few times on that, too many dwarfs can crash your game and the host after joining again sometimes can get that glitch. Example 5 engi with fat boys can lag it out and the drillers etc
About the music in lobby I still don't understand what you mean
like when you call for the drop pod there was a music that started about dwarfs it was epic
It can either be a mod or a hacker, for music, I never heard for a mod with that kind of choice over the it
alr
Btw if you want to listen again to epic music about dwarfs it's probably Diggy Diggy Hole, I use it for playing. There is no other I know
ye they used that music in the lobby
I found the mod of 999 players it's still free of use
can you send? pls
It's listed as sandbox so you'll probably need some time to glitch it out
are there any flashlight mods that are client side?
Is there any sort of mod that would list out the OC you have out of a total list? would be helpful in knowing what i still need for each given class
I used this one, but it's approved only, so you won't get achievements
https://mod.io/g/drg/m/no-more-dollar-store-flashlights-2x
verified still gives achivements right?
Rock and Stone
Is there a mod that allows more than 4 players and if so does everyone need it or only the host?
how does one make a mod
Released a couple of mods today, working on making one for my better flares.
https://mod.io/g/drg/m/mcr-warnings-anomalies
https://mod.io/g/drg/m/mcr-better-resupply-pods
Adds 30+ new warnings and 11+ anomalies from Mission Content Randomizer but as a standalone mod and includes a desync preventer for late joiners.
So what would be the best way to make a mod suggestion? By just mentioning it in here, or are there other places that would be better?
Because here's my idea: Sonic Adventure 2 grinding noises for grinding on pipes.
Sounds like something that should already be on mod.io why hasn't anyone done it yet? Great idea!
There's one for Tony Hawk Pro Skater grinding sounds, at least.
Both with additional music and without.
It's really a pity that there is no function take my money and please make me a mod. When there are many ideas, but there is no way to implement them
Networking/posting in the right place is the key. I imagine there's plenty of people who would throw together a mod for you if you provided them the sounds you wanted to use and offered a tip for their services.
Everything is much simpler for me, I would like a mod in which you can activate all the improvements and overlocks on weapons, armor, tools and a pickaxe (as an example https://mod.io/g/drg/m/equip-all-22-perks ). I want to combine it with another all x10 mod and see what happens. Perhaps if someone is interested in this, I will be happy to help in any way.
I was looking through the looping wave sound files and found that the audio tracks don't exactly loop like I thought they would. There's a noticeable end and start to the track. Have I just never noticed this ingame or does the cue do something fancy to blend the end into the start again?
Are there any mods that let bosco float around the space station?
I wish there were a mod that add a 5% chance of playing the quick fart when you headshot an exploder
hey guys, i jsut saw a video on modding and created an account and subscribed a few in browser. then i opened the game and on modding was nothing, i clicked on install mods and steam browser opened, but i cant log in there or subscripe to any mod, none are appearing in my game. what do i do wrong?
i also had a message starting the game that it failed to sync cloud save
yeah i dod that before, but the mods were not ingame
you have to log in with steam in the browser
if you log in with for example discord it doesnt work
why the privacy settings to be able to use mods requires my IP and machine ID?
how is that even relevant to mods or the game itself?
from the terms and service
- What Personal Data does mod.io collect and use?
2.1. We may collect information that could be considered Personal Data in combination with other information.2.2. This includes:
your display name;
your email address;
your country (language and timezone preference);
your birthday;
your avatar;
your IP address or device ID;
details of what you have purchased using our Services;
third party services user IDs (e.g. Steam, Google, Facebook);
data you give us directly through enquiries; and
any other information relating to you that you provide to us directly through the Services.
Hi people. I love modding drg but only the sounds. Recently i installed a few mods and I haven't got any problems. But since a few days now everytimes i tried to open the game with mods the game crashes and I didn't any more mods than those that i already had. I had to remove every single mod in order for the gane to work. Any explanation why it might do this?
I don't know how to mod the game, but has anyone made a mod that replaces the sound of the flare with Ric Flair's iconic "Woo!" ? Or replaces the lines said when firing the flare gun as Scout to Ric Flair shouting "Woo!"?
isa there an updated version of message of the day?
or can i still use it alltho outdated?
hey, i dont know where to ask this, so ill do it here
there is a person on reddit who made very neat character portraits for the classes which i realy liked
i asked them when its gonna be a mod, but they dont know how to mod the game.
Im not sure if i can post a picture about it here cause idk if it would count an as a "ad" so ill just leave it at that.
but they said if anyone know how to do it they can.
tbh this already sounds like an ad..
well crap
so just here to ask if anyone knows how to mod his character images into the game
because they are realy cool
They are made by Corvusmad or u/VariousQuestion on reddit.
dose Maybe some one know where i can get are 3d model of a Cargo Crate ?
I absolutely can't log in mod.io thru steam overlay? Any ideas how how to fix that? I've tried googling for the solution, deleting all the mod.ii folders didn't help at all
Like no errors no nothing, I press log in and silence
Have you relaunched the game after toggling your mods? Plenty of them require full relaunches to apply their removal/addition effects properly.
Hey everyone, this may be off topic, but i was wondering if anyone knows how to get the textures into Blender. I got the models with UEViewer, but the textures have not been loaded
if i knew how to make mods i would make it so too big to fail (hi fi rush) played when you fought the caretaker
Anyone know if there's any community that plays a lot of the More Players Balanced? I'm interested in joining or hosting large player matches
does anyone know how to fix the bug where drg tries to fetch the terms of use from mod.io for an unending amount of time
nvm
it doesnt support win 7
Is there a mod to let steeve get in the droppod, if not, someone should make it
And a mod is needed to let us deposit into Betsie and make the drop pod collect her with the magnet as well
ok so i restarted and was a bit more ccareful with the mods. now i activated one mod and spectator mode, can this be from that mod?
its a bit sad that i cant see my weapons anymore
but i find improved spectator really essential, rip me then
is there a mod where i can tip Lloyd like 10k
hello, i have a question, new to modding DRG, how do i uninstall mods ?
Hey been exploring the mod workshop for th first time
does anyone know how stable playing More Players Balanced with with mission content randomizer
Is there a mod to see turret's range?
Hey hey, got a question:
As soon as I try installing mods the page turns blue and nothing on it reacts to anything anymore. Been having that for a few days and dunno what to do about it :/
Any help would be much appreciated
i just installed a few mods and it now says modded next to my name in top right, does that mean im picked one that is not allowed or something?
i only picked approved ones i think
or is it because of that radar thing
i dont think i noticed it saying modded before trying a few new ones today
posted a pic in gallery 1 channel dwn
must be the 1 single approved mod
Yeah I think you picked some that are Approved, yes
that was it, a doretta one
Does anyone know if the Sandbox Utilities mod has an option for a taller sandbox? I've only found the one that is a squat square room.
You can change the layout in the same way you select the mission.
Cool, thanks. I'll check that out.
Is there some kind of tutorial or documentation on how to use Sandbox Utilities?
Anyone got an idea at all?
For one, you're not logged in to your modio account in that screenshot. Maybe try using not the Steam browser.
am having the same issue
ugly workaround is to just open mod.io on browser normally
I joined a server that has More Players mod and now it's stuck with me even after restarting the game. How do I remove the mod?
The game tells me to disable mods every time I join a server
ok, yeah, I can disable it. so, how do I uninstall the mod?
Go to the page for it on mod.io and unsubscribe
Ok. I guess that's Steam's fault then because it doesn't log me into mod.io in the steam overlay
thank you
If you're using the beta client, I find it does a great job of retaining pages in the overlay
But yeah, mod.io does the Steam Workshop method of modding... with half the functionality.
name 3 features that steam has and mod.io doesn't
Functional flitering, for one
filtering works perfectly fine on mod.io idk what you on about
the search bar is shit on both platforms
??? thats an obvious feature lmao
thats how it should be
at the very least its an issue of taste
If that's how it's "meant to be", than it's even more dumb
i find what you described to be much worse and less intuitive
still dont see the "half the functionality" thing
in fact it has approval categories, which steam doesnt
That's something that the developers wanted themselves
we
yes, the players of this game
That is a very odd way to phrase it, but okay
Either way, I still don't like mod.io
modio is probably easier to develop for (i have no perspective on that, though)
worst part of workshop imo is the fact you need some obscure functional search terms like AND/OR (case sensitive)
just to search for rock AND stone where normally it'd return either rock or stone from rock stone
I think it's completely fair to be critical of modio and its limitations. Every platform has its issues and it's completely fair to prefer one over the other.
I think many of the issues come from DRG's poor implementation of modio's features and modio gets the blame for it. But modio itself can be annoying to use. The new design that was forced upon us was initially missing MANY features of old modio, the search sucks, etc.
Steam Workshop does have have approval categories btw, Vermintide 2 uses it.
hard agree
Heya folks, I get the vibe that modding will never be supported on linux distros fully, but I am interested to see if anyone has any experience getting mods to work on a linux distro, through various forms of compatibility layers
doesn't mod.io allow modding for consoles? correct me if I'm wrong
also I would love to see more support for custom skins/weapons
It works the same way you'd do it on windows; through mod.io via the steam overlay.
Yeah, my game doesn't work if I am on proton experimental or the latest stable branch if I start it with mods on :(
I just got proton GE so maybe that'll work
hi i want the audio from this mod https://mod.io/g/drg/m/arknights-schwarz-coil-gun-sound to play over this mod https://mod.io/g/drg/m/kinetic-accelerated-rail-launcher-coilgun-swap
but i have no idea how to do that so far
is there like a priority order for mods or something that i can adjust to fix it
Hello, I've recently started to play DRG again, and when I tried to add a mod to my game, the window became blue and I couldn't add it. Same thing happens when I tried to log in the mod section.
I just have to do it in a separate browser logged in thru steam and it works.
So like I have it on chrome, log in thru steam and then when I sub it will auto download next time I open game
Thanks a lot
Using Proton GE made the mods work
cheers for your help
Weird, for me it worked on just proton 7, no custom eggs needed
¯_(ツ)_/¯
Never owned a console in my life, I have no idea
Just wanted to know... How modded can modded drg be
Because I thought mods were only cosmetic but on the site it says you can do mods with gameplay changed
My current favorite mod combo is the Mission Result Based/Cringe and the Gigachad End Mission Music
Im suprised no ones done a yamcha death pose down pose
guys what do i do, it keeps saying "merge failed" for some reason
i cant link my mod.io account
Yeah, modio notes that their platform is used to mod on pc, console, and mobile. I think that was initially used to describe why modio was a good choice for drg mods moving forward, but the devs have stated there's currently no plans to bring mods anywhere else.
do mods disable achievements?
cause i just wanna make the bulk detonators rip ass when they blow
and how do they work in multiplayer
Players have to install the same mods as you to play with you
i c
Or it auto-installs them when they join, idk
Either they gotta install it themselves, or they get auto installed
that'd be convenient kek
i'd assume with a game that's as consumer friendly as drg that'd be a thing, or maybe will be eventually
I honestly have no friends to play modded DRG with, so I don´t 100% know which one of those 2 possibilites are real
got a game at the back of my mind i remember autoinstalling mods specifically for only the modded server they're in
well, that can be changed sir
i too have a dream of bursting my eardrums with bulk detonator sharts
I have TF2 mods
So when there´s a bunch of grunts
All I hear is soldier screaming about freedom and america
would be funny to make engie say "buildin' a sentry" whenever he props up his turret
Sadly does not exist, yet
or when you recall your turrets or just relocate them he says "movin' out"
Pinned messages describe how mods work more.
Approved/sandbox mods disable achievements. Any mods that are marked as required are auto-downloaded when someone joins the lobby.
that's useful
More useful than my existence
Is there any mod that lets me NAME my loadouts instead of using vauge af symbols?
https://mod.io/g/drg/m/equipment-presets or this mod that also includes cosmetics/pickaxes/etc https://mod.io/g/drg/m/combined-presets
Does it let me rename the A/B/C icons?
In that I can hover over and see "Solo" or "Dread"
look at the screenshots, it's a different thing entirely that you can name whatever you want
I'll give it a try
don't worry comm
you play deep rock
unlike those that don't
you are more useful by default
those considered useful are divided between those that play deep rock and those that don't
Since when was being useful a default setting?
it's not unless you're a dwarven combat miner
Whenever I play drg with my friend, we can't use mods.
all the mods I had loaded disappear and the modding tab is blank
I'm having an issue with VRG where I'm bouncing around, are there any fixes?
I have a video if that would help
Are there any solutions? I didn't see it listed on the mod.io page, not in the comments of the mod either
you have to set up mods before they join. whatever you have active will still work, the modding menu disappears when you're playing with others.
you're more likely to get help relating to vrg from their discord. the vr modders have their own server.
@north phoenix
it's in the description for the mod
scroll to the bottom. it's the flat to vr modding discord
I am stupid, thank you very much
Anyone got a good loadout for really rough dreadnought missions like 16-20 with the KARL mod along with MCR?
#drg-memes-no-talk message what mod are they usi8ng for the ping tool here
hello dwarves, does anyone know if there's a mod that provides extra loadout icons?
6 supercooling chambers
hello, whats the name of the mod that lets you instantly forge overclocks?
fast forging?
how do i know if my mods are on or off
if i go to modding it says 0/24
i remember applying mods but im not sure if it counts since i cant see em
if i go to mod/io they r on
theres a problem with "Cosmetic Restriction Remover" where if I equip an armor set from another dwarf class (in this case the brigade armor for gunner) onto gunner it switches to mk1 armor instead when I enter a game
modding tab is supposed to be blank in multiplayer lobbies
you enable/disable the mods you want solo, then tell your mates to join you
and if the mods are verified mods, they'll have to download them manually, since it's just client side mods
and if it's approved mods then the host needs to have them
is there a mod that lets you know who double dipped, started dorretta, refinery and called the drop pod
Who done it
Why does the UNIB music for caretaker mod not work
hey, so im trying to download some mods (stuff like dmage text and brighter objects) and when i press subscribe they dont show up in game?
can somebody please answer my previous question?
I've been using it for so long I forget what the ping tool is actually supposed to look like 
is it verified?
np
I really like the doom music mod and payday 2 mod, any other good ones?
so i just recently started modding and I was interested in the haz 6 mod, but it's not updated to the current version, is there anything to emulate that type of difficulty out there that i just haven't found?
Custom difficulty
ah i see ty
does anyone know if there is a mod that mutes the sound of the vines in hollow bough regrowing? it makes me irrationally angry and is one of the 4 things that makes me hate that area with every fiber of my being
Ehhh that doesn't have good burst damage, also the max you could run is 4
What are some good Approved Vanilla+ mods?
Stupid question, does anyone have any mods that could make the game run better on lower end devices? Specifically reducing things like particles? Sorry if wrong channel
Asking because things like meteorite impacts, doretta digging and certain explosions in general make my game very unhappy
there are particle removal mods indeed, a nice amount of them. a simple search on mod.io for "particle remove" shuould fetch them for you. the one i have installed is https://mod.io/g/drg/m/remove-all-particles-but-weaponsntools
Thank you <3
anyone know a mod that every enemy are thin just like a slice of paper?
Is there a mod for even better graphics?
How much more better
how better can it get?
also just so i am sure
"verified" mods will not say that my save is modded next to my username?
no lol
k
only Approved and Sandbox
gotchu
Approved is allowed with others
and Sandbox requires exclusive save file
basically Approved is Vanilla+, Sandbox is GMod
so, i dont need to make separate save for verfied, gotcha
here's a good Better Graphics Mod
https://mod.io/g/drg/m/toolgun
I found this and https://mod.io/g/drg/m/retrocam-reshade
I am just mesmerised
do i need mod io account?
im clueless as to why subscribed mods are not showing up
nvm
they are
but retrocam is not :(
any idea why the auto sprint mod might break sometimes? i noticed it after being down 2 times that it stiped working
Found it
https://youtu.be/GJWTbrfpGOE
What to do if a mod is not showing up despite having it downloaded
I reloaded the space rig and it just refuses to show up in any mod menu
this one
just
doesnt
work
;w;
help me please
How do I make this work
Hello all we need some help in the ultra pod vc if you wanna play
wrong chat to ask
I cannot make this reshade to work, i really need help
i figur3eed that out
Request: Would someone kindly, make a Machoman mod as Mission Control?
i think it'd be funny if there was a mod that replaces sludge pump firing noise with "you're wrong, sulfuric acid" and desolving to the sludge with the accompanying "AAUUGHHGHHG"
Can someone tell me if there are any modes which allow multiple players to join the same lobby?
i fully appreciate the system clock mod, really keeps your playtime in check
Hey so which mod was the popular one where you can set custom difficulties for both hazard level and swarm density?
Is the Stat track mod broken? doesnt track stats for me (kills dmg etc)
Is there a mod where I can get a machine event to spawn in every mission
I am tiard of these blank slates
Cores
how do i fix the mods?
wdym?
when i open my modding menu in game and try to log in nothing works the only thing that happens is the menu going from grey to blue and nothing else
log in into mod.io using in-game mod browser?
not a solution to your problem, but as an alternative you can not use in-game browser at all. If you log in into mod website thru normal browser and add mods into your account there it will be added to the game all the same
@dreamy radish i also have problems trying to access mod.io through the steam browser, just use your normal browser
ok ill try it otherwise no mods for me i guess
anyone else having problems with people not joining your modded missions? Like I used to get em every 2-5 mins apon a game and now now ones joining modded servers....
sandbox utilities?
How in Karl's name do I update mod loadouts?
does anybody know anything about difficulty mod compatibility? i have more players balanced and swarm control installed, and if i turn on compatibility mode for swarm control, it's overwhelming even with 1x swarms, but if it's off it's underwhelming
maybe everyone is waiting for season 4 
im surprised that theres both a force of nature and soda popper sfx mods but no scattergun mod
So does anyone know about a mod called mission control randomizer?
can't say I have but it sounds similar to mission content randomiser (which I have heard of)
no biggie ! it's a fun mod
only thing to keep in mind is you'll need to restart if you disable it otherwise your game gets a little bit messed up
How do I install a mod without using the steam web browser?
use the web browser you normally use
For what I've seen the modded side always has been pretty much empty tho :/
used to be 50+ modded servers now its like 2-3 every day in their respective regions.... like I really wish we were able to see our own server on the list of servers to see if people actually see it or not.
Also there needs to be a way better way for normals to get into modded servers.
are there any mods to improve visibility in azure weld? I cannot see anything there
yall is there a way i can switch from modded to not easier? i assume im just making it harder on myself but i cant find any way to do it but to deselect every mod individually
There are mods that further increase difficulty like Haz 6+ or x2 which doubles enemy spawns
my bad, i mean in terms of when im on the rig and im trying to take all the mods off for regular runs
just switch to a different mod preset
is there a mod that makes it so that weapon mod descriptions include the actual stats?
hi, does anyone know what the mod is called where you can change how much of your weapon is visible?
My Clutter Be Gone! mod removes a lot of miscellaneous things from the caves. Can make em look a little empty but it makes Weald a little less unwieldy.
https://mod.io/g/drg/m/clutterbegone
As in adjusting your weapon view models?
https://mod.io/g/drg/m/customizable-weapon-fov
ive seen some chinese players use 8 players mod and swarm editor
without modded tag on the lobby
thanks
sorry kann leider kein englisch
it's possible to do, but a jerk move. many of those lobbies are probably also just straight up cheats/hacks instead of using the mod integration.
I dislike the separation of mods by category as much as anyone else, but there's not really a reason for you to play sandbox mods in normal lobbies unless you're up to nefarious things.
Come in pm, I dont want to get banned from here because I told you how to do it
The reason is that he'll get players in his lobby
I've tried multiple times to play in the modded side, can tell I've spent more hours waiting for people than playing ...
Now that I play on vanilla side with more players mods (and a lobby name to tell players before they come) I get between 15 to 25 people everytime I play and people love it
And what makes me sad is that most players who come don't even know the existence of mods
Or course I'm talking about playing with randoms, because it'll be easier to play with friends on the modded side
I dived deeper into the topic and I'm fairly certain that some people use mod.io sandbox mods in verified games.
For example there's no cheat that allows you control swarm, there's a mod for that
This ☝️☝️
I acknowledged the beauty of drg mods the moment I joined a random colossally modded lobby 
Now I just want to use it to mess with friends
MOTD + Stat Track mod broken? cant see stats :(
Any issues with Yinlung custom weapon not working?
Anyone know if there is a mod that will make molly sit her ass down and not move
Im currently working on a Model 1911 based Pistol, it might be for the subata
Yep, anyways trigger guard guarding, slide/barrel fixation fixed, Ill continue tomorrow when my motivation is back
anyone know why i cant seem to press any button when the mod.io screen pops up on steam??
Try pressing F2 when it happens
Yep. Download the mod and then copy the Hazard 6 settings from the repository listed in the mod's description on modio.
Thank you
I need a mod in my life that replaces the contained lithophages with hot spring tubs with Capybaras in them
I have a good videogame OST on hand to use as a future mod, but do I need to go on Epic and get the Unreal Editor to make it?
If so I'd rather request someone to make it instead
Try the Custom Soundtrack mod
ty
might do that, unless someone feels like publishing a mod (and willing to credit me lol)
https://mod.io/g/drg/m/force-custom-vanity-support-equipment-camo
Thought this would be a fun mod to use to give my support tools on each class better distinction between my other guns, and considering I assume it'd be client-side only that seemed really nice to me
However, whenever you apply a paintjob to ANY weapon with this mod on, it will permanently apply whatever paintjob you had selected for it, and as far as I can tell there's no way to revert these changes. I've tried making another save and reverting it to one from a few days ago, tried manually uninstalling and reinstalling the mods, even tried straight up deleting the mod files from my pc
but no matter what it always remembered the last paintjob applied, which means I cant use other ones and makes it so I can't go back on my decision if I don't like any of the available paintjobs
does anyone know a fix for this?
Can you use that to make pretty much anything play ingame? And is it sandbox or at least in approved/verified?
Sounds like a Steam cloud issue
If not then that's a crazy bug
Try re-verifying the game, might be a game file issue. Last resort would be to reinstall
Anyone have a mod that remodels the Scout's Pheromone Grenade into Jarate?
You need to apply them in the Mod section of the pause menu
ok
hi, how do I make it so the settings of a mod save? I keep changing the value but it goes back to 80
does anyone else have issues installing mods? im trying to get the flashlight mods to work, but none of them do, i restarted the game many many times
@wraith rover
use disable modding launch option
👍
there's one that removes all particles if that's what you mean
i mean is there a mod for drg that lets me use relatively decent graphics?
I played with a streamer a while back and now every time I launch the game a couple of twitch mods turn on
if i turn them off they'll just turn on again when i relaunch
and I'm not subscribed to them
but when I try to subscribe to them so I can them unsubscribe from them, I cant
the page just turns blue when I click subscribe
so Idk how to get rid of these twitch mods
There's a mod that nets most people an extra 60+ FPS onto their stable.
I asked for copper and you gave me gold
Most you can do is install mods that cut back lighting for gold/nitra, minimize polygons on mobs, and reduces the about of particle effects from things like dirt and cryo.
MCR gives a huge performance boost without fidelity changes. Downside is that it has a bunch of other stuff.
Any mods that remove the tinnitus ass ringing from being too close to an explosion?
yes
Ea nasir
"May I see them?"
no more tinnitus
ty
just click the subscribe button on the doom music mod?
Question about modded difficulties. Do they affect the reward multiplier like Ike's old hazard 6 mod did?
So, I'm not the only one. Are you trying to log in through the Steam beta client browser?
Only work around is to just log in through a regular browser.
Man, I installed a mod, now I have 55 aquarq to find and deposit lmao
all my mods just deleted themselves nice
which mod is it? i would love my pc to have an easier time : )
Mcr
those?
it looks like this one right? thank you
If you want you can disable mission scaling and only leave x1 times mission size
Also don't forget to install Bosco chan mod, very important
my gpu% went up after installing that mod, it did more damage than helped xd
What about in mission
i had to uninstall it, suddenly the gpu percentage dropped from 90% to 40%, it registered still on the max 75 fps i set it to, but it displayed like 20 fps or something
didnt test it, i dont really know how, it would have to be the exact same layout and everything
Idk for me it made a good fps improvement
hey alls! is there a way to share all the mods I use as in a pack?
A friend of mine is interested in the game and is gonna get it soon, I wanted to share the QoL mods I use with him all at once so he could get 'em with ease
Is there a mod that lets me use other classes' equipment and overclocks?
will each of them have separate ammo?
fellas how do i add mods
if you go to settings you will see category with mods
you go there, look for mods
and subscribe to those you want
I need to know though, if I join a modded lobby, will my mods that affect me (while im not the host) still work?
Like custom equipment on me
The spacerig in general is awful for performance and is worse with MCR since I cannot do much to improve the spacerig.
However, missions are a LOT better and will be much easier on the GPU and CPU once loaded due to the technical level issues that I fixed.
Also reaching a high percentage on the GPU usually won't result in problems unless it stays there for a while. But I can understand why feeling input latency and such is problematic.
I need to know
Oh, alright
so if i have custom equipment and i join modded lobby, i will have standard equipment?
Yes, or crash.
Ah.
were you the one that made MCR? you talk in first person about it, im using the mcr better flares, but the big mod "mission content randomizer" conflict with the flashlight mod and i find the game unbearable without it. thank you for the explanation about the spacerig.
you misunderstood what i wrote completely about the gpu usage, didnt even mention latency, and i found out that, that issue isnt caused by your mod or any mod for that matter, and i found a workaround thankfully
I don't edit the player character at all so I doubt that MCR conflicts with a flashlight mod unless you get the New Bulb mutator.
And yes I made it.
Does anyone knows how to change/replace JukeBox Music
Is there anyway for me to overwrite the A-D loadout slots in the mod page?
Its a widget bug, the settings are saving, they just don't update easily. It's something I've finally figured out how to fix in the next update. In the meantime, once you change the settings, you can just disband team or start a mission to see that the changes did in fact save 🙂
https://mod.io/g/drg/m/retrocam-reshade
you guys need to see this!!
I'm surprised Ansel doesn't have this
oh wow im sorry, the flashlight mod is working now, i didnt change anything from when it didnt work, thank you for letting me know! i just tested it in deep dive for an exact comparison, i saw no change at all in performance, but i will still use that mod as it seems fun, thanks : )
do i need to log in to subscribe to a DRG mod
yes
do mods disable achievements?
like if its a simple sound change mod like the "fart" lootbug
depends on the category. i recommend checking the pins, theres a list explaining them
tldr: verified does not
alright, so for short, Verified are local mods only that allow achievements, Approved are for others if they join me and sandbox is seperately to my current savegame
do mods that arent updated to the current version still functionable?
depends on how they were made
hi, can anyone help me find visual, verified, beautiful mods like this?
turns out I cant subscribe to anything anymore
im confused
I think I can do it if I go to the website on chrome though
Hey, im having problem with my mod.io login
the login button in mod.io inside steam browser just turn the background blue
I would use this kind of search
Some are not updated so check comments
me to but i dont have much time for scroling it, so i ask here for some help
just search by all time downloaded with current version and visual tags
but why do I need the current version? even modifications of 2014 work quite stably
I'll check when I get home from work, thanks in advance
because there were engine updates and some mods were never updated
you will have hard time guessing what you need to remove because logs are kinda ass when it comes to that as well
oh right - engine update means game wont launch with mods for old engine version btw
Ok thx for instructions i appreciate it
is there a mod to disable the assignment completion dialog?
or at least make it so it doesn't interrupt me
Hey all!
I just subscribed to a bunch of mods, but they didn't carry through from mod.io into my game. Any idea of what's happening?
theres one to disable mission control dialogue i think
did you log in with steam on mod io?
i joined a lobby that printed to chat whenever someone pinged something, is this a mod?
yes
I did, yeah
hi, just joined,
quick questions,
is it possible to sort/load mods in a specific order so that one overrides the other? if so; how to, please?
hey guys, i was trying to download mods a bit ago, but whenever i clicked any button in the mod.io steam overlay, everything just turned blue and none of the buttons worked (except ironically dark mode) is this a common problem? or should I just use the regular mod.io site? Edit: I just went to mod.io browser page and installed all the mods 🙂 -
Was having this same issue, but when I went to the site, none of the mods I picked up showed in game 😦
did you log in through steam?
(on mod.io)
nope, but iirc the .pak files are loaded in name order
so it'll have to depend on the mod maker when packing the files
how do i get autoverified?
Oh so basically I'm stuck up a creek without a paddle. I basically wanted it where I could have the Doom music installed, but also use something else while fighting dreadnoughts (diggy diggy hole)
So basically it's All or Nothing when it comes to music mods
assuming "she" is a different player 😂
Derp.
I use speech to text. Editing now.
I know this.
I just wanted to mix and match my music mods for different things, instead of just hearing the ONE mod
ahhh yeah, then you are sol unless you feel like repacking mods
or worse, making it 🗿
Is it just me or when I try to install mods in the mods tab It won't let me sign in/install mods
is there a mod that lets me quickly see what missions are available?
this one comes to mind https://mod.io/g/drg/m/rancors-rig-hud
Exactly, thank you
Guys can anyone please help me with a mod where the Mission Control guy is replaced with the Ralph Bakshi guy waking up from Ren And Stimpy? I cannot find it for the love of me and it is driving me insane.
this happened to me also, you just gotta do it through the browser outside the game and log in through Steam. Once you log back in, the mods you've subscribed to will download.
Ok Ty
Hello, any modders can help me?
any mod that makes the ragdolls very reactive
hold up mods are allowed in this fantastic games, dwarves help me make a good list of essential fin mods plz !!!!
what kind of mods do you want ? Do you want to simplify your life, make it funnier or make the game harder ?
searching by most popular on modio is a good start to seeing what other people use
maxwell lootbug
Task Department
Any good approved goods that I should know off?
what HDN said
Latly I can't use mod.io through steam overlay borwser, if I press any button, it just switches it's layout and I'm not logged in. Can't Subscribe or Unsubscribe from anything.
Anyone the same problem or a solution?
has anyone come up with a riot shield type weapon or a plate magazine type gun before? i just had that idea but i felt like its already been said before
i was thinking of that the riot shield idea would be that there was this wrist attachment that would extend four poles in separate directions to reveal a small square force field,with the offense being a quad barreled pistol.The thought process was just that if you had the shield up,you were able to tank more hits(maybe even a good percentage of a detonator’s death blast,but obviously it would leave you with low health) and after enough hits,the shield would go down,having a duration before it comes back or automatically does when you resupply.The pistol could shoot in quick bursts,or perhaps made automatic to act as a close quarters weapon.The idea for the other gun was that it was an lmg with a dinnerplate pan like that one machine gun(The DP-27 i think its called,but i could be wrong).what would make the gun unique was that the pan “magazine” would be a battery attached to the side of the gun,that would spin and glow while firing energy rounds.While not being a “heavy” weapon like the thunderbird,i was thinking what sets it apart would be that maybe the perks turns the bullets into different elements of your choosing,like cryo rounds that slowly freeze up enemies or acid rounds that does damage to hit enemies over time.And that would be the trade off,it doesnt have as much ammo in the “magazine” as most heavy weapons,but your able to have elemental bullets in return.
oh shoot,Happy Bday🎉🎊
Hi just wondering about DRG mods in general, I know its mostly things to make the game a bit harder, but does using mods halt progression in the game?
Like if you do a modded hard mission with like 50 objectives and it gives you a butt load of XP, that still goes towards progression or no?
it does
and it's quite fun
doesn't always make it harder too
wait really 
the only mods that don't count are sandbox modfs
mods
any others are fine
if you wanna try em out we can @tired vapor I don't mind
I need friends 
I can show how to install
it's easy
@tired vaporam in pod 5
Maybe at some point cleaning around my house atm 
alright dm or ping or whatever
Has anyone else had this come up while trying to install the latest patch?:
So um, how di I resolve this unpacking issue for DRGPacker?
Hi, im trying to make a really hard difficulty with the mod "custom difficulty" and I was wondering if there was a way I could add modifiers to this mission?
Anyone know if I switch to the experimental branch for season 4, will all my mods get removed when i switch back to the live version?
Just curious. https://mod.io/g/drg/m/more-players-balanced is this legitimate?
Also what do I need to do when I use mods? Can I still get rewards
Like normal game progression
are there any mods that tell you when active perks refresh? (example a mod that has a popup to whenever dash is off cooldown)
that’s in the base game at the bottom left of ur screen above ur health
making a mod to replace the brt7 with the b23r
tried my best to fit it in with the drg asthetic
i know but its insanely hard to see unless you flick your eyes to it, which kind of removes the point. im thinking more on the line with the born ready popup mod or the heat crosshair
bro did not post how to make a pipe bomb for a mod suggestion 💀
big thanks
Time to do Big Boy
Don't know if this is against the rules, but is there a mod/way to change your stats, levels, and stuff? I have lots of unlockables, promotions, and other stuff from my PS4 game that didn't transfer to the steam version. And i don't wanna grind all of that again just to get back where i was.
Hello I would have some questions reagarding mods, can someone help me here?
Aye I will check this channel here tomorrow again, so Ill explain my problem if someone wants to help. Today I started playing DRG with my 50 mods, all just visuals and audio. I checked mod.io for new ones and tried swapping a few old ones for new ones. Pretty much all of them work, but the problem starts after I close the game. If I restart it after modding it crashes when I start it. If I start It a second time it will work, but all mods have to be reinstalled. I did this for 3 hours today, trying to install and uninstalling some mods, but nothing fixed the problem. My mods do work as intended and dont clash one another, because I also have this issue when only 1 mod was active before closing the game. Its very weird and I dont know what to do anymore, so maybe someone will be kind enough to help. Thank you in advance! If you need more information, feel free to answer this message or message me privately. Thank you! 😄
Wrong chat?
I encountered someone using a mod that adds flavour text to the chat whenever I mark something with the scanner. Anyone know what I'm talking about?
I like how if you post a screenshot in another channel with a mod present you'll get sent to the shadow realm but it's totally fine to post a video here explaining how to make a pipe bomb.
Hey so im trying to use the cosmetic restriction remover to give my pickaxe a little more customization and i was having trouble having my axe back blade useing as my front blade and i was wondering if yall could help me? here's the mod im using https://mod.io/g/drg/m/cosmetic-restriction-remover
Never mind
I got it
Yeah no, what the actual fuck. Granted, making explosives is not difficult, but still. https://discordapp.com/channels/257785731072786435/840172885385674762/1113896615070158890
<@&296918282403840000>
Decided to try making a sandbox save.
Ended up crashing the game - twice, so far.
Guess what, I THINK one of the mods are trying to load the whole game, mods included, all over again, question mark?
Okay, update. Loaded an old slot - crashed the game.
What the hell...
Let's manually reload the mods then... See if it still breaks.
If the game can load oml I don't want any vanilla bugs, damnit!
I will uh... give an update when I get this sorted out ig
official mod support moment
Hey, quick question, did that 1 mod and one mod ONLY crash the game?
....Did I try to install a mod I already have installed...?
Odd thing: I saw on the Mod.io page that uh...
Some of the mod I knew I had, I had... not subscribed to.
Update: I have 111 mods installed after DRG decided to reinstall them, what the hell-
mod.io has been weird in installing mods lately
Today I had a download stall for a good 15 mins or so
And often the mod's name will show up multiple times when updating as well (in mods list)
Or maybe this is a common thing, I haven't been using mods for that long
Update: Turns out, closing DRG crashes DRG.
Is there a mod that auto unlocks every Bosco framework?
sandbox utilities?
regarding modding, will the update break any?
Could someone send the 8 dwarf team mod?
I think it will but I'm not a modder myself
Seems logical that mods will need to be updated too
Yes, 1 single mod can crash the game, even if the mod does work, like the seismic charge coil gun for example
Is there a mod that makes smaller minerals clump together? I swear I had it but no longer see it
Mission Content Randomizer has that built in but there isn't a separate mod for that yet
Ah I see
That's why it was doing that with MCR and why they weren't clumping without it
Cause I turned it off since MCR messes with deep dive missions
Alright everyone, my modding problem is solved. Apparently my computer just needed a good rest overnight to process the meme overflow
does anyone know if there is a way to unsub all mods, having a clean slate now and again would be nice
I know one mod CAN crash it, but DID it?
Specifically, was it the ONLY mod that crashed it?
Did the one mod KEEP crashing it?
please :I
I can't use mods because game says "you need to accept condition of use", but i deid not see it anywhere
are there any mods to allow named loadouts? I see there's one that has mission icons, but names/labels would be even better.
thx
How do I use it?
tyvm
one other question.. is there a guide on getting started with making mods in DRG? I assume it's an Unreal Editor plugin/project but I'm not super familiar with UE.
there's a guides section on modio - https://mod.io/g/drg/r
theres a mod snowingfate uses im not sure what its called and i cant find it in his mod list it seems to just get rid of little graphic things like the ammo count in the bottom right and the mission description in the top right
actually could be a setting in game now that i think abt it
but does anybody know anything abt that
What are the limits to what you can mod in drg
is people joining approved modded game really rare?
what i want most is having bosco in a multiplayer game (as a mod) because he is really neat, but i dont think people search for approved modded servers, and theres 14 servers currently that are using approved mods right now
holding h removes your hud and you can also change what you see on your hud in options ?
is that it ?
Anyone know where I can find the audio files for the dwarf voicelines? The wiki doesn't have the one that I want. Sorry if wrong channel
anybody else unable to install mods
when i click subscribe the mod.io ui turns blue (???) but nothing else happens
Molly needs a "Please be patient I have autism" hat.
is there a infinite ammo mod?
Code dwarves, anyone able to make an arachnophobia mod? Not for me.
May be worse, actually, lol.
Yeah, I already suggested that but people don't seem to like it, which is why I came here to ask for a better one for the one greenbeard that asked
I wonder why.
You can try asking in the modding discord I guess. But I don't think it is super likely as it has been requested quite a lot already.
hey, that's me
Yep, lol.
i dont even know what that is 
they look more like bugs than the bugs do
Hello, anybody online? Got a question
IF. Problem is, my Modding tab in game is broken, cant login to the site on steam and cant download a thing. It just turns blue and thats it. Nothing happen
Does anyone have any troubleshooting tips for when you subscribe to a mod on the mod.io and they don't start downloading immediately?
re-subscribing to mods and then restarting DRG does not seem to start downloading some of the mods I subscribed to
the only mod it downloaded out of the mods I jsut got is the only one that wasn't even applicable for 1.37
ill assume the answer is yes
restarting the game fixes that
try deleting this folder "C:\Users\ your username \AppData\Local\mod.io"
Is there mod support on game pass?
do i have to use the ingame steam overlay to dowload mods?
the in game overlay is stuck and doesn't want to let me log in
any way to fix that?
no, only steam has it
pain
you can log in via any browser with that mod.io account and subscribe to mods there. they'll then download in game
i just manage all my mod subs via Chrome and it works fine, you just sometimes have to open the mod menu and then close it to make it check for new subs
i tried to do that
restarted the game
twice
though
i do not have the game in normal directory
that might affect it but im not sure. never had this issue before
that might be the issue lol
gonna try that now
still seems to be screwing with me
does anyone know if there is a mod to get custom skin tones for the dwarf? my friend and i would like to get a specific skin tone for a cosplay in game. ty
how does one get this modding thing going? i clicked on the modding tab in game, went onto the install mods button, it brings up the website, but i cannot login or subscribe to anything. the buttons are just unresponsive/turn the page blue?
I made an account in my normal browser since the in-game one is broken, its linked to my steam. just cant get the ingame browser to work
**works fine when using a browser outide of the game, subbing, logging in etc. just the steam integration one doesnt
Is there someone I can talk to
about what
does anyone know how to resolve this issue? I'm stuck on the extracting phase
1
could anyone help me iam trying to mod the game but i cant even log in and its been happening for a few weeks
always says my login failed
Anyone know if the hazard 6 mod is planned on getting updated so it's usable? If not would it be possible to make a version that works for the current version of DRG or would we need mod author permission for that?
custom difficulty mod
How do I use this? I downloaded the hazard 6 json and I can't find a place to put it.
The revelation of this on my part was so blunt that I couldn’t comprehend it’s that shrimple, but:
- download and install the mod,
- in game, open mod settings with a hotkey and go into custom difficulty tab,
- open the downloaded json with a text editor, with the difficulty you want to upload
- get accustomed to the mod’s settings - see what’s what’s basically,
- copy-paste the jsons data into the blank space on creating a custom difficulty and save
- profit
Weird thing is I tried doing that and it kept giving me an invalid json error
Are you sure you're copying everything and replacing everything? If the format messes up even a little it will throw that error
greetings, how do i increase the fov past 120? and a word of thanks.
so with all of these enabled and all of the dependancies met, the game crashes on launch and I do not know why because the exact same set of mods worked perfectly fine yesterday
if anyone can help it'd be greatly appreciated
is there some kind of list for mods on Improving drg performance, my pc won't survive s4 release I'm sure of it
better post processing
yeah
okay first it said drglib wasn't installed (it was) and now I've uninstalled it, when I try to reinstall it says it's already installed (it isn't)
try looking for the mod in the game files
I don't know what this meeeeeeeeans
drglib is now installed and I don't get any dependancies warnings but the game crashes the second I leave my pod and go into the space rig
okay I disabled mods that had warnings about not being updated for this version of the game (I'm not on the beta and these exact mods worked just fine yesterday so wtf is even going on here) and it finally works
for some reason i have managed to isntall 7 mods
but now
it doesn't wanna react again
using an external browser to manage mod.io
nvm
needed to relaunch game
Favorite verified mod? It can be goofy
new to modding drg
how exactly do mods work when playing online
want to swap mission control voicelines for someone else, but i dunno if drg will let me join sessions with a modified game (at all)
the mod category (verified, approved, or sandbox, found in the mod's tags) determines how it will work online. you can find guides on this on deep rock's mod.io page
thanks for the pointer
Can anyone tell me where to find a motion blur disableing mod and how to install it?
My friend is getting super motion sick, and I'm looking for a solution
We've already turned off head bob and screenshake
someone should make a mod that plays the freebird solo whenever you activate iron will
https://discordapp.com/channels/257785731072786435/258990408602877952/1115383111488917524any posible chance some one can make a mod for this?
Ty
Make a mod where all the voicelines are rock and stone
See how unbearable the game gets
is there a mod that lets me free cam so i can take some action shots or smth
There is a spectator mod which I believe does a similar thing
i wasnt sure if that was exclusively for other players or not
kinda confusing when reading it
I can't seem to be able to login or subscribe to mods
all it does it change to a blue color whenever I try to subscribe or login
Is there an approved mod which lets you see player rank during a mission?
Although I don’t care much about player rank, I wanna at least know what to expect lol
not that im aware of
Anyone like farts nosies when lootbugs die
same
any solution?
@kindred moth Are you doing that with the steam overlay?
yes
when im in normal browser (firefox) it turns blue but this pops up
in steam overlay it just turns blue without popup
Is there a way to force the download of a mod from Mod.io
when DRG doesn't begin to download a mod immediately from Mod.io upon subscribing?
I'm having the same issue, I've gotten around it by logging into mod.io on google and sibscribibg to mods there
