[Mod] Internet Relay Chat bridge [irc]

User avatar
kaeza
Moderator
Posts: 2162
Joined: Thu Oct 18, 2012 05:00
GitHub: kaeza
IRC: kaeza diemartin blaaaaargh
In-game: kaeza
Location: Montevideo, Uruguay
Contact:

Re: [Mod] Internet Relay Chat [irc]

by kaeza » Post

It seems to be a bug in the engine possibly affecting other mods as well.

Thank you again for the help in sorting this out. I've updated the first post with that note.
Your signature is not the place for a blog post. Please keep it as concise as possible. Thank you!

Check out my stuff! | Donations greatly appreciated! PayPal

User avatar
kaeza
Moderator
Posts: 2162
Joined: Thu Oct 18, 2012 05:00
GitHub: kaeza
IRC: kaeza diemartin blaaaaargh
In-game: kaeza
Location: Montevideo, Uruguay
Contact:

Re: [Mod] Internet Relay Chat [irc]

by kaeza » Post

I've finally got around to testing this under Windows, and it seems to actually work, but needs some work on the part of the server owner.

First of all, you will need a Minetest build linked against a Lua DLL (not statically linked). If your Minetest build contains a `lua51.dll` file, this should work.

Next, you will need to compile and link LuaSocket against the same DLL used by the engine. I have provided prebuilt LuaSocket binaries here for convenience. To use, follow these steps:
  • Install the mod and submodules as normal.
  • Download the archive linked above, and unpack it directly in the root of the IRC mod directory. You should get a subdirectory named `socket-lib`.
  • Add this code somewhere in `init.lua` after the regular path setup:

    Code: Select all

    local SD = modpath.."/socket-lib"
    ie.package.path = SD.."/?/init.lua;"..SD.."/?.lua;"..ie.package.path
    ie.package.cpath = SD.."/?/init.dll;"..SD.."/?.dll;"..ie.package.cpath
    
    For those that have the tools, there's a patch at `socket-lib/apply-this.patch` that will make the required changes.
For those that want to compile LuaSocket manually, I have provided a simple makefile for MinGW without all the cruft. You will need to put the LuaSocket sources in `mods/irc/luasocket`, and have `bin/lua51.dll`.

I can't guarantee this will work (WFM, YMMV).
Feedback is welcome.
Your signature is not the place for a blog post. Please keep it as concise as possible. Thank you!

Check out my stuff! | Donations greatly appreciated! PayPal

User avatar
DI3HARD139
Member
Posts: 154
Joined: Sat Oct 18, 2014 21:04
GitHub: DI3HARD139
IRC: DI3HARD139
In-game: DI3HARD139 DI3HARD139_

Re: [Mod] Internet Relay Chat [irc]

by DI3HARD139 » Post

Getting this error:

Code: Select all

Loaded texture: C:/Users/Owner/Desktop/minetest-0.4.14/textures/hdx-256-master/menu_overlay.png
Loaded texture: C:/Users/Owner/Desktop/minetest-0.4.14/textures/hdx-256-master/menu_header.png
Loaded texture: C:/Users/Owner/Desktop/minetest-0.4.14/textures/base/pack/blank.png
Loaded texture: C:/Users/Owner/Desktop/minetest-0.4.14/textures/base/pack/server_flags_favorite.png
Loaded texture: C:/Users/Owner/Desktop/minetest-0.4.14/textures/base/pack/server_flags_creative.png
Loaded texture: C:/Users/Owner/Desktop/minetest-0.4.14/textures/base/pack/server_flags_damage.png
Loaded texture: C:/Users/Owner/Desktop/minetest-0.4.14/textures/base/pack/server_flags_pvp.png
2016-08-01 22:58:15: ERROR[Main]: mod "markers" has unsatisfied dependencies:  "areas"
2016-08-01 22:58:15: ERROR[Main]: mod "misc_overrides" has unsatisfied dependencies:  "biome_lib" "dryplants" "ferns" "technic_chests" "youngtrees"
2016-08-01 22:58:15: WARNING[Main]: NodeDefManager: Ignoring CONTENT_IGNORE redefinition
2016-08-01 22:58:15: ERROR[Main]: ModError: Failed to load and run script from C:\Users\Owner\Desktop\minetest-0.4.14\bin\..\mods\irc\init.lua:
2016-08-01 22:58:15: ERROR[Main]: error loading module 'socket.core' from file 'C:\Users\Owner\Desktop\minetest-0.4.14\bin\..\mods\irc/socket-lib/socket\core.dll':
2016-08-01 22:58:15: ERROR[Main]:       %1 is not a valid Win32 application.
2016-08-01 22:58:15: ERROR[Main]: stack traceback:
2016-08-01 22:58:15: ERROR[Main]:       [C]: at 0x006fa700
2016-08-01 22:58:15: ERROR[Main]:       [C]: in function 'require'
2016-08-01 22:58:15: ERROR[Main]:       ...op\minetest-0.4.14\bin\..\mods\irc/socket-lib/socket.lua:12: in main chunk
2016-08-01 22:58:15: ERROR[Main]:       [C]: in function 'require'
2016-08-01 22:58:15: ERROR[Main]:       ...ner\Desktop\minetest-0.4.14\bin\..\mods\irc/irc/init.lua:1: in main chunk
2016-08-01 22:58:15: ERROR[Main]:       [C]: in function 'require'
2016-08-01 22:58:15: ERROR[Main]:       ...s\Owner\Desktop\minetest-0.4.14\bin\..\mods\irc\init.lua:39: in main chunk
2016-08-01 22:58:15: ERROR[Main]: Check debug.txt for details.
Loaded texture: C:/Users/Owner/Desktop/minetest-0.4.14/textures/hdx-256-master/menu_overlay.png
Loaded texture: C:/Users/Owner/Desktop/minetest-0.4.14/textures/hdx-256-master/menu_header.png

