Well like mentioned in the title I got a rather strange problem.
When I'm using Lua Array String / Lua Array Int the Program just terminates without any kind of Error.
here an example of the Script
Player = {
Position = {
X = 0,
Y = 10
},
Animation_Delay = 75
}
and heres the DBPro Code:
Player.X=lua array int("Player->Position->X")
Player.Y=lua array int("Player->Position->Y")
Player.Delay=lua array int("Player->Animation_Delay")
at the moment when those lines are executed the program stops
I had the same problem with another script and then without any further changes it worked suddenly
It's rather strange and Im confused as I dont get errors.
Is this a bug or am I doing something wrong?