Notice: Any messages purporting to come from this site telling you that your password has expired, or that you need to verify your details, confirm your email, resolve issues, making threats, or asking for money, are
spam. We do not email users with any such messages. If you have lost your password you can obtain a new one by using the
password reset link.
Due to spam on this forum, all posts now need moderator approval.
Entire forum
➜ MUSHclient
➜ Lua
➜ How to change package.path?
|
How to change package.path?
|
It is now over 60 days since the last post. This thread is closed.
Refresh page
| Posted by
| Narci
(32 posts) Bio
|
| Date
| Sun 27 Jul 2014 10:52 AM (UTC) |
| Message
| | How to change package.path? | | Top |
|
| Posted by
| Nick Gammon
Australia (23,173 posts) Bio
Forum Administrator |
| Date
| Reply #1 on Sun 27 Jul 2014 08:37 PM (UTC) Amended on Sun 27 Jul 2014 08:38 PM (UTC) by Nick Gammon
|
| Message
| You can't change that, it seems, but you can load from other places easily enough.
For a start you can load extra code yourself with "dofile":
http://www.gammon.com.au/scripts/doc.php?lua=dofile
Or, "loadfile":
http://www.gammon.com.au/scripts/doc.php?lua=loadfile
You can also write your own package loader, as described in the following links:
http://www.playwithlua.com/?p=11
http://sahd.lamafam.org/?p=1631
In case the links go down, the general idea would be to:
local path = "/whatever/my/path/is"
local function loader (modulename)
local filename = path..modulename..".lua"
return assert(loadfile(filename)())
end
package.preload ['foo'] = loader
package.preload ['bar'] = loader
Now if you do this:
require "foo"
require "bar"
Then your own loader is called which uses whatever path you want. |
- Nick Gammon
www.gammon.com.au, www.mushclient.com | | Top |
|
The dates and times for posts above are shown in Universal Co-ordinated Time (UTC).
To show them in your local time you can join the forum, and then set the 'time correction' field in your profile to the number of hours difference between your location and UTC time.
12,469 views.
It is now over 60 days since the last post. This thread is closed.
Refresh page
top