User avatar
kaeza
Moderator
Posts: 2162
Joined: Thu Oct 18, 2012 05:00
GitHub: kaeza
IRC: kaeza diemartin blaaaaargh
In-game: kaeza
Location: Montevideo, Uruguay
Contact:

Re: [Mod] Internet Relay Chat [irc]

by kaeza » Post

DI3HARD139 wrote:Getting this error:

Code: Select all

[...]
2016-08-01 22:58:15: ERROR[Main]: error loading module 'socket.core' from file 'C:\Users\Owner\Desktop\minetest-0.4.14\bin\..\mods\irc/socket-lib/socket\core.dll':
2016-08-01 22:58:15: ERROR[Main]:       %1 is not a valid Win32 application.
[...]
Not sure where that comes from.

Windows support is not really in my goals ATM, but try compiling using the Makefile provided above if you know how. If not, well, you're out of luck. Sorry.
Your signature is not the place for a blog post. Please keep it as concise as possible. Thank you!

Check out my stuff! | Donations greatly appreciated! PayPal

User avatar
ManElevation
Member
Posts: 896
Joined: Tue Aug 02, 2016 22:04
GitHub: ManElevation
IRC: ManElevation
In-game: ManElevation
Location: Madrid,Spain

Re: [Mod] Internet Relay Chat [irc]

by ManElevation » Post

do you put this in the mods file?
My Public Mods! Discord: Rottweiler Games#3368

Zesty11
Member
Posts: 34
Joined: Wed Jun 29, 2016 08:24
GitHub: juanmati
IRC: juanmati or Pontevedra1994 or PO1994
In-game: juanmati
Location: Province of Pontevedra, Galicia, Spain

Re: [Mod] Internet Relay Chat [irc]

by Zesty11 » Post

Hola kaeza!
I am juanmati, the player of VE-B
The link is down and I am trying to make a server.
Please put the link up back.
Thanks!
Ahhh, Galicia, the most PRETTYsite of the world.
I don't know why it's still SPAIN but... okay
~:D

User avatar
ManElevation
Member
Posts: 896
Joined: Tue Aug 02, 2016 22:04
GitHub: ManElevation
IRC: ManElevation
In-game: ManElevation
Location: Madrid,Spain

Re: [Mod] Internet Relay Chat [irc]

by ManElevation » Post

Zesty11 wrote:Hola kaeza!
I am juanmati, the player of VE-B
The link is down and I am trying to make a server.
Please put the link up back.
Thanks!
viewtopic.php?id=3905
My Public Mods! Discord: Rottweiler Games#3368

timcu
New member
Posts: 6
Joined: Wed Mar 07, 2018 08:39
GitHub: timcu

Re: [Mod] Internet Relay Chat [irc]

by timcu » Post

I have developed a script to build minetest for win64 with irc mod using msys2/mingw64. It is based on the excellent script by Fixerol [Windows] Building 64-bit minetest with MSYS2/mingw64 so check that page for more details and how to install msys2. As well as the packages suggested by Fixerol my script also requires the package "patch" so install that with pacman.

Code: Select all

pacman -S patch
Make directories for the build

Code: Select all

cd ~
mkdir -p minetest/buildbot minetest/build
cd minetest/buildbot
You need three files in the buildbot directory. The first is ircinitlua.patch to do the patch suggested by kaeza.

