Here’s a module for the gamemaker games. just create a file called gamemaker.sh
in /home/pi/RetroPie-Setup/scriptmodules/ports
With the following contents:
#!/usr/bin/env bash
# This file is part of The RetroPie Project
#
# The RetroPie Project is the legal property of its developers, whose names are
# too numerous to list here. Please refer to the COPYRIGHT.md file distributed with this source.
#
# See the LICENSE.md file at the top-level directory of this distribution and
# at https://raw.githubusercontent.com/RetroPie/RetroPie-Setup/master/LICENSE.md
#
rp_module_id="gamemaker"
rp_module_desc="GameMaker - Games for the Raspberry Pi"
rp_module_menus="4+"
rp_module_flags="nobin !mali !x86"
function install_gamemaker() {
# Install They Need To Be Fed Game
wget -O- -q https://www.yoyogames.com/download/pi/tntbf | tar -xvz -C "$md_inst"
# Install Super Crate Box Game
wget -O- -q https://www.yoyogames.com/download/pi/crate | tar -xvz -C "$md_inst"
# Install Maldita Castilla Game
wget -O- -q https://www.yoyogames.com/download/pi/castilla | tar -xvz -C "$md_inst"
}
function configure_gamemaker() {
mkRomDir "ports"
addPort "$md_id" "TheyNeedToBeFed" "TheyNeedToBeFed" "$md_inst/TheyNeedToBeFed/TheyNeedToBeFed"
addPort "$md_id" "SuperCrateBox" "SuperCrateBox" "$md_inst/SuperCrateBox/SuperCrateBox"
addPort "$md_id" "MalditaCastilla" "MalditaCastilla" "$md_inst/MalditaCastilla/MalditaCastilla"
}
I can’t add it to the script as the distributors wish for people to download the games directly but its there if people want to add it manually.