Ribbon Maze

by H8UL

The maze itself is destined to be automated.

Overhaul
4 years ago
0.16 - 0.17
54

i MOD COMPATABILITY

4 years ago
(updated 4 years ago)

Hi.

PLEASE GIVE REMOTE COMMANDS TO INSERT INTO THIS TABLE:

https://github.com/h8ul-modder/factorio-ribbon-maze/blob/master/control/settings-control.lua#L398

Please & thank you <3

ADD TO BOTTOM OF control.lua:

remote.add_interface("RibbonMaze",{
["insert_mod_surface"]=function(surface_name)
for _,surfaceName in pairs(global.ribbonMazeConfig.modSurfaces)do
if(surfaceName==surface_name)then
return false
end
end
return table.insert(global.ribbonMazeConfig.modSurfaces,surface_name)
end,
["remove_mod_surface"]=function(surface_name)
for tableIndex,surfaceName in pairs(global.ribbonMazeConfig.modSurfaces)do
if(surfaceName==surface_name)then
return table.remove(global.ribbonMazeConfig.modSurfaces,tableIndex)
end
end
return false
end,
})

WHY?

https://mods.factorio.com/mod/warptorio_planet_maze

4 years ago

I have submitted this as a pull request now

https://github.com/h8ul-modder/factorio-ribbon-maze/pull/41

4 years ago

RibbonMaze is now considered dead/abandoned.

I will be embedding the mod into the environment/planet mod so that i and others can use your generation code.
If you have any issues with this feel free to contact me.

4 years ago

hi PyroFire , if mod is dead, can you fork it and maintain it, its one of my favorite mods

4 years ago
(updated 4 years ago)

hi PyroFire , if mod is dead, can you fork it and maintain it, its one of my favorite mods

This mod adds surface generation code and does not need to be maintained unless a factorio update breaks it.

4 years ago

PyroFire
if you fork it and update it to 0.18 any chance you can include a video demonstration link in the description: https://youtu.be/XZu5xoG5tKQ

4 years ago

PyroFire
if you fork it and update it to 0.18 any chance you can include a video demonstration link in the description: https://youtu.be/XZu5xoG5tKQ

I have already exported Ribbon Maze into a standalone version with the needed changes for planetorio.
This request is so i don't have to do that.

4 years ago

ok ill look at planetorio in a future video after i do a video on warptorio2!

3 years ago
(updated 3 years ago)

FYI there's already an 0.18 fork. Maybe a PR would be welcome over there?

https://mods.factorio.com/mod/RibbonMaze018

New response