Code: Select all

31a32,34
> local SD = modpath.."/socket-lib"
> ie.package.path = SD.."/?/init.lua;"..SD.."/?.lua;"..ie.package.path
> ie.package.cpath = SD.."/?/init.dll;"..SD.."/?.dll;"..ie.package.cpath
The second file is toolchain_mingw64.cmake and contains the modification suggested by Fixerol.

Code: Select all

# name of the target operating system
SET(CMAKE_SYSTEM_NAME Windows)

# which compilers to use for C and C++
SET(CMAKE_C_COMPILER x86_64-w64-mingw32-gcc)
SET(CMAKE_CXX_COMPILER x86_64-w64-mingw32-g++)
SET(CMAKE_RC_COMPILER windres)

# here is the target environment located
SET(CMAKE_FIND_ROOT_PATH /mingw64/x86_64-w64-mingw32)

# adjust the default behaviour of the FIND_XXX() commands:
# search headers and libraries in the target environment, search
# programs in the host environment
set(CMAKE_FIND_ROOT_PATH_MODE_PROGRAM NEVER)
set(CMAKE_FIND_ROOT_PATH_MODE_LIBRARY ONLY)
set(CMAKE_FIND_ROOT_PATH_MODE_INCLUDE ONLY)
The third file is buildwin64withirc.sh based on Fixerol's script. The script also builds luajit to lua51.dll so minetest and luasocket can link to it. Luasocket is also built to socket*.dll and mime*.dll in the bin directory. The irc mod is automatically included and Luasocket is installed in socket-lib folder in irc mod.

Code: Select all

#!/bin/bash

set -e

