Cleaned up scripts directory

Made scripts runnable at startup
Added printing functions and remapped default Lua printing
This commit is contained in:
Alexander Bock
2014-08-29 13:04:20 +02:00
parent 1782857c72
commit 79174d5b6c
17 changed files with 221 additions and 59 deletions

View File

@@ -1,16 +0,0 @@
{
level1_string = "music1",
level1_integer = 2332,
level1_dictionary =
{
level2_string = "stuff",
level2_integer = 32,
level2_dictionary = {
level3_string = "levels",
level3_integer = 323232
}
},
level2_double = 3.4,
level2_boolean = true
}

View File

@@ -1,15 +0,0 @@
musicname = "music2"
lyrics = "This is not, the greatest lyrics in the world. This is just a tribute"
config =
{
level1_string = musicname,
level1_lyrics = lyrics,
level1_secrets =
{
secret_stuff1 = "Password",
secret_stuff2 = "123456",
},
level2_double = 4.3
}

View File

@@ -1,5 +0,0 @@
{
setting1 = 1,
setting2 = 2,
t = {s = 1, t = 2, u = 3}
}

View File

@@ -1,6 +0,0 @@
{
setting2 = 4,
setting3 = 1,
t = { s = 2, v = 0},
tt = { t = { a = "a", b = "b", ff="2" }, u = { a = "a", b = "b" } }
}

View File

@@ -1,4 +0,0 @@
{
BasePathOffset = "../../.."
}

View File

@@ -0,0 +1 @@
print "foo"