
Forum




Merging
7 replies




Admin/mod comment

Merging more scripts is not worth at all and it would lead to problems even worse.



@

All you need is to tell your server to load both (and possibly other) Lua scripts you have. The simplest way to accomplish that is to put the .lua files into /sys/lua/autorun/ and then those scripts will be executed AUTOMATICALLY. The lazy and simple way turns out to be the best way to do that.

You can do what

1
2
2
dofile("sys/lua/<path to your unlimited building script>.lua") dofile("sys/lua/<path to your admin script>.lua")