{
echo -n "Start of compilation: "; date -R

dir="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
if [ $# -ne 1 ]; then
   echo "Usage: $0 <build directory>"
   exit 1
fi
builddir=$1
mkdir -p $builddir
builddir="$( cd "$builddir" && pwd )"
packagedir=$builddir/packages
libdir=$builddir/libs

toolchain_file=$dir/toolchain_mingw64.cmake
irc_patch=$dir/ircinitlua.patch
irrlicht_version=1.8.4
ogg_version=1.3.2
vorbis_version=1.3.5
curl_version=7.54.0
gettext_version=0.19.8.1
freetype_version=2.8
sqlite3_version=3.19.2
luajit_version=2.1.0-beta3
leveldb_version=1.19
zlib_version=1.2.11

mkdir -p $packagedir
mkdir -p $libdir

cd $builddir

# Get stuff
[ -e $packagedir/irrlicht-$irrlicht_version.zip ] || wget http://minetest.kitsunemimi.pw/irrlicht-$irrlicht_version-win64.zip \
   -c -O $packagedir/irrlicht-$irrlicht_version.zip
[ -e $packagedir/zlib-$zlib_version.zip ] || wget http://minetest.kitsunemimi.pw/zlib-$zlib_version-win64.zip \
   -c -O $packagedir/zlib-$zlib_version.zip
[ -e $packagedir/libogg-$ogg_version.zip ] || wget http://minetest.kitsunemimi.pw/libogg-$ogg_version-win64.zip \
   -c -O $packagedir/libogg-$ogg_version.zip
[ -e $packagedir/libvorbis-$vorbis_version.zip ] || wget http://minetest.kitsunemimi.pw/libvorbis-$vorbis_version-win64.zip \
   -c -O $packagedir/libvorbis-$vorbis_version.zip
[ -e $packagedir/curl-$curl_version.zip ] || wget http://minetest.kitsunemimi.pw/curl-$curl_version-win64.zip \
   -c -O $packagedir/curl-$curl_version.zip
[ -e $packagedir/gettext-$gettext_version.zip ] || wget http://minetest.kitsunemimi.pw/gettext-$gettext_version-win64.zip \
   -c -O $packagedir/gettext-$gettext_version.zip
[ -e $packagedir/freetype2-$freetype_version.zip ] || wget http://minetest.kitsunemimi.pw/freetype2-$freetype_version-win64.zip \
   -c -O $packagedir/freetype2-$freetype_version.zip
[ -e $packagedir/sqlite3-$sqlite3_version.zip ] || wget http://minetest.kitsunemimi.pw/sqlite3-$sqlite3_version-win64.zip \
   -c -O $packagedir/sqlite3-$sqlite3_version.zip
#[ -e $packagedir/luajit-$luajit_version.zip ] || wget http://minetest.kitsunemimi.pw/luajit-$luajit_version-win64.zip \
#   -c -O $packagedir/luajit-$luajit_version.zip
[ -e $packagedir/luajit-$luajit_version.zip ] || wget http://luajit.org/download/LuaJIT-$luajit_version.zip \
   -c -O $packagedir/luajit-$luajit_version.zip
[ -e $packagedir/libleveldb-$leveldb_version.zip ] || wget http://minetest.kitsunemimi.pw/libleveldb-$leveldb_version-win64.zip \
   -c -O $packagedir/libleveldb-$leveldb_version.zip
[ -e $packagedir/openal_stripped.zip ] || wget http://minetest.kitsunemimi.pw/openal_stripped64.zip \
   -c -O $packagedir/openal_stripped.zip


# Extract stuff
cd $libdir
[ -d irrlicht ] || unzip -o $packagedir/irrlicht-$irrlicht_version.zip -d irrlicht
[ -d zlib ] || unzip -o $packagedir/zlib-$zlib_version.zip -d zlib
[ -d libogg ] || unzip -o $packagedir/libogg-$ogg_version.zip -d libogg
[ -d libvorbis ] || unzip -o $packagedir/libvorbis-$vorbis_version.zip -d libvorbis
[ -d libcurl ] || unzip -o $packagedir/curl-$curl_version.zip -d libcurl
[ -d gettext ] || unzip -o $packagedir/gettext-$gettext_version.zip -d gettext
[ -d freetype ] || unzip -o $packagedir/freetype2-$freetype_version.zip -d freetype
[ -d sqlite3 ] || unzip -o $packagedir/sqlite3-$sqlite3_version.zip -d sqlite3
[ -d openal_stripped ] || unzip -o $packagedir/openal_stripped.zip
[ -d luajit ] || unzip -o $packagedir/luajit-$luajit_version.zip -d luajit-tmp
[ -d leveldb ] || unzip -o $packagedir/libleveldb-$leveldb_version.zip -d leveldb
[ -d luasocket ] || git clone https://github.com/diegonehab/luasocket.git
[ -d irc ] || git clone --recursive https://github.com/minetest-mods/irc.git

# Build luajit
[ -d luajit-tmp/LuaJIT-$luajit_version ] && mv luajit-tmp/LuaJIT-$luajit_version ./luajit && rmdir luajit-tmp
cd luajit
mingw32-make amalg
cd ..

# Build luasocket
cd luasocket
export LUAV=5.1
export LUAINC_mingw=$libdir/luajit/src
export LUALIB_mingw=$libdir/luajit/src/lua51.dll
export CDIR_mingw=lua/$LUAV
export LDIR_mingw=lua/$LUAV/lua
mingw32-make mingw
mkdir -p socket-lib/mime socket-lib/socket
cd socket-lib
cp ../src/*.lua socket/
cp ../src/mime*.dll mime/core.dll
cp ../src/socket*.dll socket/core.dll
mv socket/ltn12.lua .
mv socket/socket.lua .
mv socket/mime.lua .
cd ../..

# Get minetest
cd $builddir
if [ ! "x$EXISTING_MINETEST_DIR" = "x" ]; then
   ln -s $EXISTING_MINETEST_DIR minetest
else
   [ -d minetest ] && (cd minetest && git pull) || (git clone https://github.com/minetest/minetest)
fi
cd minetest
git_hash=$(git rev-parse --short HEAD)

# Get minetest_game
cd games
if [ "x$NO_MINETEST_GAME" = "x" ]; then
   [ -d minetest_game ] && (cd minetest_game && git pull) || (git clone https://github.com/minetest/minetest_game)
fi
cd ../..

# Build the thing
cd minetest
[ -d _build ] && rm -Rf _build/
mkdir _build
cd _build
mv /usr/bin/sh.exe /usr/bin/sh.exe~

cmake .. \
   -G"MinGW Makefiles" \
   -DCMAKE_AR=/mingw64/x86_64-w64-mingw32/bin/ar \
   -DCMAKE_TOOLCHAIN_FILE=$toolchain_file \
   -DCMAKE_INSTALL_PREFIX=/tmp \
   -DVERSION_EXTRA=$git_hash-irc \
   -DBUILD_CLIENT=1 -DBUILD_SERVER=0 \
   \
   -DENABLE_SOUND=1 \
   -DENABLE_CURL=1 \
   -DENABLE_GETTEXT=1 \
   -DENABLE_FREETYPE=1 \
   -DENABLE_LEVELDB=1 \
   \
   -DIRRLICHT_INCLUDE_DIR=$libdir/irrlicht/include \
   -DIRRLICHT_LIBRARY=$libdir/irrlicht/lib/Win64-gcc/libIrrlicht.dll.a \
   -DIRRLICHT_DLL=$libdir/irrlicht/bin/Win64-gcc/Irrlicht.dll \
   \
   -DZLIB_INCLUDE_DIR=$libdir/zlib/include \
   -DZLIB_LIBRARIES=$libdir/zlib/lib/libz.dll.a \
   -DZLIB_DLL=$libdir/zlib/bin/zlib1.dll \
   \
   -DLUA_INCLUDE_DIR=$libdir/luajit/src \
   -DLUA_LIBRARY=$libdir/luajit/src/lua51.dll \
   -DLUA_DLL=$libdir/luajit/src/lua51.dll \
   \
   -DOGG_INCLUDE_DIR=$libdir/libogg/include \
   -DOGG_LIBRARY=$libdir/libogg/lib/libogg.dll.a \
   -DOGG_DLL=$libdir/libogg/bin/libogg-0.dll \
   \
   -DVORBIS_INCLUDE_DIR=$libdir/libvorbis/include \
   -DVORBIS_LIBRARY=$libdir/libvorbis/lib/libvorbis.dll.a \
   -DVORBIS_DLL=$libdir/libvorbis/bin/libvorbis-0.dll \
   -DVORBISFILE_LIBRARY=$libdir/libvorbis/lib/libvorbisfile.dll.a \
   -DVORBISFILE_DLL=$libdir/libvorbis/bin/libvorbisfile-3.dll \
   \
   -DOPENAL_INCLUDE_DIR=$libdir/openal_stripped/include/AL \
   -DOPENAL_LIBRARY=$libdir/openal_stripped/lib/libOpenAL32.dll.a \
   -DOPENAL_DLL=$libdir/openal_stripped/bin/OpenAL32.dll \
   \
   -DCURL_DLL=$libdir/libcurl/bin/libcurl-4.dll \
   -DCURL_INCLUDE_DIR=$libdir/libcurl/include \
   -DCURL_LIBRARY=$libdir/libcurl/lib/libcurl.dll.a \
   \
   -DGETTEXT_MSGFMT=`which msgfmt` \
   -DGETTEXT_DLL=$libdir/gettext/bin/libintl-8.dll \
   -DGETTEXT_ICONV_DLL=$libdir/gettext/bin/libiconv-2.dll \
   -DGETTEXT_INCLUDE_DIR=$libdir/gettext/include \
   -DGETTEXT_LIBRARY=$libdir/gettext/lib/libintl.dll.a \
   \
   -DFREETYPE_INCLUDE_DIR_freetype2=$libdir/freetype/include/freetype2 \
   -DFREETYPE_INCLUDE_DIR_ft2build=$libdir/freetype/include/freetype2 \
   -DFREETYPE_LIBRARY=$libdir/freetype/lib/libfreetype.dll.a \
   -DFREETYPE_DLL=$libdir/freetype/bin/libfreetype-6.dll \
   \
   -DSQLITE3_INCLUDE_DIR=$libdir/sqlite3/include \
   -DSQLITE3_LIBRARY=$libdir/sqlite3/lib/libsqlite3.dll.a \
   -DSQLITE3_DLL=$libdir/sqlite3/bin/libsqlite3-0.dll \
   \
   -DLEVELDB_INCLUDE_DIR=$libdir/leveldb/include \
   -DLEVELDB_LIBRARY=$libdir/leveldb/lib/libleveldb.dll.a \
   -DLEVELDB_DLL=$libdir/leveldb/bin/libleveldb.dll

mv /usr/bin/sh.exe~ /usr/bin/sh.exe
mingw32-make package -j$(nproc)

cd _CPack_Packages/win64/ZIP/
cp /mingw64/bin/libgcc_s_seh-1.dll minetest-*/bin
cp /mingw64/bin/libstdc++-6.dll minetest-*/bin
cp /mingw64/bin/libwinpthread-1.dll minetest-*/bin
cp $libdir/luasocket/src/*.dll minetest-*/bin/
cp -R $libdir/irc minetest-*/mods/
patch minetest-*/mods/irc/init.lua $dir/ircinitlua.patch
cp -R $libdir/luasocket/socket-lib minetest-*/mods/irc/

zip -ur minetest-*.zip minetest-*
cp minetest-*.zip ../../../

echo -n "End of compilation: "; date -R

} |& tee build.log

# EOF
Create these three files with your favourite text editor and save in the buildbot folder. Run the script.

Code: Select all

./buildwin64withirc.sh ../build
When the script is finished, minetest will be packaged in a file with a name like ~/minetest/build/minetest/_build/minetest-0.5.006cfd699b-irc-win64.zip

I hope this saves someone as much time as it took me to work it out!

EDIT: Added -DLUA_LIBRARY to cmake which somehow missed my original post. I have added to github to make it easier to create files.

https://github.com/timcu/buildbot_minetest_with_irc

User avatar
kaeza
Moderator
Posts: 2162
Joined: Thu Oct 18, 2012 05:00
GitHub: kaeza
IRC: kaeza diemartin blaaaaargh
In-game: kaeza
Location: Montevideo, Uruguay
Contact:

Re: [Mod] Internet Relay Chat [irc]

by kaeza » Post

Thanks! I can't test it, but added a link in the first post.
Your signature is not the place for a blog post. Please keep it as concise as possible. Thank you!

Check out my stuff! | Donations greatly appreciated! PayPal

User avatar
ExeterDad
Member
Posts: 1717
Joined: Sun Jun 01, 2014 20:00
In-game: ExeterDad
Location: New Hampshire U.S.A

Re: [Mod] Internet Relay Chat [irc]

by ExeterDad » Post

timcu wrote:I have developed a script
<--- Snip --->
It's great you shared and documented this.
Thank you for your efforts :)

