Skip to main content

Indie game storeFree gamesFun gamesHorror games
Game developmentAssetsComics
SalesBundles
Jobs
TagsGame Engines

wedead69

2
Posts
A member registered Aug 04, 2024

Recent community posts

Allow wtv browser you wanna play the game in to have access to your game files inside console

once you do that just go into the www folder and double click the index.html file

the game will then launch inside the browser you allowed access to your game files.

(2 edits)

It works on Linux you just need to allow your browser to access the game

Step1: Download Linux version of game

Step2: Use your Konsole to allow what browser you have to access the game files on your pc. (i use brave so my cmd looks like this "brave-browser --allow-file-access-from-files

Step3: Launch the game by double clicking the index.html file inside of your www folder

the location is MILKER CLICKER-v1-linux-public/www/

Hope that helps yall im pretty new to linux actually only 2 weeks now since i deleted windows, anyhoo hope that helps yall.

BTW you need to fix a typo issue inside the variablehud folder 
This cmd fixes it: 

··• mv Hud_3_Gauge.rpgmvp Hud_3_gauge.rpgmvp

and this cmd permanently fixes it:

for f in *_Gauge.rpgmvp; do mv "$f" "${f/_Gauge/_gauge}"; done

Because Linux is case sensitive you need to make all the capital Gs into lowercase gs and it fixes it. (thats what the above commands do)

If none of that works just run a python http server and it will work.

the cmd is:

python3 -m http.server 8000

Open the browser you wanna use (that you allowed files access too) and in the url section put the webserver name in this case its localhost:8000