If you appreciate the work done within the wiki, please consider supporting The Cutting Room Floor on Patreon. Thanks for all your support!

Family Guy: The Quest For Stuff (iOS, Android)

From The Cutting Room Floor
Jump to navigation Jump to search

Title Screen

Family Guy: The Quest For Stuff

Developer: TinyCo
Publisher: Fox Digital Entertainment
Platforms: iOS, Android, Windows
Released internationally: April 10, 2014


CodeIcon.png This game has unused code.
DevTextIcon.png This game has hidden development-related text.
GraphicsIcon.png This game has unused graphics.
DebugIcon.png This game has debugging material.


The Simpsons: Tapped Out Family Guy: The Quest For Stuff has very little questing, but a lot of stuff. Some of it is unused.

Unused Graphics

FamilyGuyTheQuestForStuff Mobile placeholder.png FamilyGuyTheQuestForStuff Mobile placeholder@2x.png FGTQFS Placeholder@4x CDN.png
Two placeholder graphics exist as placeholder.png and placeholder@2x.png. Manually scraping the CDN reveals a more interesting texture.

FamilyGuyTheQuestForStuff Mobile BetaLogo.png FamilyGuyTheQuestForStuff Mobile logo SL.png
Beta leftovers.

FGTQFS BadImage@2x.png
An image that possibly stands in for an incorrectly formatted texture?

Unused Flag Text(?)

GAME_ACKNOWLEDGE_GIFT_FAIL_MESSAGE is a string ID that has the following English text.

Failed to acknowledge a received gift. This should only happen if you sent bogus information to the server.... you dirty cheater.

Unused Text

aaaaaa
aaaaaaaa
aaaaaaaaaaaaaa
XXXXXXXXXXXXXXXXXX
Placeholder Gift Box Modal Flavor Text
Search ...
Placeholder
placeholder
PLACEHOLDER
Sheriff Peter Placeholder

Unused Code

layers-test.json

A test for layering.

{
    "layers": [
        {
            "type": "env",
            "imgs": [
                {
                    "img1.png": [
                        0,
                        0
                    ]
                },
                {
                    "img2.png": [
                        0,
                        0
                    ]
                }
            ]
        },
        {
            "type": "bgrepeat",
            "img": "watertile1.png"
        },
        {
            "type": "watereffect",
            "img": [
                "watertextures1.png",
                "watertextures2.png"
            ],
            "pos": [
                0,
                0
            ],
            "rect": [
                100,
                100
            ]
        },
        {
            "type": "terrain",
            "img": "isometric_grass_and_water.png",
            "tilesize": [
                64,
                32
            ],
            "size": [
                10,
                3
            ],
            "tiles": [
                1,
                1,
                1,
                1,
                1,
                1,
                1,
                1,
                1,
                1,
                2,
                2,
                2,
                2,
                2,
                2,
                2,
                2,
                2,
                2,
                3,
                3,
                3,
                3,
                3,
                3,
                3,
                3,
                3,
                3
            ]
        }
    ]
}

Development Leftovers

Debug Console?

fg_lua_console_debug_v2.json appears to be a call for an Lua-based debug console and fg_ads_debug.json is an ADS debugger, with ads_debug_cell_v2.json too, both aren't present in the Windows 8.1 version.

Debug- extensionless mentions debug character unlocking and blacklists.

{"DebugCharacterUnlock":{"ids":["jillian","santa"]},"DebugCharacterUnlockBlacklist":{"ids":["patchesMDeco2","musicStreak"]}}

A button called button_debug.png appears to be a debugging button, with no text inside (unless called by the game) likely calling a debug menu, this function and files is not in the Windows 8.1 version.

FGTQFS DebugButton.png

Developer Cheats

hud_cheatButton.png is mentioned in fg_hud_v**.json, and it appears to be a developer cheat button with a ! in the middle, it refers to hud_cheatButton, likely calling a or multiple developer cheat menus. The beta and Win8 version also has ui_hud_cheat.json, which appears to be a cheat menu, beta has the oldest and Win8 has the newest file. Win8 also has the files: material_cheat.json with its material_cheat_cell.json and spawn_cheat_cell.json alone.

Unfortunately, the functions to load the button and menu were removed from public releases.

Cheat button, named hud_cheatButton.png with 2× and 4× size variants in-game data.

Quest Textbox

quest_icon_cheatBox_bottom/top.png is a quest developer cheat textbox. Unfortunately, it isn't called anywhere in the Win8 or beta version.

TQFS QuestIconCheatBox top.png
TQFS QuestIconCheatBox bottom.png

Shell Script

rename_2.sh is present in the Windows 8 version.

#!/bin/bash
# 

set -e
set -x


if [ "$1" == "" ]; then
    cd "`dirname "$0"`"
else
    cd "$1"
fi
echo '----------------------------------------------'
pwd


for f in *.caf
do
   
	name=`basename $f .caf`

	mv $f "$name"_2.caf

done