Time Nick Message 00:07 Fixer what's new? 00:07 Fixer RealBadAngel, any texture tear bug progress? 00:07 * thePalindrome is going to throw something together to allow custom key bindings for mods 00:34 rubenwardy http://minetest.rubenwardy.com/stats/ctf_rankings.html 00:38 Fixer niice 00:41 rubenwardy CTF changelog: https://forum.minetest.net/viewtopic.php?p=201169#p201169 00:44 Fixer gn 00:44 Fixer nice changelog 02:01 rubenwardy wooow 02:01 rubenwardy on XFCE you can do alt+f11 to fullscreen a window 02:01 rubenwardy eg: Minetest 02:02 sofar yup 02:02 sofar that's been there since forever 02:05 sofar how do I make a new itemstack object in lua? I need to return a split an itemstack in a method into two 02:06 rubenwardy http://rubenwardy.com/minetest_modding_book/chapters/itemstacks.html 02:06 sofar ok, ItemStack() 02:06 sofar I'm still not current on lua syntax 02:06 rubenwardy tl;dr: ItemStack("mod:item") 02:11 LazyJ Now if XFCE would just fix Thunar so it didn't crash when moving files. :/ 02:13 sofar it doesn't for me 02:13 thePalindrome Neither for me 02:13 sofar and besides, Benny left the team a long time ago 02:14 sofar even Olivier isn't doing much more in the last few years 02:16 sofar dang, I don't think I can use handle_drops() from an on_place() 02:20 LazyJ Looks like this has been a bug in Thunar since, at least, this summer: 02:20 LazyJ https://lists.ubuntu.com/archives/xubuntu-users/2015-September/008738.html 02:22 LazyJ Minor annoyance, it will get fixed (soon, hopefully). 02:22 LazyJ Rant over. Carry on. 02:54 thePalindrome That bug may have been fixed, and is just waiting to be included in apt 07:42 XeonSquared o/ 07:45 Hijiri \o 07:45 XeonSquared Where would I find the default:* blocks defined? 07:45 VanessaE minetest_game/mods/default 07:47 XeonSquared I installed with the Arch Linux package, found it at /usr/share/minetest/games/minetest/mods/default 07:47 XeonSquared thanks 07:50 XeonSquared So the tiles table, when registering a node, how do I have a different texture for the sides to the top and bottom? 07:51 XeonSquared is it {top, bottom, sides}? 07:54 asl97 XeonSquared: it's {up (+Y), down (-Y), right (+X), left (-X), back (+Z), front (-Z)} 08:02 XeonSquared Okay, :D thanks 08:06 XeonSquared tiles = {"casing.png","casing.png","t21.png","t21.png","t21.png","t21.png"}, 08:06 XeonSquared Will this use casing.png for the top and bottom but t21.png for the rest? 08:10 asl97 XeonSquared: it should, you can just try it out to find out instead of waiting for someone to reply 08:10 XeonSquared mmm, probably the best idea 08:32 sofar XeonSquared: you can ignore the 4th-6th fields and leave them out, it will assume they're all the same 08:32 XeonSquared oh, okay, cool. 08:33 sofar never wait for an answer, always try to crash the game first 08:33 XeonSquared well I got the mod to load 08:33 XeonSquared but it won't load my texture 08:33 XeonSquared It should be with init.lua, right? 08:34 XeonSquared or should I have a textures folder? 08:35 sofar look in other mods 08:35 asl97 sofar: is it officially documented? if not, they could change it. (also, i can't seem to find where the tile is handle in the code) 08:35 sofar asl97: I'm sure I've read it somewhere... 08:35 XeonSquared it lives! :D 08:35 XeonSquared http://i.imgur.com/jhTOXuF.png 08:36 asl97 sofar: i can't find it in the lua_api, dev wiki nor rubenwardy modding book 08:37 XeonSquared it did need a textures folder 08:37 XeonSquared but beyond that, :D 08:38 XeonSquared Right, now to make it do stuff 08:38 asl97 XeonSquared: those shaders bumpmapping look great on that texture 08:38 XeonSquared oh yes indeed 08:41 asl97 oh yea, the tiles should be handle in the draw type 08:43 XeonSquared first thing first, let's see if I can animate it 08:43 XeonSquared if I can animate it, I'll have a working timer I can abuse to actually make it do stuff 08:44 sofar look at the furnace, it has an animated front texture 09:20 XeonSquared okay so you swap nodes to the one with the right texture 09:21 XeonSquared so I'll need 18 different items 09:21 XeonSquared bah 09:21 VanessaE if timing isn't critical, use an animated texture. 09:21 XeonSquared uh? 09:21 asl97 sofar: your advice led XeonSquared to the wrong answer 09:21 VanessaE (look at the furnace again) 09:22 VanessaE oops, missed 09:22 VanessaE ignore what I said :P 09:22 VanessaE XeonSquared: so, what was "make it do stuff" entail? 09:23 XeonSquared animation = { 09:23 XeonSquared I managed to miss this, go me 09:23 XeonSquared VanessaE, any chance you've played TIS-100? 09:23 VanessaE nope. I don't have Steam here. 09:23 XeonSquared well basically it's a game in which you write assembly for a fictional parallel computer 09:24 XeonSquared it uses a 2D grid of nodes and stuff 09:24 VanessaE yeah, though that looked a bit like assembly. 09:25 VanessaE (roughly Motorola, by the look of it) 09:25 CWz hey VanessaE 09:25 VanessaE hey 09:26 VanessaE so where do the assumed 18 items come from? 09:26 XeonSquared I'm borrowing textures from a Minecraft mod that does a similar thing to what I'm trying to do 09:26 XeonSquared and I split it into 18 separate PNGs 09:26 VanessaE ok 09:27 XeonSquared but using vertical animation lets me use the original PNG 09:27 VanessaE well bear in mind that those are simply animated textures 09:28 VanessaE (you'll still need to swap nodes to stop the animation, for example) 09:28 asl97 XeonSquared: do they permit using of their texture? if not, it would be copyright infringement 09:28 VanessaE asl97: only if he distributes the images. 09:29 XeonSquared asl97, https://github.com/MightyPirates/TIS-3D 09:29 asl97 ^ true 09:29 XeonSquared "This mod is licensed under the MIT license. All assets are public domain" 09:29 XeonSquared I tend to avoid using closed-source mods, let alone borrowing textures from them 09:32 XeonSquared Animation works! :D 09:36 XeonSquared Can I set the speed of the animation? 09:36 VanessaE change the time setting. 09:36 VanessaE that's how long each loop runs, so smaller is faster. 09:37 XeonSquared time in the animation table? 09:37 VanessaE yeah. 09:37 VanessaE make sure the number of frames divides evenly into the time you give, or the last frame in the loop will end up displaying too little 09:37 asl97 it's call length https://github.com/minetest/minetest/blob/master/doc/lua_api.txt#L3359 09:37 VanessaE that's the one. 09:38 XeonSquared heheheheh 09:38 XeonSquared set it to 0.18 09:39 XeonSquared now it looks like it's wobbling 09:40 VanessaE try something a bit larger :) 09:40 VanessaE usually you want it to be a few seconds (so try say 3.6) 09:41 asl97 i can't find where the tile is handle when the 4th-6th fields left out :| 09:41 asl97 where in the code* 09:42 rubenwardy VanessaE, ShadowNinja: what happened to inchra.net? 09:42 VanessaE what happened? 09:43 VanessaE seems okay to me? 09:43 rubenwardy can't connect 09:43 VanessaE oh the IRC servers? no idea, wasn't paying attention 09:43 VanessaE can you reach digitalaudioconcepts.com ("osiris") directly? 09:45 rubenwardy * Looking up osiris.digitalaudioconcepts.com 09:45 rubenwardy * Unknown host. Maybe you misspelled it? 09:45 VanessaE no, just digitalaudioconcepts.com 09:46 rubenwardy I can get your website, yes 09:46 rubenwardy the error message is: 09:46 rubenwardy * Looking up irc.inchra.net 09:46 rubenwardy * Unknown host. Maybe you misspelled it? 09:47 Amaz I was able to connect to irc.inchra.net fine a couple of minutes ago. 09:47 RBA_ http://verizoncraft.github.io/ 09:47 rubenwardy I also can't access http://www.inchra.net/ 09:47 RBA_ i just read about that mod for mc 09:48 rubenwardy github appears to be down for me as well 09:48 asl97 rubenwardy: i think your dns is broken 09:48 rubenwardy :') 09:48 rubenwardy * :'( 09:48 rubenwardy I'll try accessing by IP 09:48 rubenwardy and hope it isn't some sort of virtual domain 09:48 Amaz The ip it gave me when I joined was 198.27.68.162, if that helps :) 09:49 rubenwardy I can ping 198.27.68.162 but not irc.inchra.net 09:50 asl97 is that 'Unknown host' output from nslookup? 09:50 rubenwardy no, from irc 09:50 rubenwardy I can connect to that IP 09:50 XeonSquared http://i.imgur.com/THFadVd.png \:D/ 09:50 asl97 try using nslookup, if that error then it's your dns 09:52 rubenwardy ;; connection timed out; no servers could be reached 09:52 rubenwardy most useful report ever: 09:52 rubenwardy 07/12 : Report: (mods online: none) 09:53 rubenwardy rubenwardy@rubenPC:~$ nslookup imgur.com 09:53 rubenwardy ;; connection timed out; no servers could be reached 09:53 rubenwardy waaaa 09:53 asl97 you can change your dns temporary until your current dns fix whatever broke 09:54 rubenwardy Can I do it from my computer? I'm in a university network. 09:54 rubenwardy appears so 09:54 VanessaE I use 8.8.8.8, 8.8.4.4, 4.2.2.5, 4.2.2.4 09:54 VanessaE (in that order) 09:54 asl97 ugh, google dns 09:54 VanessaE *shrug* I don't care 09:55 VanessaE it works, it's fast, and they can't do anything my ISP can't. 09:55 VanessaE can* 09:55 asl97 i use opennic dns 09:55 VanessaE er, grammar fail. 09:59 rubenwardy Now all pages are timing out - I doubt you can see this. Although IRC shows no lag. 09:59 VanessaE we see you, rubenwardy 09:59 rubenwardy wow 09:59 rubenwardy IRC probably connects to the IP after the initial look up 10:00 VanessaE *shrug8 10:00 rubenwardy I reckon the university is blocking 8.8.8.8 somehow 10:00 VanessaE so try one of the others. 10:01 VanessaE the 4.2.2.(4, 5) ones go to some verizon root server. 10:01 rubenwardy wait - I can access FB now but not google 10:02 VanessaE meanwhile, I think I'll go try to access my bed. :P 10:02 VanessaE night 10:03 rubenwardy night 10:03 asl97 you can add the dns server to use in a nslookup by adding it after the domain, eg: nslookup google.com 8.8.8.8 10:09 rubenwardy I can ping 8.8.8.8 10:09 rubenwardy but doing nslookup google.com 8.8.8.8 fails 10:10 asl97 now that's weird, maybe someone hijacking your dns query 10:12 asl97 you can use dig and see what it output 10:13 JamesTait Good morning all; happy Tuesday, and happy Pretend To Be A Time Traveler Day! 😃 10:14 rubenwardy rubenwardy@rubenPC:~$ dig @8.8.8.8 inchra.net A \n ; <<>> DiG 9.9.5-3ubuntu0.5-Ubuntu <<>> @8.8.8.8 inchra.net A \n ; (1 server found) 10:14 rubenwardy ;; global options: +cmd 10:14 rubenwardy ;; connection timed out; no servers could be reached 10:20 XeonSquared JamesTait, it's like 9 PM, why did no-one tell me it was that today earlier? 10:21 JamesTait XeonSquared, I will. 😉 10:21 XeonSquared ... touch'e 10:22 rubenwardy Did anyone say anything after ;; connection timed out; no servers could be reached ? 10:22 rubenwardy apart from Xeon and James 10:22 XeonSquared no 10:22 asl97 rubenwardy: try a dns with a different port? it could be that dns query send using the default port is being block 10:22 rubenwardy what port shall I use? 10:22 asl97 like (using one of opennic dns server): dig inchra.net @106.186.17.181 -p 5353 10:22 rubenwardy I can't google for other DNS :P 10:23 rubenwardy that failed too 10:24 asl97 i don't know what else then, you could always try rebooting the computer 10:25 rubenwardy heh 10:25 asl97 that somehow work sometimes 10:25 rubenwardy I'll note IRC's Ip 10:29 rubenwardy works O_o 10:31 rubenwardy oh, I still can't access github 10:32 rubenwardy or inchra.net by domain name 10:32 rubenwardy but I have forums and google 10:33 nrzkt Google & OpenDNS log all your DNS requests, that's good for your privacy 10:33 nrzkt haha 10:34 asl97 nrzkt: which dns do you use then? 10:34 nrzkt i use root-servers.net servers directly, a little bit more latency than my ISP but works well :) 10:34 nrzkt my bind server at home do the DNS transaction properly => root/NIC/authoritative DNS) 10:34 Calinou nrzkt, why is the FDN DNS IPv4 address so hard to find? 10:34 Calinou the FDN site doesn't mention it 10:34 Calinou rubenwardy, you could try FDN DNS 10:35 nrzkt Calinou, i don't use FDN but yes it's better for users in France 10:35 rubenwardy lol privacy 10:35 rubenwardy (joking) 10:42 asl97 rubenwardy: you could try using your university default dns, they could be blocking external dns 10:46 XeonSquared :D I have a block, that depending on metadata, every second plays a sound 10:46 XeonSquared and that can be toggled by punching it 10:59 rubenwardy surely the default dns would be... default? 11:17 reborn Hi 11:19 rubenwardy hi 11:29 rubenwardy asl97: "In case anyone is having difficulty connecting to things, it's probably worth saying that JANet are under DDoS attack and this seems to be causing particular problems for DNS. 11:29 rubenwardy https://twitter.com/jiscmi - though they've stopped updating status as it seems the attackers were using the status updates to retarget the attack" 11:30 Calinou http://www.commitstrip.com/wp-content/uploads/2015/12/Strip-Record-duptime-serveur-650-finalenglish.jpg 11:31 rubenwardy DNS hasn't got that cached for me 11:31 rubenwardy I have read that comic before 11:31 rubenwardy So I can't load that :'( 11:41 Calinou https://github.com/minetest/minetest/issues/2481#issuecomment-162857950 11:41 Calinou best username/avatar 11:41 Calinou worst Markdown skills though 11:41 rubenwardy Can't access github :'( 12:16 asl97 finally found where in the code the tile is handle when the any of the fields is left out, if anyone is interested, it's here https://github.com/minetest/minetest/blob/2a12579fab7803fdee2fac2fa8a6837f131dde7a/src/script/common/c_content.cpp#L378 14:33 luizrpgluiz hi :) 16:04 LazyJ When viewing the graphs in the lower left corner of Minetest (double-press F5) what do the top and bottom numbers represent? 16:21 thefamilygrog66 Hey LazyJ 16:21 LazyJ Howdy, grog ;) 17:08 thefamilygrog66 *crickets* 17:11 sofar wha? I thought those were not implemented yet 17:18 Ingar I do have cricket sounds in my library 17:41 thefamilygrog66 Treasure! http://i.imgur.com/t6ZgwMn.png 17:51 rubenwardy Hi all! 17:53 thefamilygrog66 Hey rubenwardy 18:00 LazyJ What is the best way to shutdown Minetest without having to log into the game to issue the "/shutdown" command? I notice in the terminal that shutting down Minetest from within the game seems to give Minetest the chance to save things and close gracefully but issuing "kill all minetestserver" from the terminal seems to be too abrupt. 18:01 LazyJ * killall -w minetestserver 18:01 sofar send it a HUP instead? 18:01 sofar not sure if that's implemented 18:02 behalebabo send SIGINT 18:02 behalebabo LazyJ: killall -SIGINT minetestserver 18:03 LazyJ Ok, thanks, behalebabo. Researching SIGINT. 18:03 LazyJ sofar, what is "HUP"? 18:05 behalebabo also a signal, SIGHUP, it doesn't seem to do anything to MT 18:07 LazyJ I'm perplexed why minetestserver doesn't have an external shutdown command? 18:07 behalebabo SIGINT will run all shutdown functions 18:09 Calinou HUP is hangup 18:09 Calinou I think 18:14 hawksquawks Evening 18:15 hawksquawks Hello anyone here ? 18:16 thefamilygrog66 hi hawksquawks 18:16 hawksquawks Not sure if you can help i am looking for a mod that will enable players to claim set plots 18:17 thefamilygrog66 landrush 18:17 thefamilygrog66 ^^^ that's the mod you're looking for, hawksquawks 18:18 hawksquawks Ok but these will be set plots so players can find a plot then hit a sign and claim a preset area as my server is a city RP server 18:19 thefamilygrog66 It doesn't quite do that. Basically, players can craft (or are given) landclaim blocks which, when placed on unclaimed land, will claim a 16x16 area for the player. 18:20 thefamilygrog66 Also, I can't find the landrush mod on the forums anymore - weird. 18:21 hawksquawks ahh i see I guess it will have to be done using areas 18:21 thefamilygrog66 There are other landclaim type mods on the forums anyway 18:22 hawksquawks I will check them out 18:24 hawksquawks The other option will be to have a command sign that enables players to puch the sign and run a set_owner command one time for that claim 18:28 CWz Interesting to see that there will be an RP server 18:53 Obani rubenwardy, your server is a success :) 18:53 rubenwardy yay 18:54 Obani rubenwardy, what would you think about a better looking hud N 18:54 Obani ?* 18:54 rubenwardy It depends on what you mean and how much extra load there would be 18:56 Obani Well I'm just thinking to a new texture, like this https://cdn.rawgit.com/kaadmy/pixture-screenshots/master/crafting_guide.png 19:00 Obani rubenwardy, do /ctf_respawn pulverizes the inventory or does it drop it ? 19:00 rubenwardy pulverises 19:00 rubenwardy but moderator only 19:01 LazyJ Calinou, there is a replication glitch in MoreBlock's circular saw that can produce full stacks and repair any tool. Instructions for the exploit are in the PM I sent here in freenode. 19:17 hawksquawks Ok i have worked out a plot claim system using meshcons command block but is there a way to delete the block with a command ? 19:22 sofar worldedit 19:23 sofar I should just write a world node destructor tool 19:27 hawksquawks world edit for one block ? 19:33 sofar just a hand tool that can delete protected items, something a mod or admin could use to free areas 19:37 hawksquawks The idea with this block enables players to claim preset regions, i have got the working but i need to have the block delete it's self 19:51 Obani rubenwardy, removed chests ? so sad :( 19:57 Obani rubenwardy, I've got a little client "cheat" for you :) 19:57 Krock Omg client cheats ahead 19:57 Obani Are you sometimes blinded by damages flashes ? 19:58 Obani I changed speed and color :) 19:58 Obani This is optimization to me :p 19:58 Calinou veteran Doom players consider the removing of damage flash as a cheat 19:58 Obani Now I have a fast violet flash, that doesn't blind me ^^ 19:58 Calinou maybe it'll end up the same in Minetest, maybe not 19:58 Obani Krock, not really a cheat :p 19:58 Calinou (I hope not… it's so annoying :p) 20:16 Fixer ._. 20:19 * thefamilygrog66 is sometimes blinded by damage blood flashes 20:19 Obani can you complie your client ? ^^ 20:25 rubenwardy Obani, not recently: teams still have team chests 21:05 dadix hello 21:05 dadix I try to make a server 21:05 dadix I dont, know if is working 21:06 dadix how to test it ? 21:07 XeonSquared try to connect to it? 21:09 dadix I don't know how users will contest to it 21:09 dadix connect 21:09 XeonSquared first 21:09 XeonSquared try putting in the address 21:09 dadix what is the adress ? 21:10 XeonSquared dunno 21:10 dadix only my ip ? 21:10 XeonSquared yeah 21:11 dadix my ip is this : 79.113.76.83 21:11 dadix what is next? 21:12 dadix can you test if is working? 21:13 Calinou dadix, seems to work 21:13 Calinou although I get "Invalid password" :p 21:13 dadix 1234 is the pass 21:13 Calinou nevermind 21:14 Calinou no, it does not work 21:14 Calinou you need to forward port 30000 (UDP) 21:14 dadix the server has the name : minetest 21:14 Calinou it's not a matter of name, it's a matter of port forwarding on your router :P 21:14 dadix ohhhh, yes I have a router 21:15 dadix tplink 21:15 dadix but a don't know how to forwaed that port 21:15 dadix forwaed 21:16 dadix forward 21:16 Glorfindel google it 21:16 dadix ok 21:16 Glorfindel it's pretty easy, you probably will just open your routers internal ip and configure from there 21:16 dadix so after that wiill work? 21:18 Glorfindel if you have everything set up right it will, yet ;) 21:20 Glorfindel *yes 21:25 dadix my ip is that from http://whatismyipaddress.com/ ? 21:30 dadix I think Is ready 21:31 dadix my ip is ; 192.168.0.101 21:31 Calinou no, that is not your public IP 21:31 Calinou that's your private IP 21:31 Calinou (also called "internal IP" sometimes) 21:31 Calinou public IP is also called external IP 21:31 dadix I found it in info 21:32 dadix on my network 21:33 Glorfindel dadix: yeah, use the one from that website 21:33 Glorfindel unless you still need to forward a port, then use the internal one 21:33 dadix I done with forward 21:34 dadix is ready 21:34 dadix I opened the port on router 21:35 dadix i think is working 21:35 dadix i see someone 21:35 dadix :) 21:36 dadix so what is the adress? 21:36 XeonSquared so minetest uses UDP 21:36 XeonSquared that makes it harder to forward over ssh :| 21:37 Glorfindel dadix: sweet :) 21:37 dadix glorfindel you was on my server? 21:38 Glorfindel no 21:38 dadix so what is the adress for my server? 21:39 dadix what adrees to give to my friends ? 21:39 dadix adress? 21:39 Glorfindel your public one 21:40 dadix that from that site? 21:40 Glorfindel yeah 21:40 dadix only that ip ? 21:40 Glorfindel and the port 21:41 dadix like this: http://79.113.76.83:30000 21:41 dadix ? 21:41 dadix like a webpage ? 21:41 Glorfindel no 21:42 dadix sory but I am new to minetest 21:42 Glorfindel you put the ip and port in the proper places under the client tab in minetest :) 21:42 dadix ohhh, I understand 21:42 dadix now 21:43 dadix if I restart the pc must to give the new ip ? 21:44 Glorfindel depends if you set it to have a static ip, your router should have the same ip for however long it is leased for 21:44 Glorfindel but it might forward the port to the wrong internal ip if you restart your pc 21:46 dadix thank you for help 21:46 Glorfindel np 21:48 dadix if I will exit from game ( from that world) the rest of the usesrs can use that world ? 21:50 Glorfindel are you using minetestserver, or running a server from the gui client thingguumy 21:51 dadix from the GUI 21:51 Glorfindel then it will be gone if you close minetest 21:51 Glorfindel you running on windows? 21:51 dadix gnu/linux 21:52 thefamilygrog66 you can run a terminal command 21:52 Glorfindel ok, run minetestserver from a terminal or tty 21:52 thefamilygrog66 in your terminal, navigate to the bin folder 21:53 dadix must to find a video tutorial 21:53 thefamilygrog66 then type: 21:53 thefamilygrog66 nohup ./minetestserver & 21:53 thefamilygrog66 that works for me anyway 21:53 dadix I don't know how to use tty 21:54 thefamilygrog66 if you're on the computer itself, just open a terminal 21:54 Glorfindel dadix: it will be easier to use a terminal 21:54 dadix ok 21:54 dadix I open the terminat 21:55 thefamilygrog66 okay, type: cd minetest 21:55 thefamilygrog66 cd bin 21:55 dadix no such file or directory 21:56 Glorfindel thefamilygrog66: on my ubuntu installation minetestserver is a command added by installing minetest 21:56 dadix bash: cd: minetest: No such file or directory 21:56 Glorfindel no need to find a dir 21:57 Glorfindel dadix: it's .minetest 21:57 thefamilygrog66 Glorfindel, interesting I didn't know that 21:57 dadix ok , now is working 21:57 thefamilygrog66 I use lubuntu myself 21:57 dadix and now? 21:57 Glorfindel thefamilygrog66: I'm using ubuntu server with lxde lol 21:58 dadix I use Trisquel 21:58 thefamilygrog66 So more or less the same thing, haha 21:58 dadix yes 21:58 dadix dadix@dadix-300V3Z-300V4Z-300V5Z:~/.minetest$ 21:58 dadix and now? 21:59 thefamilygrog66 that's not the folder you want 21:59 thefamilygrog66 oh wait, did you install system-wide? 21:59 Glorfindel dadix: cd /bin/games/minetest 21:59 dadix what is that? 21:59 Glorfindel dadix: how did you install it? 22:00 thefamilygrog66 when you compiled, did you include DRUN_IN_PLACE=1? 22:00 dadix I instaled from ppa 22:00 Glorfindel yeah, so system wide 22:00 dadix is not compiled 22:00 thefamilygrog66 okay, so in the .minetest folder, is there another folder called bin? 22:00 Glorfindel dadix: just run minetestserver 22:01 dadix dadix@dadix-300V3Z-300V4Z-300V5Z:~$ minetestserver 22:01 dadix bash: minetestserver: command not found 22:01 Glorfindel what version is installed? 22:01 Glorfindel oh wait, I installed that lol 22:01 Glorfindel dadix: sudo apt-get install minetestserver 22:04 dadix thefamilygrog66 in the ,minetest folder there is no folder named bin 22:04 dadix dadix@dadix-300V3Z-300V4Z-300V5Z:~$ sudo apt-get install minetestserver 22:04 dadix [sudo] password for dadix: 22:04 dadix Reading package lists... Done 22:04 dadix Building dependency tree 22:04 dadix Reading state information... Done 22:04 dadix E: Unable to locate package minetestserver 22:05 dadix there is no minetest for instalation 22:06 Glorfindel hmm 22:06 dadix minetestserver 22:07 Glorfindel oh, it's minetest-server 22:07 Glorfindel type in minetest and then hit tab 22:07 dadix now it's working 22:07 dadix is installed 22:08 dadix and now? 22:08 dadix minetestserver 22:09 Glorfindel yes 22:09 dadix I see something on my terminal 22:10 Glorfindel you need to specify a world name to host, unless you only have one world 22:10 dadix my world is named : minetest 22:11 dadix I have only one 22:11 Glorfindel ok, it should "just work" afaik 22:12 Glorfindel test it with your client 22:12 dadix ok 22:17 dadix acces denied, wrong password 22:18 dadix maybe the ip is not good? 22:18 dadix I forward my internal ip and 30000 port 22:19 Glorfindel how are you trying to connect? 22:20 dadix from client 22:20 dadix I open the minetest gui and than I click on client label 22:21 dadix than tipe adress an than password 22:22 Glorfindel can you show me a screenshot? 22:22 dadix ok 22:25 dadix I send you 22:25 dadix do you see it ? 22:26 Glorfindel dadix: could you upload it to imgur or something? my internet is bad, it probably will time out 22:26 dadix ok 22:27 dadix http://s4.postimg.org/typi36znh/Screenshot_from_2015_12_09_00_23_22.png 22:28 Glorfindel ok, use a different name 22:28 Glorfindel minetest is on the list of forbidden names iirc 22:28 Glorfindel so dont' use minetest, and don't use singleplayer 22:29 Glorfindel I can connect to the server 22:29 * sofar quickly logs on that server as "dadix" 22:29 Glorfindel so it works :) 22:29 Glorfindel sofar: lol 22:29 Glorfindel with massive password amirite? 22:29 dadix I deleted the world 22:30 Glorfindel ok 22:30 Glorfindel my connection timed out lol 22:32 dadix I have the same eror 22:33 dadix I create a new world named : tetris 22:35 dadix the same error 22:36 dadix weong passord 22:36 dadix password 22:38 Glorfindel hmm 22:39 dadix wrong password 22:40 dadix I will delete the password 22:44 dadix i think is working now 22:46 Glorfindel seems like it 22:46 dadix I see you 22:46 dadix :) 22:46 dadix thank you for help 22:46 Glorfindel np :) 22:47 dadix time to bad 22:47 dadix have a nice day 22:47 dadix :) 22:48 Glorfindel cya later :)