timcu
New member
Posts: 6
Joined: Wed Mar 07, 2018 08:39
GitHub: timcu

Re: [Mod] Internet Relay Chat [irc]

by timcu » Post

You're welcome. Thanks kaeza for writing such a useful mod. I am teaching kids to program in python. Using a python module, and the minetest mods irc and irc_commands, the kids write python programs which build structures in a minetest world. The kids log in to minetest to see the structure they have built, and I place signs telling them what their next task is. Lot's of fun! That is why I needed irc mod to work on Mac, Linux and Windows.

User avatar
ManElevation
Member
Posts: 896
Joined: Tue Aug 02, 2016 22:04
GitHub: ManElevation
IRC: ManElevation
In-game: ManElevation
Location: Madrid,Spain

Re: [Mod] Internet Relay Chat [irc]

by ManElevation » Post

heyaii! why do i get a socket.core not found error?
no field packagepreload socket.core
My Public Mods! Discord: Rottweiler Games#3368

User avatar
kaeza
Moderator
Posts: 2162
Joined: Thu Oct 18, 2012 05:00
GitHub: kaeza
IRC: kaeza diemartin blaaaaargh
In-game: kaeza
Location: Montevideo, Uruguay
Contact:

Re: [Mod] Internet Relay Chat [irc]

