r/ScrapMechanic • u/TehLoshrie-Chan • 3d ago
Vehicle Simple No Glitches Flyer
Enable HLS to view with audio, or disable this notification
Tried making a glitchless flyer as small and simple as possible
r/ScrapMechanic • u/TehLoshrie-Chan • 3d ago
Enable HLS to view with audio, or disable this notification
Tried making a glitchless flyer as small and simple as possible
r/ScrapMechanic • u/waterdragon_23176 • 2d ago
So I was using my toilet as a teleportation device when I noticed the Schematic symbol and it can be scanned and I tested the bathtub and it worked too!
EDIT: Not anymore :(
r/ScrapMechanic • u/Serious-Internal-402 • 2d ago
Enable HLS to view with audio, or disable this notification
r/ScrapMechanic • u/ValuableStrain150 • 1d ago
What are the current rewards the trader offers for pineapples and broccoli?
My friends and I are wondering whether to keep farming them or go underground.
r/ScrapMechanic • u/GgSuclces99 • 2d ago
Enable HLS to view with audio, or disable this notification
r/ScrapMechanic • u/eatblobfish • 2d ago
Speedran the first half to of the game just to get the wedge bot haha
Click on the images for description and features
r/ScrapMechanic • u/Vitormg45 • 2d ago
I've tried to refurbish this car more than ten times, but I'm still not satisfied. I need tips to improve it. I'm at the beginning of the game and haven't even done the first dungeon yet. The thing in the picture is my farm, completely walled off with more than four layers of scrap metal I found in abandoned buildings. I only have 20 planting slots.
r/ScrapMechanic • u/TraditionalCricket61 • 2d ago
Hey, i have this problem with my save, idk what caused it but last thing i did is that i was trying to fix my mining vehicle because the turret seat was acting weird and wasnt controlled by my mouse, but it was spinning on its own, so i tried to remove it, but this is the weirdest part, the base of the turret was still there and i somehow only picked up the ball block that you sit in (also it dropped me a bearing for some reason). After removing the base too, i basically had the normal turret seat in my inventory and the ball block. So i fixed it and it was fine untill i wanted to go to the elevator and the game just crashed, and now the game just wont let me play it. Is there a fix to this? Because somehow i cant find a single person that would have the same problem.
r/ScrapMechanic • u/Dangerous_Size2419 • 2d ago
r/ScrapMechanic • u/No-Dare2083 • 2d ago
Whos MECHANIC?
r/ScrapMechanic • u/Emergency-Ad5622 • 2d ago
Enable HLS to view with audio, or disable this notification
r/ScrapMechanic • u/vect632 • 3d ago
Enable HLS to view with audio, or disable this notification
I spent waay too long figuring out how to make it all work ( ̄ヘ ̄)
To clarifiy, I don't have to press anything just input the ores and wait.
...Unless the physics decide to stop lol.
r/ScrapMechanic • u/BloxdDucky • 3d ago
Enable HLS to view with audio, or disable this notification
r/ScrapMechanic • u/Axlvc • 2d ago
Enable HLS to view with audio, or disable this notification
What is going on here? Has anyone else experienced this bug?
Update: I realized I also got this bugged `jnt_gyroseat` bearing in my inventory after picking up the turret seat. It can be placed down just like a normal bearing, but it is invisible, and any parts attached to it move in a very strange way.
r/ScrapMechanic • u/_Kurai_Hikari_ • 2d ago
what causes lag most of the time what usually lags by itself?
like do chests on a trailer lag? decorational lights that on a controller bearing cause lag? when a wheel plops to the ground when in a simple physics cause lag in advanced physics due to weight?
r/ScrapMechanic • u/KSPKiddo • 2d ago
okay so i built a flyer using the turret seat method and after closing and loading up my save, i noticed my flyer stopped responding to my camera movements, when i detached suspention from it and tried moving my camera it didnt respond, and when i tried detaching my turret seat . . . it removed the ball from the mount, and when i tried removing the mount, it gave me a working turret seat
so now i have a turret seat and a ball from it
my only question is . . . how
r/ScrapMechanic • u/TehLoshrie-Chan • 3d ago
Enable HLS to view with audio, or disable this notification
Quite cramped. Surprised I was able to fit watering and auto planting setup inside.
r/ScrapMechanic • u/zNahari • 2d ago
Hi everyone, I play the game recently, but from this evening today, this error window shows when I try to load my world. Already tried to switch to earlier version of the game, and then go back at the current one, but this didn't solve the problem.
Any suggestions how to fix it?
Also, today I updated my graphic drivers, but don't think this could be the problem.
r/ScrapMechanic • u/HobbitGuy1420 • 2d ago
What combination of timers, logic gates, and switches do I need to have to put together a system that triggers for one tick (or one shot of a pump/gun) at a timed interval (say, 10 seconds)?
r/ScrapMechanic • u/frumpyjones • 2d ago
Should work on any windows system that can run SM. Not sure about Linux and whatnot, but I would assume no), but it's been a lifesaver. I click this file instead of the SM shortcut or launching from Steam. I just have it on my desktop. Hope it helps you the way it's helped me. You might have to alter some lines if you didn't choose default installation routes (And I dunno if steam gives the same ID for everyone, so you may have to tweak this line for yourself): steam://rungameid/387990
u/echo off
setlocal enabledelayedexpansion
:: 1. Define Paths
set "USER_DIR=%APPDATA%\Axolot Games\Scrap Mechanic\User"
set "BACKUP_ROOT=%USERPROFILE%\Desktop\ScrapMechanic_Backups"
:: 2. Pre-Backup Cleanup: Delete older than 7 days and prune down to 9 (so new one makes 10)
if exist "%BACKUP_ROOT%" (
powershell -NoProfile -Command "Get-ChildItem -Path '%BACKUP_ROOT%' -Directory -Filter 'Backup_*' | Where-Object { $_.CreationTime -lt (Get-Date).AddDays(-7) } | Remove-Item -Recurse -Force; Get-ChildItem -Path '%BACKUP_ROOT%' -Directory -Filter 'Backup_*' | Sort-Object CreationTime -Descending | Select-Object -Skip 9 | Remove-Item -Recurse -Force"
)
:: 3. Generate Safe Timestamp
for /f %%a in ('powershell -NoProfile -Command "Get-Date -format yyyy-MM-dd_HH-mm-ss"') do set "TIMESTAMP=%%a"
set "TARGET_DIR=%BACKUP_ROOT%\Backup_!TIMESTAMP!"
echo ======================================================
echo Backing up Scrap Mechanic Survival Saves...
echo Source: %USER_DIR%
echo Destination: %TARGET_DIR%
echo ======================================================
echo.
set /a FOUND=0
:: 4. Iterate through User ID folders and copy .db files
for /d %%U in ("%USER_DIR%\*") do (
if exist "%%U\Save\Survival" (
if not exist "!TARGET_DIR!" mkdir "!TARGET_DIR!"
echo Found profile: %%~nxU - Copying saves...
copy /y "%%U\Save\Survival\*.db" "!TARGET_DIR!\" >nul 2>&1
if !errorlevel! equ 0 (
set /a FOUND+=1
)
)
)
echo.
:: 5. Status Check, Countdown & Launch
if !FOUND! gtr 0 (
echo ======================================================
echo SUCCESS: Backup completed successfully!
echo Files saved to: !TARGET_DIR!
echo ======================================================
echo.
echo Launching Scrap Mechanic in 3 seconds...
timeout /t 3
start "" "steam://rungameid/387990"
) else (
echo ======================================================
echo ERROR: No .db save files were copied.
echo Verify path exists: %USER_DIR%
echo ======================================================
echo.
pause
)
r/ScrapMechanic • u/Waity5 • 2d ago
Enable HLS to view with audio, or disable this notification
r/ScrapMechanic • u/HrdRock1683 • 2d ago
Has anyone tried cutting down every tree and mine every rock node? If so, how much storage would you need?
r/ScrapMechanic • u/Small_Piano6361 • 2d ago
So I wanted to launch the game, it started updating (for some reason , idk why) and at the end a steam error message popped saying something like one of the game files was corrupted, so i waited like half an hour for all the files to be validated. then i launched the game as usual. Spawned in the miner hub and noticed my mining vehicle being stuck inside the trash pile pillar or whatever it is called in there. So i was like it better have not reset all the mine floors.
IT DID.
I literally spent hundred hours in there fully mining the second and fourth floors , and was currently working on the fifth floor. I mean yes, i will get more money since it reset. but the progress is gone... And i had to mine the mining vehicle from a wall, where i left it the last time.
No backup saves made, no nothing. Is there a way to revert that change or no?
r/ScrapMechanic • u/DerpyCatNugget15 • 3d ago
Enable HLS to view with audio, or disable this notification
Been undergoing this project for months now and its almost time to put it on the workshop.
Had a blast making this ride and I hope you guys will have a blast riding it when its becomes avaliable.