| Time |
Nick |
Message |
| 00:21 |
cornernote |
hey |
| 00:24 |
VanessaE |
hey |
| 00:58 |
cornernote |
is darkrose here ? |
| 00:59 |
cornernote |
or anyone know how i use the new buttons in the inventory api? |
| 01:00 |
VanessaE |
no clue |
| 01:00 |
VanessaE |
oh boy. c55 has gone off the deep end now :-) |
| 01:01 |
VanessaE |
https://github.com/celeron55/minetest/commits/master |
| 01:01 |
VanessaE |
look at the top line (0xb0ba05c9ac) |
| 01:05 |
MiJyn |
Latest stable version: 0.4! |
| 01:05 |
MiJyn |
"Stable" |
| 01:08 |
VanessaE |
where do you see that? |
| 01:10 |
MiJyn |
well, it isn't dev anymore |
| 01:13 |
cornernote |
hey guys... i want to save an object out of lua (dont need to read it back in) .. im thinking json encode, but i cant seem to find one that works... anyone got any tips ? |
| 01:13 |
VanessaE |
object? |
| 01:14 |
cornernote |
i want it to be readable by another app |
| 01:14 |
cornernote |
sorry, not object |
| 01:14 |
cornernote |
object definition |
| 01:15 |
VanessaE |
I guess it depends on what kind of objects we're talking about |
| 01:15 |
cornernote |
like... the argument that goes into minetest.register_craft() |
| 01:15 |
VanessaE |
ah |
| 01:15 |
VanessaE |
wouldn't XML be more appropriate? |
| 01:15 |
cornernote |
sure |
| 01:15 |
cornernote |
as long as i can read it i dont mind which format |
| 01:15 |
MiJyn |
VanessaE, for this kind of object, json is way more appropriate |
| 01:15 |
MiJyn |
It's way samller |
| 01:15 |
VanessaE |
(i've seen json format, if I recall right it was...erm... difficult to deal with) |
| 01:16 |
MiJyn |
*smaller |
| 01:16 |
MiJyn |
really? |
| 01:16 |
MiJyn |
I always thought xml was way harder |
| 01:16 |
cornernote |
MiJyn, do you have any working example ? |
| 01:16 |
cornernote |
i tried this |
| 01:16 |
cornernote |
http://regex.info/blog/lua/json |
| 01:17 |
cornernote |
i get "attempt to call a nil value" - on this line .. JSON = (loadfile "JSON.lua")() |
| 01:18 |
cornernote |
i put JSON.lua in the same folder as my init.lua |
| 01:19 |
MiJyn |
cornernote, yes, I have made many working apps with json :) |
| 01:19 |
MiJyn |
did you import JSON.lua? |
| 01:20 |
cornernote |
isnt that this: loadfile "JSON.lua" ? |
| 01:20 |
cornernote |
if not, i dont know what import means |
| 01:21 |
MiJyn |
dofile |
| 01:21 |
MiJyn |
dofile JSON.lua |
| 01:21 |
MiJyn |
I think |
| 01:22 |
cornernote |
i put dofile(minetest.get_modpath("default").."/JSON.lua") at the top of init.lua .. same error |
| 01:22 |
cornernote |
i should note |
| 01:22 |
cornernote |
i am editing the default module |
| 01:22 |
cornernote |
i need my mod to load before the others |
| 01:22 |
MiJyn |
yeah |
| 01:23 |
MiJyn |
dofile("./JSON.lua") |
| 01:23 |
MiJyn |
? |
| 01:23 |
cornernote |
same =( |
| 01:23 |
MiJyn |
wait |
| 01:23 |
MiJyn |
try this: |
| 01:23 |
MiJyn |
dofile(minetest.get_modpath("YOURMODNAME").."/JSON.lua") |
| 01:23 |
MiJyn |
you put in default |
| 01:23 |
cornernote |
yeah |
| 01:23 |
MiJyn |
and I presume JSON.lua was NOT in default |
| 01:23 |
cornernote |
mymodname = default |
| 01:23 |
cornernote |
yes it is |
| 01:23 |
MiJyn |
oh |
| 01:24 |
cornernote |
<cornernote> i should note <cornernote> i am editing the default module |
| 01:24 |
MiJyn |
oh |
| 01:27 |
cornernote |
ok, i got it |
| 01:27 |
cornernote |
i used this one |
| 01:27 |
cornernote |
http://www.chipmunkav.com/downloads/Json.lua |
| 01:28 |
cornernote |
wood |
| 01:28 |
cornernote |
woot even |
| 01:28 |
cornernote |
=) |
| 01:38 |
MiJyn |
:) |
| 01:42 |
VanessaE |
http://minetest.net/index.php |
| 01:42 |
VanessaE |
0.4 is officially out |
| 01:47 |
MiJyn |
wow |
| 01:47 |
MiJyn |
I'm reading the website |
| 01:47 |
MiJyn |
man, he thinks he is good |
| 01:47 |
MiJyn |
" |
| 01:47 |
MiJyn |
I will do anything I want with the money and you will not get it back. However, you are getting back a game that definitely is worth more than $0. " |
| 01:48 |
VanessaE |
that text is old |
| 01:48 |
VanessaE |
been there for a while now anyway |
| 01:51 |
VanessaE |
guess my conversation with him had an effect after all. |
| 01:51 |
VanessaE |
I sure hope that it was, ultimately, a positive one. |
| 02:00 |
MiJyn |
yeah, I hope so too |
| 02:01 |
VanessaE |
celeron55> nah, i am just in the hopes of this being roughly the right thing to do 8) |
| 02:12 |
cornernote |
ok, i got a json export of all the register_* stuff |
| 02:12 |
cornernote |
5720 .json files =) |
| 02:13 |
cornernote |
now to whack some kind of wiki together using php |
| 02:13 |
cornernote |
then each server can run its own world wiki =) |
| 03:12 |
|
khonkhortisan joined #minetest |
| 03:29 |
|
AndrewPH joined #minetest |
| 03:36 |
cornernote |
the lighting on all my trees is broken |
| 03:36 |
cornernote |
it fixes when i chop some leaves |
| 03:36 |
cornernote |
any tips on a global fix ? |
| 03:41 |
VanessaE |
no idea :( |
| 03:42 |
VanessaE |
I've seen it happen on occasion here too, but only one or two trees at a time and very rarely. |
| 03:42 |
|
roboman2444 joined #minetest |
| 04:05 |
VanessaE |
weird, that crash happening on redcrab's server (30401), I can't reproduce it locally |
| 04:05 |
VanessaE |
(using two iterations of the game, one as the server, the other as the client) |
| 04:06 |
VanessaE |
must be one of his mods or the particular build he's using. |
| 04:28 |
|
vicscandl joined #minetest |
| 04:28 |
|
vicscandl joined #minetest |
| 04:35 |
|
triplei joined #minetest |
| 04:36 |
|
EtherNet joined #minetest |
| 04:50 |
|
moruk joined #minetest |
| 05:14 |
cornernote |
darkrose, your version is awesome, soooo many items load, and super stable |
| 05:44 |
|
HaltingState joined #minetest |
| 05:44 |
|
HaltingState joined #minetest |
| 05:48 |
|
HaltingState joined #minetest |
| 05:48 |
|
HaltingState joined #minetest |
| 06:03 |
cy1 |
darkrose has a version? I can has pull? |
| 06:03 |
GTRsdk |
darkrose's version is more stable? |
| 06:06 |
cy1 |
https://github.com/darkrose/minetest |
| 06:06 |
cy1 |
I dunno bout more stable, but I like other people's contributions unless they suck. |
| 06:08 |
cy1 |
And even if they suck I want to look at them. |
| 06:09 |
darkrose |
my fork has nodetimers, formspec, and support for sever thousand more defined items |
| 06:09 |
darkrose |
s/sever/several/ |
| 06:10 |
cy1 |
nodetimers? o.O |
| 06:10 |
darkrose |
and custom player inventories |
| 06:11 |
cy1 |
I kind of want to merge, but I can't figure see your changes using gitk... |
| 06:11 |
darkrose |
high resolution per-node timers, better than abm's for some things |
| 06:11 |
cy1 |
Not sure the difference, but OK... |
| 06:11 |
cy1 |
oh, like for furnaces. |
| 06:12 |
cy1 |
They don't stop timing when out of range. |
| 06:12 |
cy1 |
Thus enabling someone to kill every server by spamming furnaces. |
| 06:12 |
darkrose |
abm's are per-type, nodetimer's are per-node |
| 06:12 |
darkrose |
thus use a lot less resources |
| 06:12 |
cy1 |
sort of, yeah... I am with you on the less resources part |
| 06:13 |
darkrose |
and can be timed on any frequency from hundredths of a seconds, to several days |
| 06:14 |
cy1 |
aha I got it |
| 06:14 |
cy1 |
gitk darkrose/master master |
| 06:14 |
darkrose |
also, start 60 second node timer, shutdown after 30 seconds, timer will trigger 30 seconds after the server's restarted |
| 06:15 |
cy1 |
heh, lava buckets as fuel |
| 06:15 |
cy1 |
aka infinite fuel |
| 06:15 |
darkrose |
it doesn't fire 800 times to simulate the lost time |
| 06:15 |
cy1 |
oh, no it consumes the bucket |
| 06:15 |
cy1 |
abms fire once, with 800 times the likelihood of firing, to simulate the lost time. |
| 06:15 |
cy1 |
Still not ideal for furnaces, but w/ev |
| 06:16 |
darkrose |
right, nodetimers don't simulate the lost time |
| 06:16 |
|
HaltingState joined #minetest |
| 06:16 |
|
HaltingState joined #minetest |
| 06:17 |
cy1 |
Huh, formspec seems neat. |
| 06:17 |
cy1 |
Better than that sign hack. |
| 06:18 |
darkrose |
http://stuff.ltmnet.com/images/mt/formspec.png <-- that was me experimenting with it |
| 06:18 |
GTRsdk |
darkrose: do celeron55 clients work with servers running your code? |
| 06:18 |
cy1 |
OK I will try to merge. |
| 06:19 |
darkrose |
GTRsdk: probably not, haven't tested though |
| 06:19 |
cy1 |
OH conflicts, brb |
| 06:21 |
cy1 |
darkrose: what do you use for indenting code? ._. |
| 06:21 |
|
sfan5 joined #minetest |
| 06:21 |
darkrose |
uh, tab |
| 06:22 |
cy1 |
no I mean, like... an emacs mode? |
| 06:24 |
cy1 |
I just use the emacs default, but it never seems to mesh with everyone else... |
| 06:24 |
darkrose |
no, just however I've got geany set up at the moment... if kinda varies between what shuts celeron up and what I usually use |
| 06:25 |
cy1 |
geany? |
| 06:25 |
cy1 |
Oh, huh. |
| 06:25 |
cy1 |
Never heard of it. |
| 06:25 |
cy1 |
I don't care as long as it's consistent and automatically calculable. |
| 06:26 |
darkrose |
I've never stuck with emacs long enough to learn it fully |
| 06:27 |
cy1 |
Eh, it's a ... it kinda sucks really. |
| 06:27 |
cy1 |
I just use it because you can install it anywhere. |
| 06:27 |
cy1 |
It's a how you say, fallback |
| 06:27 |
|
Calinou joined #minetest |
| 06:28 |
cy1 |
The finger gymnastics needed to use the darn thing is most unpleasant. |
| 06:28 |
darkrose |
indeed |
| 06:28 |
Calinou |
outdeed |
| 06:28 |
Calinou |
cy1, what darn thing? |
| 06:29 |
cy1 |
Calinou: emacs |
| 06:29 |
darkrose |
I haven't seen anything but linux/bsd/some-other-posixish-thing in a production envirenment for years though, so I don't really care about things that only run on those |
| 06:29 |
|
tango_ joined #minetest |
| 06:29 |
Calinou |
bleh |
| 06:29 |
cy1 |
C-x C-c, perfectly natural! |
| 06:30 |
* Calinou |
welcomes the average linux user |
| 06:30 |
cy1 |
I love how with the dvorak keymapping, "open file" "find goal column (wtf?)" and "zoom text" are extremely easy to mix up. |
| 06:30 |
Calinou |
bleh, dvorak |
| 06:30 |
* Calinou |
sticks to azerty |
| 06:30 |
cy1 |
It's what I know. |
| 06:31 |
Calinou |
using a non-azerty layout in france makes you look like a fool |
| 06:31 |
Calinou |
#itsnotlikeusa |
| 06:31 |
darkrose |
and you don't need any help with that |
| 06:31 |
cy1 |
Nobody in the USA even knows what a keyboard layout is... |
| 06:40 |
cy1 |
darkrose: well, the merge sort of worked, but every block on menche's server is now reporting as an unknown block. ._. |
| 06:41 |
darkrose |
yeah, needs client and server to match |
| 06:41 |
cy1 |
Oh, you should make it protocol 12 then. |
| 06:41 |
cy1 |
That'll error out properly. |
| 06:41 |
cy1 |
Unless the player sets strict_protocol_checking = false explicitly. |
| 06:42 |
cy1 |
darkrose: so, where's your test server? =) |
| 06:42 |
darkrose |
don't have one running all the time, as I keep resetting the world |
| 06:44 |
darkrose |
just started it at 203.143.236.122:30000 |
| 06:45 |
cy1 |
Sure, let me just... |
| 06:45 |
* Calinou |
just trolled someone @ #debian who talked about "web of trust" |
| 06:45 |
Calinou |
<cy1> Unless the player sets strict_protocol_checking = false explicitly. |
| 06:45 |
Calinou |
it's server-side |
| 06:45 |
Calinou |
the client can't change this setting |
| 06:46 |
cy1 |
Oh, my bad. |
| 06:48 |
cy1 |
ARGH STUPID CHAT SEGFAULT RRRRR |
| 06:49 |
TForsman |
Hello allo, who maintain http://minetest.net/download.php ? or who can change that page? |
| 06:49 |
cy1 |
not me |
| 06:52 |
darkrose |
cy1: how's the network speed for my server for you? |
| 06:52 |
cy1 |
darkrose: crafting is a little slow, not noticing any other problems |
| 06:52 |
darkrose |
ok, just wondering |
| 06:53 |
cy1 |
oh also I'm lost in the dark with no wood and 26 deep in the stone |
| 06:54 |
cy1 |
That's to be expected though `-` |
| 06:55 |
|
HaltingState joined #minetest |
| 06:55 |
|
HaltingState joined #minetest |
| 06:56 |
cy1 |
a torch appears out of nowhere! |
| 06:56 |
cy1 |
I'm saved! |
| 06:56 |
darkrose |
driveby torching |
| 07:05 |
sfan5 |
TForsman: why are you asking? |
| 07:05 |
TForsman |
sfan5: sended a mail to celeron, wanted to get in: How to install minetest for Foresight |
| 07:05 |
sfan5 |
what is forsight? |
| 07:06 |
TForsman |
http://www.foresightlinux.se/wiki-en/ |
| 07:06 |
TForsman |
Foresight Linux |
| 07:06 |
|
jin_xi joined #minetest |
| 07:09 |
sfan5 |
"sudo conary update build-essential libirrlicht-dev cmake libbz2-dev libpng12-dev libjpeg8-dev libxxf86vm-dev libgl1-mesa-dev libsqlite3-dev libogg-dev libvorbis-dev libopenal-dev" |
| 07:09 |
sfan5 |
that would be the first step |
| 07:09 |
TForsman |
not really, not to install the game |
| 07:09 |
sfan5 |
oh |
| 07:09 |
TForsman |
just: sudo conary install minetest=gameway.rpath.org fl:2 will auto pull in deps that are needed |
| 07:09 |
TForsman |
http://www.foresightlinux.se/wiki-en/index.php?title=Minetest |
| 07:10 |
sfan5 |
idk how foresight works... |
| 07:11 |
TForsman |
and always: sudo conary updateall (updates whole system) will auto update minetest, when i bump minetest :) no need to add any additional stuff for that |
| 07:13 |
* sfan5 |
just started his minetest server at sfan5.dyndns.org:30001 |
| 07:43 |
cornernote |
how do i remove a train track in the wrong place ? |
| 07:55 |
cornernote |
and how can i tell which mod is lagging the server? .. i assume is one of the abm thingys? |
| 07:57 |
cy1 |
cornernote: you can try just removing the abms one at a time. no builtin statistics about which mod is doing what... |
| 07:59 |
cy1 |
sfan5: can you give me your exact IP? dyndns is hating on me for some reason |
| 07:59 |
sfan5 |
79.235.27.105 |
| 08:00 |
Calinou |
<cy1> sfan5: can you give me your exact IP? dyndns is hating on me for some reason |
| 08:00 |
Calinou |
inb4 ban |
| 08:00 |
Calinou |
inb4 openwryt |
| 08:00 |
Calinou |
-y |
| 08:01 |
sfan5 |
i'm working on machineguns so don't expect it ro run always |
| 08:01 |
sfan5 |
Calinou: machineguns work, i'm almost done |
| 08:03 |
cy1 |
openwhu |
| 08:06 |
sfan5 |
:/ |
| 08:07 |
|
sfan5_ joined #minetest |
| 08:08 |
cornernote |
my water looks like ... well.. looks like nothing rendered |
| 08:09 |
cornernote |
ok, i think it was the atlas got enabled |
| 08:09 |
cornernote |
checking now (waiting for 70000 mods to load) =) |
| 08:10 |
cornernote |
didnt fix it =( |
| 08:11 |
Calinou |
http://minetest.net/forum/viewtopic.php?id=2454 |
| 08:11 |
Calinou |
WELCOME TO MY CLUB! |
| 08:12 |
Calinou |
"EDIT: You should note that you are not, and will not be, the only one banned from the channel." |
| 08:12 |
Calinou |
he isn't alone, at all |
| 08:13 |
cornernote |
ahh, the politics of open source |
| 08:13 |
cornernote |
ok, water is right now |
| 08:14 |
cornernote |
but there is 1 issue... dirt looks like... a small default dirt in the corner of the themed dirt |
| 08:14 |
cornernote |
texture atlas is off now |
| 08:14 |
sfan5 |
Calinou: join my server |
| 08:14 |
sfan5 |
now with machine guns |
| 08:16 |
Calinou |
http://minetest.net/forum/viewtopic.php?pid=32490#p32490 |
| 08:16 |
Calinou |
WTF, random images |
| 08:16 |
* Calinou |
is considering a delete |
| 08:17 |
Calinou |
meh, I'll keep them for now |
| 08:17 |
Calinou |
however, merging posts |
| 08:20 |
Calinou |
oh btw: https://github.com/celeron55/minetest |
| 08:20 |
Calinou |
see the latest builtin commit? |
| 08:20 |
Calinou |
:D |
| 08:20 |
Calinou |
MINETEST 0.4 IS RELEASED |
| 08:20 |
Calinou |
WTF |
| 08:21 |
sfan5 |
lol |
| 08:21 |
sfan5 |
my server is down for 2 mins |
| 08:21 |
sfan5 |
compiling 0.4 |
| 08:22 |
Calinou |
sfan5, see, I did a contribution to the game :P |
| 08:22 |
sfan5 |
where? |
| 08:23 |
Calinou |
https://github.com/celeron55/minetest |
| 08:23 |
Calinou |
*and landmine dies again* |
| 08:24 |
Calinou |
https://github.com/celeron55/minetest/commit/4b97023251890314c85ad4710d85ddeae6ac3e22 |
| 08:24 |
Calinou |
sfan5, you're on the list :D |
| 08:24 |
* Calinou |
is one of the >10 random people |
| 08:24 |
sfan5 |
i know (yay) |
| 08:24 |
sfan5 |
my server is up again |
| 08:27 |
Calinou |
what the fuck |
| 08:27 |
Calinou |
"mod stairsplus has unsatisfied stairs dependancy" |
| 08:27 |
Calinou |
I have the stairs mod in games/minetest_game |
| 08:27 |
Calinou |
and stairsplus in mods/minetest |
| 08:27 |
Calinou |
O_o |
| 08:31 |
Calinou |
0.4 was supposed to have mobs, too. :( |
| 09:01 |
Calinou |
http://c55.me/blog/ > no news :c |
| 09:12 |
|
TLP|AFK joined #minetest |
| 09:16 |
|
sfan5 joined #minetest |
| 09:39 |
|
TheLastProject joined #minetest |
| 09:53 |
brobostigon |
good morning everyone. |
| 09:59 |
|
q66 joined #minetest |
| 10:02 |
Calinou |
hi |
| 10:02 |
Calinou |
brobostigon, 0.4 released! |
| 10:02 |
brobostigon |
Calinou: what happened, so quickly? |
| 10:03 |
brobostigon |
i still found a few bugs. |
| 10:03 |
brobostigon |
in the last version i got. |
| 10:03 |
Calinou |
"mod stairsplus has unsatisfied dependencies: stairs" :/ |
| 10:03 |
Calinou |
I have the stairs mod. |
| 10:04 |
brobostigon |
ok. |
| 10:06 |
Calinou |
what the fu- |
| 10:06 |
Calinou |
minetest 0.4 for windows has NO stairs |
| 10:07 |
brobostigon |
interesting. |
| 10:09 |
Calinou |
downloaded it from github and installed it; mod stairsplus works now |
| 10:09 |
brobostigon |
ah. |
| 10:09 |
Calinou |
added "stairs" mod to stairsplus so that it works |
| 10:10 |
brobostigon |
ok |
| 10:10 |
Calinou |
violating licenses FTW (LGPL allows free redistribution, right?) |
| 10:11 |
Calinou |
done, pushed to git |
| 10:12 |
Calinou |
'lunch now, bye |
| 10:12 |
|
sfan5_ joined #minetest |
| 10:23 |
FreeFull |
Hey, apparently lava buckets work as fuel now |
| 10:24 |
sfan5 |
i feixed them |
| 10:26 |
sfan5 |
*fixed |
| 10:34 |
|
SpeedProg joined #minetest |
| 10:40 |
|
Jousway joined #minetest |
| 10:57 |
|
Calinou joined #minetest |
| 10:58 |
|
darkrose joined #minetest |
| 11:24 |
|
bas080 joined #minetest |
| 11:34 |
|
jordach joined #minetest |
| 11:36 |
jordach |
morning# |
| 11:36 |
cornernote |
hey |
| 11:41 |
cornernote |
in register_node, whats the diff between tiles and tile_images ? |
| 11:42 |
jordach |
nothing |
| 11:42 |
jordach |
they are the same strangely |
| 11:42 |
jordach |
and https://github.com/celeron55/minetest/commit/b0ba05c9ac021032801952ff1220ed4ab1b1bd45 |
| 11:42 |
jordach |
0.4.X |
| 11:42 |
jordach |
STABLE ALARM |
| 11:43 |
jordach |
HEY Calinou STABLE https://github.com/celeron55/minetest/commit/b0ba05c9ac021032801952ff1220ed4ab1b1bd45 |
| 11:43 |
Calinou |
old news |
| 11:43 |
jordach |
:P |
| 11:43 |
jordach |
well |
| 11:43 |
jordach |
not everyone knopws |
| 11:43 |
jordach |
knows* |
| 11:44 |
Calinou |
STILL NO MOBS |
| 11:44 |
Calinou |
c55 said he will not release the stable without mobs; he did |
| 11:44 |
Calinou |
also the stairs mod is not included in the windows download; serious bug |
| 11:44 |
* Calinou |
included it in the stairsplus mod |
| 11:44 |
* Calinou |
should update moreblocks to add stonebrick/stonesquare stairs |
| 11:45 |
* jordach |
should prepare cotton |
| 11:46 |
* jordach |
should fix mc4mt since i promised i would fix it for the stablwe |
| 11:53 |
Calinou |
gonna hate the new default pack sometimes, I liked the old one better (except for the dirt, the brick is the same) |
| 11:53 |
Calinou |
> cobble looks like stone bricks |
| 11:59 |
Calinou |
https://github.com/celeron55/minetest/issues/158 |
| 11:59 |
Calinou |
happy face |
| 12:00 |
Calinou |
https://github.com/celeron55/minetest/issues/157 |
| 12:00 |
Calinou |
happy face #2 |
| 12:10 |
Calinou |
https://github.com/celeron55/minetest |
| 12:10 |
Calinou |
>latest commit |
| 12:10 |
Calinou |
>happy face #3 |
| 12:16 |
Calinou |
sfan5, you can't remove unbreakable blocks anymore :D |
| 12:16 |
Calinou |
anticheat has been added |
| 12:16 |
Calinou |
(disableable on server with minetest.conf) |
| 12:16 |
sfan5 |
give me a test server |
| 12:17 |
Calinou |
yours? :P |
| 12:18 |
Calinou |
update to latest git |
| 12:18 |
sfan5 |
ok |
| 12:18 |
sfan5 |
compiling right noq |
| 12:18 |
Calinou |
also a 0.4.1 will be released today/tomorrow |
| 12:18 |
sfan5 |
*now |
| 12:18 |
Calinou |
- anticheat |
| 12:18 |
Calinou |
- fix for stairs mod not in windows build |
| 12:20 |
sfan5 |
he fixed it |
| 12:23 |
sfan5 |
i have an idea |
| 12:23 |
sfan5 |
we need nitrado for minetest |
| 12:56 |
|
Anelisa joined #minetest |
| 12:56 |
Anelisa |
salut ! |
| 12:57 |
Anelisa |
TT__TT Ma maison dans le serveur de steinheim a été remplacé par devinez quoi ? u_u |
| 12:58 |
Anelisa |
(ma 2e maison) |
| 12:59 |
Anelisa |
ah c'est bon.... ma maison a pas été détruite... |
| 13:03 |
jordach |
sfan5, me is loving 0.4.x |
| 13:16 |
Calinou |
lut Anelisa |
| 13:16 |
Calinou |
la 0.4 est sortie! |
| 13:17 |
* jordach |
might start a 0.4 server |
| 13:22 |
Anelisa |
ooh |
| 13:22 |
Anelisa |
y'a des monstres ?? |
| 13:23 |
Anelisa |
(pourquoi elle sort quand je profite de mon exploit ? >.<) |
| 13:24 |
Calinou |
pas de monstres |
| 13:25 |
Anelisa |
youpi !! *-* |
| 13:25 |
Anelisa |
(je sursaute quand y'a les monstres, et j'ai peur chais pas pourquoi,lol) |
| 13:28 |
Anelisa |
je ne voie aucun lien où ils en parlent de la version stable... >_< |
| 13:29 |
Calinou |
http://minetest.net/download.php |
| 13:30 |
Calinou |
pour linux; soit tu compiles, soit tu attends que le mainteneur du package ubuntu se bouge le cul |
| 13:30 |
Calinou |
ça devrait se faire dans 2-3 jours; les paquets sont compilés chaque jour automatiquement |
| 13:31 |
Anelisa |
@_@ |
| 13:31 |
|
VanessaE joined #minetest |
| 13:31 |
jordach |
VanessaE, https://github.com/celeron55/minetest/commit/b0ba05c9ac021032801952ff1220ed4ab1b1bd45 |
| 13:31 |
Anelisa |
Oooh, purée firefox se mets pas à jour pour la version 14... (HS mais bon je crois que je vais compilée...) |
| 13:31 |
Calinou |
Anelisa, installe la MAJ dans le gestionnaire de mises à jour |
| 13:31 |
Anelisa |
Hi VanessaE ! |
| 13:31 |
Calinou |
(n'oublie pas de mettre à jour les listes de paquets) |
| 13:31 |
Calinou |
hi VanessaE; stable 0.4.0 :D |
| 13:31 |
Calinou |
0.4.1 coming soon probably |
| 13:32 |
jordach |
:D |
| 13:33 |
* jordach |
is happy |
| 13:33 |
Anelisa |
Je voie pas où je l'installe (où je clique..) |
| 13:33 |
Calinou |
ouvre un terminal et tape: |
| 13:33 |
Calinou |
sudo apt-get update && sudo apt-get upgrade |
| 13:34 |
Anelisa |
oki doki ! |
| 13:35 |
Anelisa |
merci |
| 13:43 |
|
Anelisa2 joined #minetest |
| 13:44 |
Anelisa2 |
re (ma machine a bug juste à la fin de la mise à jour....) |
| 13:45 |
Anelisa2 |
Comment je sais que j'ai la version stable Calinou ? (car je voie pas de différence là ...) |
| 13:45 |
Calinou |
en haut à gauche: |
| 13:45 |
Calinou |
"minetest-c55 0.4.0" |
| 13:47 |
Anelisa2 |
ah bah c'ets bon alors ! :P |
| 13:47 |
Anelisa2 |
Il y a pas de nouveautés ? Ou c'est comme avant... ? |
| 13:59 |
* VanessaE |
peeks in |
| 13:59 |
jordach |
hi VanessaE |
| 13:59 |
Anelisa2 |
.. |
| 13:59 |
VanessaE |
Error reading /dev/#minetest: language mismatch |
| 14:00 |
VanessaE |
;) |
| 14:00 |
jordach |
duh# |
| 14:00 |
VanessaE |
morning all |
| 14:00 |
|
sciopath joined #minetest |
| 14:03 |
sfan5 |
i got some news from /dev/random: 2226511844137249168892341927914261168102452314610462101675332226752071636321 |
| 14:04 |
jordach |
no |
| 14:05 |
jordach |
no |
| 14:05 |
jordach |
just no. |
| 14:05 |
jordach |
celeron55 has committed some shit |
| 14:07 |
|
NakedFury joined #minetest |
| 14:08 |
Anelisa2 |
Have you see different things... in the 0.4.0 version stable ? Me, no.... |
| 14:15 |
jordach |
not really |
| 14:15 |
jordach |
0.5 dev ftw |
| 14:16 |
jordach |
0.5 dev: a complete re-write of the current codebase |
| 14:16 |
Calinou |
lol |
| 14:16 |
Calinou |
2.0 dev |
| 14:16 |
jordach |
heh |
| 14:16 |
Calinou |
has nyancats that hug you |
| 14:16 |
Anelisa2 |
j'cromprend rien ! >_< |
| 14:16 |
jordach |
Anelisa2, speak english to me |
| 14:17 |
jordach |
(and preferably everyone here) |
| 14:17 |
Anelisa2 |
I don't UNDERSTAND lol |
| 14:17 |
jordach |
i love french humor |
| 14:17 |
jordach |
allez wiggo! |
| 14:17 |
jordach |
Calinou, Anelisa2, watching the tour de france? |
| 14:17 |
Calinou |
not right now |
| 14:18 |
jordach |
luckily the pc sits next to the 36'' tv |
| 14:18 |
Anelisa2 |
No, it's stupid.. u_u |
| 14:18 |
jordach |
why not |
| 14:18 |
darkrose |
Calinou's probably the one causing all the accidents, just to troll it |
| 14:18 |
Anelisa2 |
(tour de france) |
| 14:19 |
jordach |
Anelisa2, dont make me get my 1000 things the british did first |
| 14:19 |
Anelisa2 |
And the dog have create a accident ! |
| 14:19 |
Anelisa2 |
lol |
| 14:19 |
Calinou |
<darkrose> Calinou's probably the one causing all the accidents, just to troll it |
| 14:19 |
Calinou |
lol |
| 14:20 |
Anelisa2 |
Calinou, rien n'as été ra-jouté par rapport à la version de test et stable ? |
| 14:21 |
Calinou |
pas grand chose |
| 14:22 |
Anelisa2 |
comme comme ra-jout ?? |
| 14:24 |
Calinou |
quelques bugs fixés |
| 14:25 |
Anelisa2 |
ah.. TT__TT |
| 14:25 |
Calinou |
c'est déjà ça :) |
| 14:26 |
Anelisa2 |
I have download a mod and you don't know what I found? lol |
| 14:26 |
jordach |
cmon stable |
| 14:26 |
jordach |
go faster |
| 14:26 |
Anelisa2 |
Pictures with girls in small outfits LOL |
| 14:26 |
jordach |
D: |
| 14:27 |
* jordach |
has a girl-friend |
| 14:27 |
Calinou |
lol, Anelisa2, what mod |
| 14:27 |
Anelisa2 |
i'm a girl... |
| 14:27 |
Calinou |
jordach, hax |
| 14:27 |
jordach |
DUN DUN DUN |
| 14:27 |
Anelisa2 |
I don't remember, lol |
| 14:27 |
jordach |
Calinou, both legal >:D |
| 14:27 |
* jordach |
raises eyeborws |
| 14:27 |
Anelisa2 |
I have delete.. the pictures |
| 14:27 |
* Calinou |
lowers jordach's eyebrows |
| 14:27 |
Calinou |
"the other one, too." |
| 14:28 |
Calinou |
#simpsons |
| 14:28 |
jordach |
Calinou, nope.avi |
| 14:29 |
Anelisa2 |
test |
| 14:29 |
Anelisa2 |
Why doen't work ?! I want change the name too Anelisa... |
| 14:29 |
* jordach |
one ups Calinou http://www.youtube.com/watch?v=gvdf5n-zI14 |
| 14:29 |
jordach |
Anelisa2, do /nick Anelisa |
| 14:29 |
Anelisa |
thanks ! |
| 14:30 |
jordach |
there ya gp |
| 14:30 |
Calinou |
forum error (fixed now): "There is a problem with your [code] tags" |
| 14:30 |
Calinou |
GOT A PROBLEM WITH CODE TAGS? |
| 14:30 |
Calinou |
lol |
| 14:30 |
jordach |
http://www.youtube.com/watch?v=gvdf5n-zI14 nope.avi |
| 14:30 |
Anelisa |
It's that's, the name of the mod it's : TEXTURES lol |
| 14:32 |
Anelisa |
And you don't know ? I HAVE REPAIR my computer !! :D |
| 14:32 |
Anelisa |
game's with flash work now ! |
| 14:35 |
jordach |
Anelisa, i fix my once or twice a month |
| 14:35 |
jordach |
pc once or twice per month* |
| 14:37 |
Calinou |
lolfalsh |
| 14:37 |
jordach |
lolbadspelling |
| 14:38 |
Anelisa |
It's 3 moths i have past AND I CAN'T PLAY with any game's, argh |
| 14:38 |
* VanessaE |
takes Anelisa's apostrophe away |
| 14:39 |
jordach |
Anelisa, you sure you had the right OS installed? |
| 14:39 |
jin_xi |
Her'e hav'e s'ome m'ore: '''''''' |
| 14:40 |
|
BartoCH joined #minetest |
| 14:41 |
Anelisa |
jordash, OS ?! |
| 14:42 |
Calinou |
OS = operating system |
| 14:42 |
Calinou |
jordach, she uses ubuntu |
| 14:43 |
jordach |
install ubuntu-restricted extras |
| 14:43 |
jordach |
via ubuntu software centre |
| 14:43 |
Anelisa |
@_@ The problem are resoluce (it's that's ? lol) |
| 14:44 |
jordach |
ikr |
| 14:53 |
Anelisa |
.... |
| 14:57 |
Anelisa |
jordach, yes it's installed ! |
| 14:57 |
jordach |
and it works righrt? |
| 14:59 |
Anelisa |
i don't know.... But i think ! |
| 15:01 |
|
Calinou joined #minetest |
| 15:07 |
Anelisa |
re |
| 15:08 |
VanessaE |
wb Calinou |
| 15:09 |
VanessaE |
you know, you really shouldn't just switch your computer off like that ;-) |
| 15:15 |
|
bpatlarge joined #minetest |
| 15:51 |
Calinou |
<VanessaE> you know, you really shouldn't just switch your computer off like that ;-) |
| 15:52 |
Calinou |
I switch it off "normally", I just don't quit IRC before shutting down |
| 15:52 |
Calinou |
pointless to do so |
| 15:53 |
|
saddy joined #minetest |
| 15:54 |
Calinou |
(my regular quit message is "Excess Flood". :3) |
| 15:55 |
VanessaE |
I was kidding anyway :-) |
| 16:07 |
|
saddy joined #minetest |
| 16:23 |
MiJyn |
any ways to get the IP of a player? |
| 16:23 |
jordach |
(client-side) |
| 16:24 |
MiJyn |
jordach, I'm owning a server |
| 16:24 |
MiJyn |
I want to ban a player |
| 16:24 |
MiJyn |
and know his IP |
| 16:24 |
MiJyn |
I don't care about client-side actually |
| 16:26 |
VanessaE |
just ban them |
| 16:26 |
VanessaE |
it'll tell you their IP in the ban list |
| 16:27 |
MiJyn |
ok |
| 16:27 |
MiJyn |
for the heck of it, can the player know the IP? |
| 16:27 |
VanessaE |
the player always knows his or her own IP, if they're at least a little bit computer savvy :-) |
| 16:27 |
MiJyn |
now that I think of it, there is a player on another server who is griefing |
| 16:27 |
MiJyn |
and I want to ban his IP on my server |
| 16:27 |
VanessaE |
(it's not like it'll change just because it's minetest as opposed to a web browser or something) |
| 16:28 |
jordach |
MiJyn, your router could say something |
| 16:28 |
MiJyn |
jordach and VanessaE, nono, I mean there is ANOTHER player on ANOTHER IP |
| 16:28 |
MiJyn |
I want to know HIS IP |
| 16:28 |
VanessaE |
ohhhhhhhhh |
| 16:28 |
darkrose |
ban, then unban :p |
| 16:28 |
jordach |
RIGHR |
| 16:28 |
jordach |
RIGHT |
| 16:31 |
MiJyn |
ok, I think I'm going to ask c55 |
| 16:32 |
VanessaE |
oh sure, right - go into the lions' den ;-) |
| 16:33 |
MiJyn |
whatever |
| 16:33 |
jordach |
^ correct use of ' 50 points |
| 16:33 |
MiJyn |
I'm asking him a perfectly legitimate question |
| 16:33 |
VanessaE |
you better carefully formulate your question then :-) |
| 16:34 |
jordach |
ikr |
| 16:34 |
darkrose |
grep '"<playername>" from ' debug.txt |
| 16:35 |
MiJyn |
I asked him in "code-form" :P |
| 16:35 |
MiJyn |
that's the best way to do so :P |
| 16:35 |
MiJyn |
darkrose, ok, thanks. Now I'm looking for client-side :) |
| 16:36 |
MiJyn |
I know it's possible, because I remember on the SCP server, someone told my IP to me |
| 16:36 |
MiJyn |
and he wasn't a mod |
| 16:36 |
MiJyn |
just a griefer |
| 16:38 |
MiJyn |
is c55 onlien? |
| 16:38 |
MiJyn |
*online |
| 16:38 |
VanessaE |
dunno |
| 16:38 |
jordach |
celeron5 is onoine |
| 16:38 |
jordach |
celeron55* |
| 16:38 |
VanessaE |
read "online" -> "is he at his computer" |
| 16:39 |
MiJyn |
yes |
| 16:39 |
VanessaE |
(otherwise that means I'm "online" even when I'm in bed asleep if I leave my IRC client open) |
| 16:39 |
darkrose |
jordach: you mean the server running the screen session running irssi that's connected to freenode is online |
| 16:39 |
jordach |
perhaps |
| 16:42 |
cornernote |
hey guys |
| 16:42 |
jordach |
sup |
| 16:42 |
VanessaE |
howdy cornernote |
| 16:42 |
jordach |
^ we don not live in the wild west |
| 16:42 |
cornernote |
yesterday (i think it was anyway)... i made a LUA that would extract all the register_* options to json encoded data |
| 16:43 |
jordach |
sweet |
| 16:43 |
jordach |
you beat me to it |
| 16:43 |
jordach |
well done |
| 16:43 |
Calinou |
<MiJyn> I want to ban a player |
| 16:43 |
VanessaE |
I am from the US Midwest, Jordach. we actually still speak like that on occasion. |
| 16:43 |
cornernote |
today i made a php wiki that reads that data |
| 16:43 |
Calinou |
inb4 landmine |
| 16:43 |
Calinou |
:3 |
| 16:43 |
cornernote |
jordach - i'll upload so u can see |
| 16:43 |
jordach |
Calinou, o hai landmine |
| 16:43 |
* jordach |
raises eyebrows again |
| 16:44 |
* Calinou |
lowers jordach's eyebrows |
| 16:44 |
* jordach |
raises eyebrows again |
| 16:44 |
cornernote |
u have to wait a while... its populating the sqlite db with a zillion items |
| 16:44 |
jordach |
o noes |
| 16:46 |
cornernote |
this will be sooooo cool |
| 16:46 |
cornernote |
i have only seen it with the default data |
| 16:46 |
cornernote |
cos it takes so long each data load |
| 16:46 |
cornernote |
once its loaded its very fast |
| 16:48 |
|
ttk2 joined #minetest |
| 16:51 |
|
HaltingState joined #minetest |
| 16:51 |
|
HaltingState joined #minetest |
| 16:52 |
cornernote |
.... importing: register_craft.2499.json .... |
| 16:52 |
VanessaE |
so what does this do exactly? |
| 16:52 |
VanessaE |
I mean, what feature will these generated JSON files be used for? |
| 16:52 |
cornernote |
makes a php website that shows all your items/nodes/crafts/etc/etc |
| 16:52 |
VanessaE |
that's what I thought. Nice |
| 16:53 |
* VanessaE |
waits for an example to magically appear :-) |
| 16:53 |
cornernote |
its not exactly straight forward to get the json, but i'll package it up as best i can over the next few days |
| 16:54 |
VanessaE |
I meant the generated website :-) |
| 16:54 |
cornernote |
yes, that will magically appear in a puff of awesomeness |
| 16:54 |
VanessaE |
good. :-) |
| 16:54 |
cornernote |
all the dyes mods are on there, so it will probably be useful as-is |
| 16:59 |
VanessaE |
cool |
| 16:59 |
VanessaE |
darkrose's branch fixes the number-of-nodes limit, so it might be useful to load up a whole shitload of popular mods and generate a big "covers-it-all" version of this |
| 17:00 |
VanessaE |
assuming this runs in-game anyway |
| 17:10 |
VanessaE |
zzz |
| 17:11 |
VanessaE |
haha...trying to connect to redcrab's server: wait, wait, wait...login...wait wait, "client disconnected [ Proceed ]" |
| 17:12 |
jordach |
looks like a ban |
| 17:12 |
VanessaE |
no |
| 17:12 |
VanessaE |
his server's unstable now |
| 17:12 |
jordach |
lol |
| 17:12 |
VanessaE |
something related to falling entities broke it |
| 17:12 |
jordach |
/clearobjects |
| 17:12 |
jordach |
thats whats needed |
| 17:13 |
VanessaE |
every time someone comes within mapblock-loading-distance of a particular event (in my case, logging back in and spawning near a torch that accidentally got buried under falling gravel), the server shuts itself down |
| 17:15 |
VanessaE |
*** VanessaEzekowitz joined game |
| 17:15 |
VanessaE |
*** Server shutting down |
| 17:15 |
VanessaE |
every single time now :( |
| 17:17 |
jordach |
wow |
| 17:17 |
jordach |
come to my server |
| 17:17 |
jordach |
i have a robot in testing |
| 17:17 |
VanessaE |
naw, already over playing on ol' laggy now ;-) |
| 17:17 |
jordach |
217.43.25.97 |
| 17:17 |
jordach |
30000 |
| 17:17 |
VanessaE |
(thefamilygrog's nickname for minetest.ru:30001) |
| 17:17 |
jordach |
wait |
| 17:17 |
jordach |
aint that down? |
| 17:17 |
darkrose |
play on mine, I have tricorders |
| 17:18 |
VanessaE |
nope, it's up again |
| 17:18 |
Calinou |
jordach, no sound when diggin dirt |
| 17:19 |
jordach |
its a minimal server |
| 17:20 |
Calinou |
minimal sucks :p |
| 17:21 |
VanessaE |
heh, emspri's minecraft chicken thing in Town Centre is half-gone now :-) |
| 17:28 |
|
MiJyn joined #minetest |
| 17:30 |
|
MiJyn joined #minetest |
| 17:37 |
MiJyn |
what is happening?? |
| 17:40 |
VanessaE |
nuthin' |
| 17:40 |
VanessaE |
:-) |
| 17:41 |
cornernote |
ok, who's ready ? |
| 17:41 |
VanessaE |
ready? :) |
| 17:41 |
cornernote |
gotta build a little bit of hype |
| 17:41 |
jin_xi |
i'm ready |
| 17:42 |
* VanessaE |
reluctantly raises her hand... |
| 17:42 |
cornernote |
theres no home page, and there was an issue importing some items, so i have to rebuild .. but most of the things should work, and you'll get a good idea where i'm going with it |
| 17:42 |
cornernote |
ok, here it is |
| 17:42 |
VanessaE |
<font size="-3">ready...</font> |
| 17:42 |
VanessaE |
;-) |
| 17:42 |
cornernote |
http://fasthost.com.au/minetest/wiki/ |
| 17:43 |
VanessaE |
(^^^ cartoon style of barely uttering the word) |
| 17:44 |
VanessaE |
eh, minor bug |
| 17:44 |
VanessaE |
you don't render nodeboxes ;-) |
| 17:45 |
jin_xi |
nice |
| 17:45 |
VanessaE |
I like it though |
| 17:45 |
jordach |
Fatal error: Uncaught exception 'UnexpectedValueException' with message 'RecursiveDirectoryIterator::__construct(C:/minetest/build/darkrose-minetest-aec9c7f) [<a href='recursivedirectoryiterator.--construct'>recursivedirectoryiterator.--construct</a>]: failed to open dir: No such file or directory' in /home/fasthost/public_html/minetest/wiki/globals.php:49 Stack trace: #0 /home/fasthost/public_html/minetest/wiki/globals. |
| 17:45 |
jordach |
php(49): RecursiveDirectoryIterator->__construct('C:/minetest/bui...') #1 /home/fasthost/public_html/minetest/wiki/globals.php(81): image('Array') #2 /home/fasthost/public_html/minetest/wiki/nodes.php(26): item('mesecons_whiske...') #3 {main} thrown in /home/fasthost/public_html/minetest/wiki/globals.php on line 49 |
| 17:46 |
jin_xi |
got that too |
| 17:46 |
VanessaE |
yup, I see it |
| 17:47 |
cornernote |
yeah, fixed that now.. plz try again |
| 17:47 |
cornernote |
and plz paste in the URL that triggered the error if you get any errors |
| 17:47 |
VanessaE |
interesting... the mesecons delayers aren't the textures I submitted |
| 17:47 |
VanessaE |
(but the rest are) |
| 17:48 |
cornernote |
it kind of "harvested" textures |
| 17:48 |
cornernote |
so whatever file it found in the path with that filename was the one used |
| 17:48 |
VanessaE |
ohh |
| 17:48 |
cornernote |
cos the mods dont tell me the path, i have to go looking |
| 17:49 |
jin_xi |
in moreores tools have double letters? |
| 17:49 |
VanessaE |
Bronze Aaxe [moreores:axe_bronze] <- old moreores version alert :-) |
| 17:51 |
cornernote |
ok, i'll update.. thanks =) |
| 17:53 |
cornernote |
did moreblocks too |
| 17:56 |
cornernote |
fixed the bug on the abm page |
| 17:57 |
cornernote |
next plan is to build in some tools... |
| 17:57 |
VanessaE |
now, next plan: |
| 17:57 |
cornernote |
eg.. choose some items, and then it generates the LUA code to craft |
| 17:58 |
VanessaE |
re-render this page with my 64px photorealistic pack :-) |
| 17:58 |
cornernote |
not that thats hard to do on your own, but its funner with an interface |
| 17:58 |
VanessaE |
s/this page/these pages/ |
| 17:58 |
cornernote |
and you can see whats there |
| 17:58 |
VanessaE |
not that everything here is supported by it but oh well ;-) |
| 17:58 |
cornernote |
it just dumps all the images in 1 folder, replacing them is easy |
| 17:59 |
cornernote |
i'll upload your pack now so you can see it |
| 17:59 |
FreeFull |
Why is the first thing you get when you visit the minetest wiki a fireball to the face? |
| 17:59 |
FreeFull |
Doesn't make me feel very welcome |
| 17:59 |
jin_xi |
enjoy your fireball |
| 17:59 |
VanessaE |
heh |
| 18:00 |
jordach |
fireball to tha faic |
| 18:01 |
cornernote |
it needs a search too! lol i forgot that |
| 18:01 |
cornernote |
ctrl+f is pretty good tho |
| 18:01 |
NakedFury |
search tool and filter: Tools, BLocks, Ores, Wood items, Steel items, etc etc |
| 18:02 |
cornernote |
good idea .. i can do that, but only for items that have a type associated |
| 18:02 |
cornernote |
some items have groups |
| 18:02 |
cornernote |
so i can pull all the groups and make them filters |
| 18:02 |
cornernote |
eg, all dyes, or all choppy=2 or whatever |
| 18:10 |
cornernote |
VanessaE, your texture pack is loaded |
| 18:11 |
cornernote |
since i changed to the latest moreores and moreblocks i get the deserialize error again (on my windows compiled version of darkrose's version) |
| 18:13 |
|
MiJyn joined #minetest |
| 18:13 |
cornernote |
ok, im off to bed |
| 18:13 |
cornernote |
night all |
| 18:14 |
MiJyn |
see ya |
| 18:20 |
|
triplei joined #minetest |
| 18:21 |
VanessaE |
brb |
| 18:21 |
VanessaE |
working on a new screenshot for pipeworks |
| 18:23 |
VanessaE |
yay! nodeboxes rotate textures now |
| 18:24 |
VanessaE |
facedir= that is. (and top of cube-shaped objects too, e.g. furnace top) |
| 18:26 |
VanessaE |
cornernote: waaaaait :-) |
| 18:35 |
|
BartoCH_ joined #minetest |
| 18:41 |
|
girafe joined #minetest |
| 18:49 |
|
Chlorek joined #minetest |
| 18:49 |
Chlorek |
hello all |
| 18:52 |
VanessaE |
hi |
| 18:52 |
VanessaE |
uh oh |
| 18:52 |
VanessaE |
forums are down |
| 18:52 |
jin_xi |
nice error too |
| 18:53 |
Chlorek |
yh, however can someone help me with minetest project setup? |
| 18:53 |
Chlorek |
i want to edit source code |
| 18:53 |
Chlorek |
and i got some problem with LUA libs |
| 18:54 |
VanessaE |
what problem? |
| 18:54 |
Chlorek |
well, i got problem at 25% it says "Linking C static library liblua.a" |
| 18:54 |
VanessaE |
linux or windows? |
| 18:54 |
Chlorek |
but i added liblua.a in cmake |
| 18:55 |
Chlorek |
windows |
| 18:55 |
VanessaE |
oh. |
| 18:55 |
* VanessaE |
steps aside. |
| 18:55 |
Chlorek |
you may explain on linux too |
| 18:55 |
Chlorek |
i got fedora as 2nd os |
| 18:55 |
Chlorek |
but i havent installed there all my tools |
| 18:56 |
Chlorek |
so why may I get this error? |
| 18:57 |
VanessaE |
on linux, you probably just lack the right library, which is a separate package |
| 18:57 |
VanessaE |
apt-get install build-essential libirrlicht-dev cmake libbz2-dev libpng12-dev libjpeg8-dev libxxf86vm-dev libgl1-mesa-dev libsqlite3-dev libogg-dev libvorbis-dev libopenal-dev |
| 18:57 |
VanessaE |
well, for fedora it'll be differet |
| 18:58 |
VanessaE |
different, since you use yum or whatever |
| 18:58 |
Chlorek |
yh i know |
| 18:58 |
VanessaE |
but those are the libraries you need |
| 18:58 |
VanessaE |
how recent is your copy of the minetest source code? |
| 18:58 |
Chlorek |
i want the game working on windows so compiling under other systems is not good idea |
| 18:58 |
Chlorek |
i downloaded it today |
| 18:58 |
Chlorek |
0.4.0 |
| 18:59 |
VanessaE |
0.4.0 is already out-of-date :-) |
| 18:59 |
Chlorek |
well what is current? |
| 18:59 |
VanessaE |
pull the code from the github repository instead |
| 18:59 |
VanessaE |
there have already been a few bugfixes added that didn't make it into 0.4.0 |
| 18:59 |
Chlorek |
oh good idea, i got it somewhere on my disk ;p |
| 19:01 |
VanessaE |
beyond that I can't help you - from what I've heard, getting a tooth pulled is less painful than using windows for code development ;-) |
| 19:02 |
Chlorek |
yh you r right :) but I want edit the game that most of people (win-users) may use that |
| 19:03 |
VanessaE |
well the win and linux code is basically the same so if you edit on one, you |
| 19:03 |
VanessaE |
you're making changes that affect the other too |
| 19:03 |
Chlorek |
ok, updated |
| 19:03 |
Chlorek |
still same error ;/ |
| 19:04 |
Chlorek |
erros is: Linking C static library liblua.a [ 25%] process_begin: CreateProcess((null), echo Built target lua, ...) failed. |
| 19:05 |
Chlorek |
and it may be important that I use MinGW |
| 19:05 |
VanessaE |
dunno, windows is out of my experience (I don't use it) |
| 19:06 |
Chlorek |
however make files for MinGW and GCC should be the same |
| 19:06 |
Chlorek |
mingw is nothing other like GCC for win |
| 19:12 |
|
cisoun joined #minetest |
| 19:13 |
Chlorek |
nobody else know how to setup correctly project under windows? |
| 19:36 |
|
saddy joined #minetest |
| 19:39 |
|
ttk2 joined #minetest |
| 19:43 |
|
Lippis joined #minetest |
| 19:43 |
Lippis |
Hi anyone here? |
| 19:44 |
VanessaE |
hi |
| 19:46 |
Chlorek |
hello |
| 19:48 |
Chlorek |
this is stupid, i cannot even compile minetest -,- |
| 19:48 |
Chlorek |
i lost all the day |
| 19:48 |
VanessaE |
sowwy :( |
| 19:50 |
Chlorek |
oh |
| 19:50 |
Chlorek |
i see |
| 19:51 |
Chlorek |
that it cannot find liblua.a |
| 19:51 |
Chlorek |
but i added that in cmake |
| 19:51 |
Chlorek |
how should i add it? maybe i did sth wrong with it, this step is not described in tutorial about how to set it up |
| 19:54 |
Chlorek |
i added path to this lib as LUA_LIBRARY |
| 19:54 |
Chlorek |
and cmake did not say that is NOT used by project |
| 19:54 |
Chlorek |
so should be fine |
| 19:58 |
VanessaE |
gtg |
| 19:58 |
VanessaE |
bbl |
| 20:03 |
|
Lippis joined #minetest |
| 20:04 |
Lippis |
Anyone here? |
| 20:05 |
Chlorek |
yh |
| 20:06 |
Chlorek |
this minetest compiling makes me bonkers ;/ |
| 20:06 |
jin_xi |
hi |
| 20:06 |
Lippis |
That sucks there is no minetest for mac. |
| 20:07 |
Lippis |
I hate that |
| 20:07 |
Chlorek |
there is |
| 20:07 |
Chlorek |
but outdated |
| 20:07 |
Chlorek |
you may compile yourself :D |
| 20:07 |
Lippis |
I mean that... |
| 20:07 |
Lippis |
You know how FUCKING hard it is |
| 20:08 |
Chlorek |
yh bcuz i am doing that at the moment |
| 20:08 |
Chlorek |
and it sucks with lua |
| 20:08 |
Lippis |
you need to download all fucking cmake and everything from www |
| 20:08 |
Chlorek |
i did |
| 20:08 |
Chlorek |
and it sucks ;d |
| 20:08 |
Chlorek |
and i am programming c++ over 5 yrs |
| 20:08 |
Lippis |
yeah |
| 20:08 |
Lippis |
nice |
| 20:09 |
Lippis |
it would be awesome to get minetest 0.4 for ma |
| 20:09 |
Lippis |
mac* |
| 20:09 |
Chlorek |
... still cannot compile stupid source code -,- |
| 20:09 |
jin_xi |
maybe ask on #lua about it? |
| 20:10 |
Lippis |
Its possible when you do have all those packets. |
| 20:10 |
Chlorek |
it is not clear lua problem, when i compile project it prints: Linking C static library liblua.a [ 25%] process_begin: CreateProcess((null), echo Built target lua, ...) failed. |
| 20:11 |
Lippis |
ohh |
| 20:11 |
|
sfan5 joined #minetest |
| 20:11 |
Lippis |
It is possible to get LUA for mac? |
| 20:11 |
Chlorek |
yh |
| 20:11 |
Chlorek |
mac is linux based |
| 20:11 |
Chlorek |
so if it works on linux |
| 20:11 |
Chlorek |
and irrlicht supports mac too |
| 20:12 |
cisoun |
"mac is linux based" |
| 20:12 |
cisoun |
wait what |
| 20:13 |
Chlorek |
mac os x kernel is unix kernel based |
| 20:13 |
cisoun |
it's an unix like yes. |
| 20:13 |
cisoun |
but mac is based on a bsd kernel |
| 20:13 |
|
SpeedProg joined #minetest |
| 20:13 |
Chlorek |
i do not know details |
| 20:14 |
Chlorek |
i just heard that |
| 20:17 |
Chlorek |
is there anyone who got source code of minetest? |
| 20:18 |
cisoun |
Chlorek: https://github.com/celeron55/minetest |
| 20:18 |
Chlorek |
its not problem |
| 20:18 |
Chlorek |
is in this src\lua\build\CMakeFiles\lua.dir directory something like "all", idk is it file or dir |
| 20:19 |
|
TLP|AFK joined #minetest |
| 20:19 |
cisoun |
Chlorek: are you on linux ? |
| 20:19 |
Chlorek |
no im not now |
| 20:19 |
cisoun |
because in that case, everything is fichier |
| 20:20 |
Chlorek |
i want to compile it under windows |
| 20:20 |
Chlorek |
i want my friends may play that too |
| 20:20 |
|
Mardigann joined #minetest |
| 20:20 |
Mardigann |
hello ^^ |
| 20:20 |
cisoun |
Chlorek: https://github.com/downloads/celeron55/minetest/minetest-0.4.0-win32.zip |
| 20:21 |
cisoun |
already compiled |
| 20:21 |
cisoun |
and at the latest version |
| 20:21 |
Chlorek |
i got compilling error: make[1]: *** [src/lua/build/CMakeFiles/lua.dir/all] Error 2 make: *** [all] Error 2 |
| 20:21 |
Chlorek |
the problem is i do not need bin version ;) |
| 20:21 |
Mardigann |
compiling in windows? wow, you're hard :P |
| 20:22 |
Chlorek |
;D |
| 20:22 |
cisoun |
why do you really want to compile it ? you can already use this version. |
| 20:23 |
Chlorek |
i want to edit that |
| 20:23 |
Chlorek |
i got some ideas that i want to add and they cannot be added via lua scripting |
| 20:23 |
Mardigann |
little question, the forum is down? |
| 20:24 |
jin_xi |
its back up |
| 20:24 |
Mardigann |
perfect xD |
| 20:24 |
Mardigann |
i wqas searching for a recipe xD |
| 20:25 |
Mardigann |
bread is like a pain in the ass to make :P |
| 20:32 |
Mardigann |
so, another question :P there is a mod that just spawns mobs, like in the 0,3 or minecraft? or i need to modify the animals mod? |
| 20:33 |
|
sfan5 joined #minetest |
| 20:42 |
|
sfan5_ joined #minetest |
| 20:43 |
|
VanessaE joined #minetest |
| 20:45 |
NakedFury |
for the moment no mobs |
| 20:45 |
NakedFury |
would need to be added to the game. there is mod that adds some animals |
| 20:58 |
|
sfan5 joined #minetest |
| 20:59 |
Mardigann |
yes, i know, but the mod have some problems with drowning animals :P |
| 21:01 |
Mardigann |
and the version of the dungeon master is like to fight Gozer with a spoon |
| 21:02 |
sfan5 |
who is gozer? |
| 21:02 |
Mardigann |
ghostbusters |
| 21:02 |
Mardigann |
also known as Gozer the Gozerian, Gozer the Destructor, Volguus Zildrohar, Gozer the Traveler :P |
| 21:02 |
VanessaE |
windows users: https://github.com/downloads/celeron55/minetest/minetest-0.4.1-win32.zip |
| 21:03 |
VanessaE |
c55 needs feedback |
| 21:52 |
|
Mardigann left #minetest |
| 22:56 |
|
opticlove joined #minetest |
| 22:56 |
|
opticlove joined #minetest |
| 23:14 |
|
vicscandl joined #minetest |
| 23:14 |
|
vicscandl joined #minetest |