by kaeza » Post

ManElevation wrote:heyaii! why do i get a socket.core not found error?
no field packagepreload socket.core
Did you install the required packages?
See also https://github.com/minetest-mods/irc/issues/29
Your signature is not the place for a blog post. Please keep it as concise as possible. Thank you!

Check out my stuff! | Donations greatly appreciated! PayPal

User avatar
bosapara
Member
Posts: 637
Joined: Fri Apr 07, 2017 08:49

Re: [Mod] Internet Relay Chat [irc]

by bosapara » Post

how to install it?

Im using official client 4.17.1, added irc folder to mods, but have an error:
What i did incorrect?

Code: Select all

2018-08-06 00:15:06: ERROR[Main]: ModError: Failed to load and run script from F:\sky\newminetest-0.4.17.1\bin\..\mods\irc\init.lua:
2018-08-06 00:15:06: ERROR[Main]: F:\sky\newminetest-0.4.17.1\bin\..\mods\irc\init.lua:43: module 'irc' not found:
2018-08-06 00:15:06: ERROR[Main]: 	no field package.preload['irc']
2018-08-06 00:15:06: ERROR[Main]: 	no file 'F:\sky\newminetest-0.4.17.1\bin\..\mods\irc/irc/init.lua'
2018-08-06 00:15:06: ERROR[Main]: 	no file 'F:\sky\newminetest-0.4.17.1\bin\..\mods\irc/irc.lua'
2018-08-06 00:15:06: ERROR[Main]: 	no file '.\irc.lua'
2018-08-06 00:15:06: ERROR[Main]: 	no file 'F:\sky\newminetest-0.4.17.1\bin\lua\irc.lua'
2018-08-06 00:15:06: ERROR[Main]: 	no file 'F:\sky\newminetest-0.4.17.1\bin\lua\irc\init.lua'
2018-08-06 00:15:06: ERROR[Main]: 	no file '.\irc.dll'
2018-08-06 00:15:06: ERROR[Main]: 	no file 'F:\sky\newminetest-0.4.17.1\bin\irc.dll'
2018-08-06 00:15:06: ERROR[Main]: 	no file 'F:\sky\newminetest-0.4.17.1\bin\loadall.dll'
2018-08-06 00:15:06: ERROR[Main]: stack traceback:
2018-08-06 00:15:06: ERROR[Main]: 	[C]: in function 'require'
2018-08-06 00:15:06: ERROR[Main]: 	F:\sky\newminetest-0.4.17.1\bin\..\mods\irc\init.lua:43: in main chunk

