18.05.2023, 08:16
An example. I created user library with name 'test'
This is the library:
Each time it is called it will create log 'test'
To cal it create a resident or any other script and use this code.
This is the library:
Code:
return function()
log('test')
end
Each time it is called it will create log 'test'
To cal it create a resident or any other script and use this code.
Code:
fn = require('user.test')
fn()
------------------------------
Ctrl+F5
Ctrl+F5