|
Post by japierdole on Jan 26, 2017 14:47:49 GMT
I want to run another script from my script, for example: wait(1) run("next.lua")
How I can do this in ankulua?
|
|
|
Post by AnkuLua on Jan 26, 2017 14:57:09 GMT
localPath = scriptPath() dofile(localPath.."next.lua")
|
|
|
Post by vampiredbr9 on Jan 27, 2017 20:52:28 GMT
localPath = scriptPath() dofile(localPath.."next.lua") Thanks ankulua... I was just looking for this right now. One question... Is there any function in ankulua / Lua to download / update a script from source automatically...? Thanks- would REALLY help
|
|
|
Post by AnkuLua on Jan 28, 2017 0:00:29 GMT
There is currently no network function.
|
|
|
Post by vampiredbr9 on Jan 29, 2017 11:14:24 GMT
There is currently no network function. Ok. Thanks though
|
|