User avatar
rubenwardy
Moderator
Posts: 6969
Joined: Tue Jun 12, 2012 18:11
GitHub: rubenwardy
IRC: rubenwardy
In-game: rubenwardy
Location: Bristol, United Kingdom
Contact:

Re: [Mod] Internet Relay Chat [irc]

by rubenwardy » Post

You need to recursively clone the repo
Renewed Tab (my browser add-on) | Donate | Mods | Minetest Modding Book

Hello profile reader

User avatar
bosapara
Member
Posts: 637
Joined: Fri Apr 07, 2017 08:49

Re: [Mod] Internet Relay Chat [irc]

by bosapara » Post

rubenwardy wrote:You need to recursively clone the repo
I don't understand what it mean. Any guides how to install this mod for noobs?

User avatar
ANAND
Member
Posts: 335
Joined: Sun Jan 28, 2018 12:54
GitHub: magnetar47
IRC: MAGNETAR ANAND
In-game: ANAND and all names with Tomato
Location: India
Contact:

Re: [Mod] Internet Relay Chat [irc]

by ANAND » Post

There seems to be two params passed to func in irc.register_bot_command, of which the first one ('_') is unused. Does it hold the nick of the IRC caller?
My Mods

cdb_NXKPOcRlgUGdMyf8uLoUQvnMGIfuaHmp

User avatar
Miniontoby
Member
Posts: 616
Joined: Fri Mar 01, 2019 19:25
GitHub: Miniontoby
IRC: Miniontoby
In-game: Miniontoby
Location: The Netherlands

Re: [Mod] Internet Relay Chat [irc]

by Miniontoby » Post

I get an error that there is no socket directory (with socket.lua, init.lua, etc.), but I have done all instructions.

What am I doing wrong
Working on mtctl ---- Check my mod "Doorbell" -- Stay safe

User avatar
Miniontoby
Member
Posts: 616
Joined: Fri Mar 01, 2019 19:25
GitHub: Miniontoby
IRC: Miniontoby
In-game: Miniontoby
Location: The Netherlands

Re: [Mod] Internet Relay Chat [irc]

by Miniontoby » Post

[DELETED]
Last edited by Miniontoby on Wed Dec 23, 2020 14:57, edited 1 time in total.
Working on mtctl ---- Check my mod "Doorbell" -- Stay safe

User avatar
Miniontoby
Member
Posts: 616
Joined: Fri Mar 01, 2019 19:25
GitHub: Miniontoby
IRC: Miniontoby
In-game: Miniontoby
Location: The Netherlands

Re: [Mod] Internet Relay Chat [irc]

by Miniontoby » Post

if i say at irc:

Code: Select all

Myservernick: help
nothing shows up but if i pm him then it works. Is there an way how to fix this??????
Working on mtctl ---- Check my mod "Doorbell" -- Stay safe

User avatar
amelaye
Member
Posts: 32
Joined: Sun Jun 14, 2020 10:47
GitHub: amelaye
Contact:

Re: [Mod] Internet Relay Chat [irc]

by amelaye » Post

Hi,
Impossible to run minetest with IRC mod.
I made all the requirements, installed lua packages, however I got this :

Code: Select all

    ModError: Failed to load and run script from /home/amelaye/.minetest/mods/irc/init.lua:
    /home/amelaye/.minetest/mods/irc/init.lua:48: module 'irc' not found:
    no field package.preload['irc']
    no file '/mods/irc/irc/init.lua'
    no file '/mods/irc/irc.lua'
    no file './irc.lua'
    no file '/usr/share/luajit-2.1.0-beta3/irc.lua'
    no file '/usr/local/share/lua/5.1/irc.lua'
    no file '/usr/local/share/lua/5.1/irc/init.lua'
    no file '/usr/share/lua/5.1/irc.lua'
    no file '/usr/share/lua/5.1/irc/init.lua'
    no file '/usr/share/lua/5.1/irc.lua'
    no file '/usr/share/lua/5.1/irc/init.lua'
    no file '/usr/lib/x86_64-linux-gnu/lua/5.1/irc.so'
    no file './irc.so'
    no file '/usr/local/lib/lua/5.1/irc.so'
    no file '/usr/lib/x86_64-linux-gnu/lua/5.1/irc.so'
    no file '/usr/local/lib/lua/5.1/loadall.so'
    no file '/usr/lib/lua/5.1/irc.so'
    no file '/usr/lib64/lua/5.1/irc.so'
    stack traceback:
    [C]: in function 'require'
    /home/amelaye/.minetest/mods/irc/init.lua:48: in main chunk
    Voir debug.txt pour plus d'informations.
