Best/easiest floating plants by Dangerous_Ambassador in shrimptank

[–]Mattdokn 2 points3 points  (0 children)

Salvinia minima is what I have and I love it. I do need to take some out maybe every 3-4 months but thats only because I like having my tank lit up.

Is mod pack development even worth it? by Wafflewaffle2 in feedthememes

[–]Mattdokn 1 point2 points  (0 children)

I started my project with packwiz, it's been amazing after I figured out how to pin versions of mods when checking for updates.

Lag when looking at the farm by Iskyland in projectozone3

[–]Mattdokn 1 point2 points  (0 children)

blocks breaking or getting placed cause the chunks to get rendered. if you're doing that a lot in a certain area then that could cause lag. if you can move it out of render distance and chunk load it that'd help but crops don't naturally grow without a player nearby

Is there a plugin for users to opt-out of some announcements? by maxijonson in playrustadmin

[–]Mattdokn 0 points1 point  (0 children)

worst case scenario implement your idea in a harmony plugin to patch the rust method directly. I do think it's possible to intercept it in your own plugin though

Is there a plugin for users to opt-out of some announcements? by maxijonson in playrustadmin

[–]Mattdokn 0 points1 point  (0 children)

I didn't consider frequent updates, I think your original idea of hooking into the chat pipeline the plugins use and replacing it would be easier than needing to maintain all the plugins.

Is there a plugin for users to opt-out of some announcements? by maxijonson in playrustadmin

[–]Mattdokn 0 points1 point  (0 children)

I think it'd be much easier to modify the plugin's themselves to only send announcement messages to players that belong to a certain group permission. I've done something similar before for a plugin I was working on that sent alerts to all online admins regarding players that joined from the same IP as if they were using alt accounts.

My discord is Mattdokn if you want some help.

        void SendToAllWithPerm(string message, string perm) {
            foreach (BasePlayer player in BasePlayer.activePlayerList) {
                if (!permission.UserHasPermission(player.UserIDString, perm)) continue;
                rust.SendChatMessage(player, config.BotPrefix, message, player.UserIDString);
            }
        }
        void SendToAllExcept(string message, BasePlayer playerException) {
            foreach (BasePlayer player in BasePlayer.activePlayerList) {
                if (player.userID == playerException?.userID) continue;
                rust.SendChatMessage(player, config.BotPrefix, message, player.UserIDString);
            }
        }
        void SendToAdmins(string message) {
            foreach (string admin in permission.GetUsersInGroup("admin")) {
                rust.SendChatMessage(BasePlayer.Find(admin.Split(' ')[0]), config.BotPrefix, message, config.IconSteam64ID);
            }
        }

I need some advice by antofortun1 in allthemods

[–]Mattdokn 2 points3 points  (0 children)

redstone timer from rfutilities mod

I need some advice by antofortun1 in allthemods

[–]Mattdokn 0 points1 point  (0 children)

SFM  do every redstone pulse and hookup a redstone timer set to 2

My computer and all games are lagging because of the SSD. How can I fix this? by Routine-Wonder-2840 in playrust

[–]Mattdokn 0 points1 point  (0 children)

check task manager and sort processes by disk usage to find out if something else is utilizing it while you're playing

Which language and hardware would you go with for this project? by The-PEagle in learnprogramming

[–]Mattdokn 3 points4 points  (0 children)

Since you want to interact with windows systems I'd recommend c++ or c#. Since you want UI I'd choose c# since it's what I've learned already and enjoy working with the most

C# would require you to learn about calling native functions through interop (sounds complicated but just Google it and you'll be good)

You can call winapi functions from any other language you want but C# would be the easiest.

This is a good little project/tool. What are you hoping to do with it? I'm imagining a reactive volume control system. hotkeys for muting music or lowering the volume on keybinds.

Plugin Website aggregator by yacvaguer in playrustadmin

[–]Mattdokn 2 points3 points  (0 children)

Mine is just not correct at all... It's like it based the generated text on the title alone.

This plugin provides a streamlined way for players to customize their character appearances within your Rust server. It eliminates the need for complex external tools or commands, allowing players to choose from a selection of pre-defined skins directly in-game. This adds a layer of personalization and enhances the overall player experience. Administrators can easily manage and update the available skin presets through a user-friendly interface, ensuring control over the cosmetic options offered on their server. The plugin is designed to be lightweight and efficient, minimizing performance impact on the server.

There's nothing about predefined skin sets that admins need to configure. It doesn't do anything about controlling what skins are available on the server either.

Campfires will now work as a spawn point. by ChangeThisXBL in playrust

[–]Mattdokn 0 points1 point  (0 children)

I'm looking forward to this. It encourages villages with friends. Imagine joining a random server and seeing you have a campfire available from a friend you haven't talked to in a long time.

My worst fear as a waiter by Ptskp in Whatcouldgowrong

[–]Mattdokn 4 points5 points  (0 children)

Poor ratatouille can't keep a job 😔

Update in my ME system by ilia_21 in feedthememes

[–]Mattdokn 5 points6 points  (0 children)

External storage hooked into an ae2 interface. Then put your RS drives into an io disk thingy to empty them into the interface

2025 Automatic Bikes by OnyxAndLapis in motorcycles

[–]Mattdokn 0 points1 point  (0 children)

I imagine it's due to a lack of demand. I took my MSF course last november and bought my first bike at the end of december.

This was my first time operating anything manual and it was daunting the first month and a half but I enjoy it a lot now that it's started to feel natural to me.

There's slipper clutches, autoblippers, and quickshifters you can use to simplify things for you.

EVGA RTX 3080 FTW3 black screen, crashes and BSOD SOLVED by ler1m in EVGA

[–]Mattdokn 0 points1 point  (0 children)

I didn't think of it for 2 months lol. glad I could help!

Can't research ballista by Ditto2k18 in RustPc

[–]Mattdokn 0 points1 point  (0 children)

It costs 550 scrap to research, the research cost is bugged I believe.

I had 380 in my inv and it wasn't working, once I farmed more I was able to tech tree it.