Jonnys Debug

by 1Jonny

"ErrorReport Log Gui" for Modder Factorio Start = Printet all Tables and Variables in the JoErrRep Funktion into a Gui Overlay and Stop Factorio

5 years ago
0.13 - 0.17
24
Owner:
1Jonny
Source:
N/A
Homepage:
http://Jonny.one
License:
The Unlicense (Public Domain)
Created:
5 years ago
Latest Version:
0.17.0 (5 years ago)
Factorio version:
0.13 - 0.17
Downloaded by:
24 users

You can also combine this mod with other Lib-mods
"ErrorReport Log Gui" for Modder

comands:
ErrRep({ })
JoErrRep({ })
JonnysErrRep({ Table })
JonnysErrorReport({ Table1, Table2, })


Test Code 1:
JonnysErrorReport({ data.raw.recipe["electric-mining-drill"] })

Test Code 2:
Recipe_Info = data.raw.recipe["electric-mining-drill"]
JonnysErrorReport({ Recipe_Info })

Test Code 3:
Recipe_Info = data.raw.recipe["electric-mining-drill"]
ErrorTable["electric-mining-drill"] = Error
JonnysErrorReport({ Recipe_Info, ErrorTable })

Test Code 4:
Table_Info["iron"] = data.raw.item["iron"]
JonnysErrorReport({ Table_Info })

Test Code 5:
Table_Info["iron"] = "is ok"
Table_Info["iron-plate"] = "is ok"
Table_Info["electric-mining-drill"] = "is ok"
Table_Info["my_mod-tool"] = "is ok"
Table_Info["my_mod-item"] = "is ok"
Table_Info["my_mod-recipe"] = "is ok"
Table_Info["my_mod-func_1"] = "is ok"
Table_Info["my_mod-func_2"] = "is ok"
Table_Info["my_mod-test"] = "is ok"
Table_Info["my_mod-Error"] = "is ok"
Table_Info["my_mod"] = "is ok"
JonnysErrorReport({ Table_Info })