Jump to content

Recommended Posts

Posted

My son has autism and is 8. I dont play this game but I find him mods that he wants. He watches youtube videos and points to it telling me he wants it. I try to find it but MOST are 1.8. I have forge installed and Optifine 1.12 and then soon 1.13.
Hes SUPER into lucky block stuff. I have the lucky block mod installed and like 5 or 6 add ons, for the lucky block but he'll find some that needs loot++ and I can't get that to work and or he'll find older versions of lucky block add ons that don't work. I guess my questions are:
is it possible to get an older mod to work with a different version of minecraft? is there some trick that I just dont know?
I dont play this game but I have to do all the installing for my son so I guess that is why I am super confused.  I've tried searching for answers but I guess I am not wording it right. I keep getting old content or stuff not pertaining to my situation.
Like I'll dl the mod and drop the folder in add ons> lucky block but sometimes they do not show up with all the other stuff.
Example:
Frosty lucky block. He saw it on a video. I went and downloaded it. Dropped the folder in the add> lucky block
He starts the game and the frosty block isnt in with all the other blocks.

 

Posted
  Quote

is it possible to get an older mod to work with a different version of minecraft?

Expand  

No, this is a fundamental thing with Minecraft modding. Mods {for the most part} only work for one specific Minecraft version.

I do Forge for free, however the servers to run it arn't free, so anything is appreciated.
Consider supporting the team on Patreon

  • 3 weeks later...
Posted

That is correct one version per Minecraft version. There are a FEW exceptions but the mod author will let you know if that's the case.  

 

The water downed idea is that Minecraft is "encoded" (non open sourced) and therefore every single update it's "mixes" the code even more. So even a minor update could render a mod useless...

 

 

Posted

If you want to, you can create a script and then a bunch of desktop shortcuts that can allow you to switch between mod directories easily.

 

If you copy the copy below into a file called switchmc.bat and replace YOUR_USER_NAME with your computer's account name, then you can make desktop shortcuts to this file and add the mane of the mods directory to the target property.

 

E.g. if you save switchmc.bat into C:\ then create a shortcut called swichmc 1.8.9, right click, and then change the target to say C:\switchmc.bat 1.8.9

 

Now you can put all your 1.8.9  mods in a directory called mods_1.8.9 (in your .minecraft directory). 

 

It makes it faster to switch between versions of Minecraft. You still need to install forge for each version of minecraft and make a profile for each version.

 

Let me know if you need any help.

 

@echo off
echo Minecraft Mod Directory Switcher 

set MCPATH=C:\Users\YOUR_USER_NAME\AppData\Roaming\.minecraft
set FILENAME=mods
set modsDir=%MCPATH%\%FILENAME%

goto :start

REM Error handling labels 
:noMCVersionArg
echo ERROR - Missing Minecraft version - e.g. 1.12
goto :usage

:noTargetModsFound
echo ERROR - Target mods dir not found: %targetModDir%
goto :usage

:noModsDirFound
echo ERROR - Mods dir not found: %modsDir%
echo       - Create symlink with: mklink /D mods SOME_MOD_DIR
goto :usage

:usage
echo USAGE: switchmc VERSION [extention]
echo        switchmc 1.12.2 -funmods
goto :end


:start
set ext=""
if "%1"=="" goto noMCVersionArg
if "%2"=="" goto setModExtenstion

:setModExtenstion
set ext=%2

:checkIfModDirIsSymLink

set targetModDir=%MCPATH%\%FILENAME%_%1%ext%
if not exist %targetModDir% goto :noTargetModsFound

if not exist %modsDir% (
goto :createSymLink
)

:checkSymLink
set SP1=0
for /f "tokens=4,5 delims= " %%A IN ('dir /L /N %modsDir%*') do (
    if %%B EQU %FILENAME% (
    if "%%A" EQU "<SYMLINKD>" set SP1=1
    )
)

if %sp1% EQU 0 goto :symFalse
if %sp1% EQU 1 goto :createSymLink

:symFalse
echo ERROR - Not switching mods directiry as mods is not a symlink
echo       - Rename mods dir and create symlink with: mklink /D mods SOME_MOD_DIR
goto :end

:createSymLink
echo Switching to mod dir %targetModDir%
if exist %modsDir% rmdir %modsDir% 
mklink /D %modsDir% %targetModDir%

goto :end

:end

 

  • Like 1
Posted
  On 9/1/2018 at 1:35 AM, The_Jackal said:

If you want to, you can create a script and then a bunch of desktop shortcuts that can allow you to switch between mod directories easily.

Expand  

Or you could just use the Profiles functionality of the Minecraft Launcher.

This is my Forum Signature, I am currently attempting to transform it into a small guide for fixing easier issues using spoiler blocks to keep things tidy.

 

As the most common issue I feel I should put this outside the main bulk:

The only official source for Forge is https://files.minecraftforge.net, and the only site I trust for getting mods is CurseForge.

If you use any site other than these, please take a look at the StopModReposts project and install their browser extension, I would also advise running a virus scan.

 

For players asking for assistance with Forge please expand the spoiler below and read the appropriate section(s) in its/their entirety.

  Reveal hidden contents

 

Posted (edited)
  On 9/1/2018 at 10:20 PM, vpontin said:

Meh. Since the official profiles feature was introduced this should be killed with fire.

Expand  

I would argue that it still a simpler operation for adding/removing mods to boot. As far as I know that where the Vanilla launcher hits the fan. Likely due to not being geared for this purpose.   

 

Ho and it's way easier to install/update Forge as well. 

Edited by FriendlySurvival
Forgot to mention...

 

 

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Unfortunately, your content contains terms that we do not allow. Please edit your content to remove the highlighted words below.
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

Announcements



×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.