My server : 188.165.239.63:30000 - My website : http://minetest.amelieonline.net

User avatar
Miniontoby
Member
Posts: 616
Joined: Fri Mar 01, 2019 19:25
GitHub: Miniontoby
IRC: Miniontoby
In-game: Miniontoby
Location: The Netherlands

Re: [Mod] Internet Relay Chat [irc]

by Miniontoby » Post

amelaye wrote:
Wed Dec 30, 2020 10:49
Hi,
Impossible to run minetest with IRC mod.
I made all the requirements, installed lua packages, however I got this :

Code: Select all

    ModError: Failed to load and run script from /home/amelaye/.minetest/mods/irc/init.lua:
    /home/amelaye/.minetest/mods/irc/init.lua:48: module 'irc' not found:
    no field package.preload['irc']
    no file '/mods/irc/irc/init.lua'
    no file '/mods/irc/irc.lua'
    no file './irc.lua'
    no file '/usr/share/luajit-2.1.0-beta3/irc.lua'
    no file '/usr/local/share/lua/5.1/irc.lua'
    no file '/usr/local/share/lua/5.1/irc/init.lua'
    no file '/usr/share/lua/5.1/irc.lua'
    no file '/usr/share/lua/5.1/irc/init.lua'
    no file '/usr/share/lua/5.1/irc.lua'
    no file '/usr/share/lua/5.1/irc/init.lua'
    no file '/usr/lib/x86_64-linux-gnu/lua/5.1/irc.so'
    no file './irc.so'
    no file '/usr/local/lib/lua/5.1/irc.so'
    no file '/usr/lib/x86_64-linux-gnu/lua/5.1/irc.so'
    no file '/usr/local/lib/lua/5.1/loadall.so'
    no file '/usr/lib/lua/5.1/irc.so'
    no file '/usr/lib64/lua/5.1/irc.so'
    stack traceback:
    [C]: in function 'require'
    /home/amelaye/.minetest/mods/irc/init.lua:48: in main chunk
    Voir debug.txt pour plus d'informations.
You need to have luasocket and you need to recursively clone the whole git source, so with luaircsocket folder called irc.

If you need help i want to help you. Please tell me channel on irc and which irc you want to talk on OR come to my irc
Working on mtctl ---- Check my mod "Doorbell" -- Stay safe

User avatar
amelaye
Member
Posts: 32
Joined: Sun Jun 14, 2020 10:47
GitHub: amelaye
Contact:

Re: [Mod] Internet Relay Chat [irc]

by amelaye » Post

Thanks, but I don't understand, I have luasocket and i recursively cloned my git source ...
Can you please tell me where to find you on IRC please .
My server : 188.165.239.63:30000 - My website : http://minetest.amelieonline.net

User avatar
Miniontoby
Member
Posts: 616
Joined: Fri Mar 01, 2019 19:25
GitHub: Miniontoby
IRC: Miniontoby
In-game: Miniontoby
Location: The Netherlands

Re: [Mod] Internet Relay Chat [irc]

by Miniontoby » Post

amelaye wrote:
Tue Jan 05, 2021 20:26
Thanks, but I don't understand, I have luasocket and i recursively cloned my git source ...
Can you please tell me where to find you on IRC please .
you can use freenode, #ircnow or #minetest or #miniontoby
Working on mtctl ---- Check my mod "Doorbell" -- Stay safe

atorian37
Member
Posts: 17
Joined: Mon Mar 06, 2017 13:26
IRC: atorian37

Re: [Mod] Internet Relay Chat [irc]

by atorian37 » Post

Hi

I have the following error with MT 5.4.0-dev on Ubuntu 18.04 with Luarocks and Luasocket installed.

ERROR[Main]: error loading module 'socket.core' from file '/usr/local/lib/lua/5.1/socket/core.so':
ERROR[Main]: /usr/local/lib/lua/5.1/socket/core.so: undefined symbol: lua_gettop

On the same machine, MT 0.4.17.1 runs fine with irc mod.
I did git clone --recursive from the repo today...

what did I miss?

Post Reply

Who is online

Users browsing this forum: No registered users and 12 guests