• This is a read only backup of the old Emudevs forum. If you want to have anything removed, please message me on Discord: KittyKaev

Two question

Status
Not open for further replies.

luzifix

Respected Member
First question doesn't make sense, can you be more specific?
I customize my Eluna Core with a lot of C++ Scripts, now i need the new Updates like https://github.com/ElunaLuaEngine/Source/commit/89f880d94de81671fc8376195526415ee070dce2
or other Update. How i can load your updates without i del my custom code ?

Dynamic Library load should already be enabled by default. That's what I'm assuming it implies in their README located here: http://www.lua.org/manual/5.2/readme.html
Error:
Code:
LuaSocket Version Test Load
Eluna Nova::Error loading `scripts/socket_ver.lua`.
        error loading module 'socket.core' from file '/usr/local/lib/lua/5.2/socket/core.so':
        dynamic libraries not enabled; check your Lua installation

socket_ver.lua
Code:
print("LuaSocket Version Test Load");
socket = require("socket");
print(socket._VERSION);
 

Tommy

Founder
I customize my Eluna Core with a lot of C++ Scripts, now i need the new Updates like https://github.com/ElunaLuaEngine/Source/commit/89f880d94de81671fc8376195526415ee070dce2
or other Update. How i can load your updates without i del my custom code ?


Error:
Code:
LuaSocket Version Test Load
Eluna Nova::Error loading `scripts/socket_ver.lua`.
        error loading module 'socket.core' from file '/usr/local/lib/lua/5.2/socket/core.so':
        dynamic libraries not enabled; check your Lua installation

socket_ver.lua
Code:
print("LuaSocket Version Test Load");
socket = require("socket");
print(socket._VERSION);

It won't overwrite your custom code. If there is a merge conflict, you will have to manually take out the extra code it conflicted with, nothing to it. Eluna doesn't support Lua Socket so we can't really help you on their project that we know nothing about. We've said that a lot, but you keep making threads about it..
 

luzifix

Respected Member
It won't overwrite your custom code. If there is a merge conflict, you will have to manually take out the extra code it conflicted with, nothing to it. Eluna doesn't support Lua Socket so we can't really help you on their project that we know nothing about. We've said that a lot, but you keep making threads about it..

What for a command i need to Update the source ? i tray it with git Update and git pull, but it not work =(

the error is " dynamic libraries not enabled; check your Lua installation" and i think this is a Eluna Lua error.
 

Foereaper

Founder
What for a command i need to Update the source ? i tray it with git Update and git pull, but it not work =(

the error is " dynamic libraries not enabled; check your Lua installation" and i think this is a Eluna Lua error.

It's not an Eluna error specifically, as it was never intended to use 3rd party modules. So if you want to use 3rd party modules, unfortunately you'll have to figure it out yourself atm, as we're working on other Eluna related issues.
 

Rochet2

Moderator / Eluna Dev
If you have Eluna added as remote. Use git pull Eluna master

Otherwise if you cloned our repo, use git pull
 

luzifix

Respected Member
Error:

root@20011:/wow/core-335/source# git pull
Updating de694b3..89f880d
error: Your local changes to 'src/server/authserver/Main.cpp' would be overwritten by merge. Aborting.
Please, commit your changes or stash them before you can merge.
 

Tommy

Founder
Error:

root@20011:/wow/core-335/source# git pull
Updating de694b3..89f880d
error: Your local changes to 'src/server/authserver/Main.cpp' would be overwritten by merge. Aborting.
Please, commit your changes or stash them before you can merge.

You can stash your commits if you changed something. Like it says, "commit your changes or stash them before you can merge".. All you need to do is "git add --all", "git commit -m "Changes" ", else do the updates manually.
 
Status
Not open for further replies.
Top