Times are UTC Toggle Colours
00:00:55 <glx> no bool in C, only ints 00:01:29 *** Elukka [~Elukka@a91-152-213-89.elisa-laajakaista.fi] has quit [] 00:01:30 <krinn> well, maybe the language will accept that, but sure gcc will throw a warning 00:02:58 <Eddi|zuHause> krinn: but ~1 is not 0 00:03:16 <krinn> didn't say that Eddi|zuHause don't try fool me :) 00:03:17 <Eddi|zuHause> and "in" doesn't have to return 1 00:03:47 <krinn> well, if C doesn't have a boolean type "in" should return 1 or 0 no ? 00:03:57 <Eddi|zuHause> no 00:04:18 <Eddi|zuHause> squirrel docs specifically say "in" returns non-zero 00:04:49 <Eddi|zuHause> so it can return 2, or 65535, or ... 00:06:08 <krinn> yep but it says also it return null on success 00:06:12 <krinn> and ~null ? 00:06:24 <Eddi|zuHause> ~0 is -1 00:06:38 <krinn> ~0 is ffffff... 00:06:46 <Eddi|zuHause> yes 00:06:51 <glx> -1 or max_uint 00:07:08 <Eddi|zuHause> depending on whether you interpret it signed or unsigned 00:07:57 <krinn> isn't -1 the ~1 ? 00:08:52 <Eddi|zuHause> no, - and ~ are different things :) 00:09:12 <glx> ~1 is 0xFFF...FFE 00:09:51 <Eddi|zuHause> ~0 = -1, ~1 = -2, ~2 = -3, etc. 00:10:08 <Eddi|zuHause> it's "off by one" (see 2-complement) 00:10:13 *** megakacktus [~debussy@174-30-204-96.mpls.qwest.net] has joined #openttd 00:10:25 <krinn> well, i was think it was ~x == max_uint -x 00:10:55 <krinn> like glx said 00:11:26 <Eddi|zuHause> yes, again, just depending on whether you interpret it signed or unsigned 00:11:27 <glx> that's the same :) 00:12:07 <krinn> ah ok, i suppose sign return max_int version, and non sign return the negative one ? 00:12:42 <Eddi|zuHause> for all intents and purposes, internally, max_uint == -1 00:13:12 <Eddi|zuHause> so if you replace it as ~x == -1-x, it's the same expression 00:13:51 <krinn> ok thank you for the lesson guys, i should do c one day :) 00:14:07 <Eddi|zuHause> this has nothing to do with C, anyway 00:15:45 <krinn> i don't remember how pascal handle that, but i think it's language specific how this is implemented 00:16:04 <glx> pascal does exactly like C 00:16:24 <krinn> in pascal boolean is a type, so ~ is not allow on boolean 00:16:32 <glx> of course 00:16:41 *** DabuYu [DoubleYou@128.250.79.186] has joined #openttd 00:16:41 <Eddi|zuHause> yes, but there is the ord() function 00:17:52 <Eddi|zuHause> but this 2-complement is implemented on all modern processors (where "modern" is at least the 1980's) 00:20:11 <Eddi|zuHause> other common methods of representing negative numbers are 1-complement (not used anymore) and sign/absolute (used with floating point numbers) 00:21:37 <Eddi|zuHause> 1-complement has the advantage of the same number of negative numbers as positive numbers (2-complement has 1 additional negative number, which cannot be converted to a positive number without leaving the value range), but the disadvantage of having two representations of 0 00:22:54 <Eddi|zuHause> sign/absolute has that same problem, but for floating point maths, things are more complicated anyway 00:22:56 <krinn> you mean 1 complement : ~1 is just -1 ~100 is -100... hence why ~0 = 0 00:23:36 <Eddi|zuHause> yes, 0 and -0 are different internal values internally 00:23:52 <Eddi|zuHause> -0 would be FF...FF 00:25:04 <Eddi|zuHause> since this means, the very common "check for 0" and the "is this equal" operations get more complicated (in hardware!), this format is not used anymore 00:25:48 <glx> "is this equal" being "is the difference is 0" 00:26:18 <krinn> to not get a if (0 < ~0) failure 00:26:52 <Eddi|zuHause> you need a special case for "000000 == FFFFFF" 00:26:52 <glx> 0 is always < ~0 00:27:14 <glx> as I guess ~0 is assumed to be unsigned 00:27:17 <Eddi|zuHause> which makes the hardware more complicated 00:27:40 <krinn> glx i speak about the 1-complement 0 00:28:13 <krinn> but i get it (i think) 00:29:06 <krinn> i just cannot remember how i was handling that in pascal (it's old) 00:32:27 *** mindlesstux [~mindlestu@raspberrypi.mindlesstux.com] has quit [Ping timeout: 480 seconds] 00:37:53 *** Nat_aS [~nat@c-76-115-24-56.hsd1.or.comcast.net] has quit [Quit: Konversation terminated!] 01:09:35 *** roboboy [~robotboy@0001164c.user.oftc.net] has joined #openttd 01:17:41 *** pugi [~pugi@host-091-097-011-247.ewe-ip-backbone.de] has quit [] 01:20:27 *** megakacktus [~debussy@174-30-204-96.mpls.qwest.net] has quit [Ping timeout: 480 seconds] 01:40:51 *** glx [~glx@000128ec.user.oftc.net] has quit [Quit: Bye] 01:44:29 *** DarkAce-Z [~BillyMays@50.107.55.36] has quit [Read error: Operation timed out] 01:59:16 *** DarkAceZ [~BillyMays@50.107.55.36] has joined #openttd 02:09:03 *** SamanthaD [~SamanthaD@c-98-248-25-134.hsd1.ca.comcast.net] has quit [Quit: Leaving] 02:13:23 *** montalvo [~montalvo@macbook60.icrar.org] has joined #openttd 03:38:05 *** Nat_aS [~nat@c-71-236-171-110.hsd1.wa.comcast.net] has joined #openttd 04:13:47 <Supercheese> Forum database backup seems to be taking quite a whilwe 04:13:50 <Supercheese> while* 04:26:43 *** DDR [~chatzilla@S01060019dbe06285.vc.shawcable.net] has joined #openttd 04:44:00 *** HerzogDeXtEr1 [~Flex@i59F6ABFB.versanet.de] has quit [Read error: Connection reset by peer] 04:56:01 *** Eddi|zuHause [~johekr@p57BD4117.dip0.t-ipconnect.de] has quit [] 04:56:17 *** Eddi|zuHause [~johekr@p5DC66060.dip0.t-ipconnect.de] has joined #openttd 05:13:29 *** Supercheese [~Superchee@98.145.153.126] has quit [Quit: ChatZilla 0.9.90.1 [Firefox 23.0/20130730113002]] 05:23:10 *** amiller [~amiller@216-15-29-79.c3-0.161-ubr1.lnh-161.md.cable.rcn.com] has quit [Ping timeout: 480 seconds] 05:32:26 <dihedral> good morning gents 05:32:57 <dihedral> TrueBrain, how quickly cann you add gnutls to the admin port? 05:33:11 <dihedral> i would love a patch and get my bot to support it :-) 06:27:30 *** sla_ro|master [slamaster@85.186.160.35] has joined #openttd 06:30:13 *** wakou2 [~stephen@host86-182-193-134.range86-182.btcentralplus.com] has joined #openttd 06:34:24 *** amiller [~amiller@c-69-255-193-198.hsd1.md.comcast.net] has joined #openttd 06:48:03 *** Twofish [~Twofish@0001308f.user.oftc.net] has joined #openttd 07:12:16 *** |2rB [~Thorbjorn@0001308f.user.oftc.net] has joined #openttd 07:25:51 *** Pecio [~fgh@agjj49.neoplus.adsl.tpnet.pl] has joined #openttd 07:28:14 *** Twofish [~Twofish@0001308f.user.oftc.net] has quit [Quit: Sometimes I think the surest sign that intelligent life exists elsewhere in the universe is that none of it has tried to contact us. (Hobbes, Calvin and H] 07:28:19 *** |2rB is now known as Twofish 07:33:24 *** valhallasw [~valhallas@wirenat2.strw.leidenuniv.nl] has joined #openttd 07:35:25 *** DDR [~chatzilla@S01060019dbe06285.vc.shawcable.net] has quit [Ping timeout: 480 seconds] 07:37:56 *** Zuu [~Zuu@h-114-141.a98.priv.bahnhof.se] has joined #openttd 07:42:07 *** Devroush [~dennis@dD5765BAC.access.telenet.be] has joined #openttd 07:54:31 *** LordAro [~LordAro@host81-158-56-147.range81-158.btcentralplus.com] has joined #openttd 07:56:44 * LordAro waves hi 08:00:45 *** pugi [~pugi@dyndsl-095-033-153-225.ewe-ip-backbone.de] has joined #openttd 08:15:58 * dihedral waves air 08:17:04 <V453000> hy :) 08:18:12 <dihedral> hey there V :) 08:25:58 *** Alice3 [~Alice@cpc18-grim14-2-0-cust478.12-3.cable.virginmedia.com] has joined #openttd 08:53:34 *** Midnightmyth [~quassel@93-167-84-102-static.dk.customer.tdc.net] has joined #openttd 09:00:01 *** Elukka [~Elukka@a91-152-213-89.elisa-laajakaista.fi] has joined #openttd 09:06:45 *** Pereba [~UserNick@177.41.233.224] has joined #openttd 09:07:28 <peter1138> shutting down a vm works better when you do it on the right host o_O 09:20:07 <dihedral> lol 09:21:17 <__ln__> you're jumping into conclusion without adequate research 09:27:43 *** Wolf01 [~wolf01@host130-14-dynamic.5-87-r.retail.telecomitalia.it] has joined #openttd 09:27:55 <Wolf01> hello 09:31:53 *** Pensacola [~quassel@h220216.upc-h.chello.nl] has joined #openttd 09:33:22 *** Nat_aS [~nat@c-71-236-171-110.hsd1.wa.comcast.net] has quit [Read error: Operation timed out] 09:33:51 *** Nat_aS [~nat@c-71-236-171-110.hsd1.wa.comcast.net] has joined #openttd 09:35:27 *** Ristovski [~rafael@ppp-seco11pa2-46-193-128.78.wb.wifirst.net] has joined #openttd 09:40:14 *** Pensacola [~quassel@h220216.upc-h.chello.nl] has quit [Read error: Connection reset by peer] 09:40:25 *** Pensacola [~quassel@h220216.upc-h.chello.nl] has joined #openttd 09:42:31 *** Polleke [~quassel@h220216.upc-h.chello.nl] has joined #openttd 09:47:40 *** montalvo [~montalvo@macbook60.icrar.org] has quit [Quit: Textual IRC Client: www.textualapp.com] 09:48:36 *** Pensacola [~quassel@h220216.upc-h.chello.nl] has quit [Ping timeout: 480 seconds] 09:54:52 *** Pereba [~UserNick@177.41.233.224] has quit [Quit: AdiIRC is updating to v1.9.2 Beta Build (120813-3) 64 Bit] 09:55:29 *** Pereba [~UserNick@177.41.233.224] has joined #openttd 10:01:47 *** oskari89 [oskari89@62-241-226-106.bb.dnainternet.fi] has joined #openttd 11:23:18 <LordAro> so, what do we think of elementary OS ? 11:24:42 <V453000> yes 11:28:52 <peter1138> no 11:29:05 <Zuu> nothing 11:29:11 <peter1138> is it linux? 11:30:11 <LordAro> yh 11:30:17 <LordAro> http://elementaryos.org/ 11:30:28 <peter1138> oh, yet another debian via ubuntu derivative 11:30:35 <peter1138> why so fucking many 11:32:37 <LordAro> people are saying good things about it 11:32:58 <peter1138> people say good things about ubuntu, doesn't mean it's good 11:33:51 <peter1138> also, best theme ever? http://gnome-look.org/CONTENT/content-pre1/160190-1.png 11:33:58 *** oskari892 [oskari89@62-241-226-106.bb.dnainternet.fi] has joined #openttd 11:38:58 <LordAro> indeed, at the end of the day, people like me and you aren't going to want the 'totally user friendly' type of thing (like osx) 11:38:59 *** oskari89 [oskari89@62-241-226-106.bb.dnainternet.fi] has quit [Read error: Operation timed out] 11:39:21 <LordAro> however, it does make it a lot easier for new people, and more people using linux == better ? 11:40:56 <Zuu> Better depends on what you measure 11:44:45 *** valhallasw [~valhallas@wirenat2.strw.leidenuniv.nl] has quit [Ping timeout: 480 seconds] 11:46:28 <Twofish> Like how LordAro asked: so, what do __we__ think of elementary OS ? 11:47:16 <Twofish> feeling like beeing at the doctors office :) 11:47:40 <Twofish> (heading to the dentist later, so don't know why i "liked" it... 11:55:27 *** valhallasw [~valhallas@wirenat2.strw.leidenuniv.nl] has joined #openttd 12:06:18 *** tst [~id@37.140.99.39] has joined #openttd 12:08:00 <Eddi|zuHause> who has time to try out all these OSes, and then decide which one fits the best? 12:20:20 *** valhalla1w [~valhallas@wirenat2.strw.leidenuniv.nl] has joined #openttd 12:22:11 *** valhallasw [~valhallas@wirenat2.strw.leidenuniv.nl] has quit [Ping timeout: 480 seconds] 12:26:52 *** HerzogDeXtEr [~Flex@i59F6ABFB.versanet.de] has joined #openttd 12:54:05 *** KouDy [~koudy@188.75.190.58] has joined #openttd 12:55:50 *** KouDy_ [~koudy@188.75.190.58] has quit [Ping timeout: 480 seconds] 13:18:01 *** Elukka [~Elukka@a91-152-213-89.elisa-laajakaista.fi] has quit [] 13:26:50 *** sla_ro|master [slamaster@85.186.160.35] has quit [] 13:55:10 *** roboboy [~robotboy@0001164c.user.oftc.net] has quit [Ping timeout: 480 seconds] 14:09:42 <dihedral> Eddi|zuHause, that's why everybodi* uses windows 14:10:25 <V453000> :> 14:11:50 *** sla_ro|master [slamaster@85.186.160.35] has joined #openttd 14:29:06 *** Alice3 [~Alice@cpc18-grim14-2-0-cust478.12-3.cable.virginmedia.com] has quit [] 14:51:16 *** megakacktus [~debussy@174-30-204-96.mpls.qwest.net] has joined #openttd 15:01:48 *** KritiK [~Maxim@0001264a.user.oftc.net] has joined #openttd 15:03:49 *** Pecio [~fgh@agjj49.neoplus.adsl.tpnet.pl] has left #openttd [] 15:18:31 *** amiller [~amiller@c-69-255-193-198.hsd1.md.comcast.net] has quit [Ping timeout: 480 seconds] 15:26:35 *** ntoskrnl [~not@a91-153-231-146.elisa-laajakaista.fi] has joined #openttd 15:32:56 <DorpsGek> Commit by translators :: r25719 /trunk/src/lang (korean.txt lithuanian.txt) (2013-08-11 17:45:14 UTC) 15:32:57 <DorpsGek> -Update from WebTranslator v3.0: 15:32:58 <DorpsGek> korean - 23 changes by telk5093 15:32:59 <DorpsGek> lithuanian - 39 changes by Stabilitronas 15:34:14 <DorpsGek> Commit by translators :: r25719 /trunk/src/lang (korean.txt lithuanian.txt) (2013-08-11 17:45:14 UTC) 15:34:15 <DorpsGek> -Update from WebTranslator v3.0: 15:34:16 <DorpsGek> korean - 23 changes by telk5093 15:34:17 <DorpsGek> lithuanian - 39 changes by Stabilitronas 15:35:18 <peter1138> twice! 15:35:28 <TrueBrain> thrice even! 15:37:18 <Eddi|zuHause> it's not even 19:45 15:38:14 <Eddi|zuHause> or it's groundhog day and we haven't realised 15:39:12 <peter1138> it's not even the 11th 15:40:20 <Rubidium> or is it? 15:41:53 <peter1138> telnet: Unable to connect to remote host: Connection refused 15:42:01 <peter1138> woo, connection limit works 15:42:28 <TrueBrain> telnet? really? 15:42:41 <peter1138> yes, handy for debugging 15:42:46 <Rubidium> netcat! ;) 15:42:49 <TrueBrain> netcat!! 15:42:52 <TrueBrain> :D 15:43:03 <peter1138> i can never be bothered :p 15:43:28 <peter1138> i do get a bit miffed that i can't uninstall openssh-*client* sometimes :( 15:55:14 *** amiller [~amiller@129-2-129-154.wireless.umd.edu] has joined #openttd 15:56:11 *** valhalla1w [~valhallas@wirenat2.strw.leidenuniv.nl] has quit [Ping timeout: 480 seconds] 16:01:01 *** MadaraUchiha [~madara@95.35.55.48] has joined #openttd 16:06:32 *** valhallasw [~valhallas@5070A0D5.static.ziggozakelijk.nl] has joined #openttd 16:30:16 *** Lord_Aro [~LordAro@host86-165-39-164.range86-165.btcentralplus.com] has joined #openttd 16:36:19 *** LordAro [~LordAro@host81-158-56-147.range81-158.btcentralplus.com] has quit [Ping timeout: 480 seconds] 16:37:32 *** amiller [~amiller@129-2-129-154.wireless.umd.edu] has quit [Read error: Operation timed out] 16:46:08 *** Progman [~progman@p57A1897E.dip0.t-ipconnect.de] has joined #openttd 16:49:19 *** Pereba [~UserNick@177.41.233.224] has quit [Quit: AdiIRC! Smaller, Faster, Easier. http://adiirc.com/] 16:49:22 *** amiller [~amiller@proxy00.umiacs.umd.edu] has joined #openttd 16:50:28 *** pugi [~pugi@dyndsl-095-033-153-225.ewe-ip-backbone.de] has quit [] 16:51:04 *** Pereba [~UserNick@177.41.233.224] has joined #openttd 16:54:16 <dihedral> TrueBrain, feedback on tls admin port? 16:57:56 <peter1138> he's been busy with me today ;) 17:03:28 *** Lord_Aro is now known as LordAro 17:19:36 *** amiller [~amiller@proxy00.umiacs.umd.edu] has quit [Ping timeout: 480 seconds] 17:21:11 *** frosch123 [~frosch@frnk-590fc187.pool.mediaWays.net] has joined #openttd 17:29:17 *** Stimrol [~Stimrol@46-239-219-51.tal.is] has quit [Quit: ZNC - http://znc.in] 17:32:09 *** Stimrol [~Stimrol@46-239-219-51.tal.is] has joined #openttd 17:45:23 <DorpsGek> Commit by translators :: r25720 /trunk/src/lang (indonesian.txt lithuanian.txt) (2013-08-12 17:45:15 UTC) 17:45:24 <DorpsGek> -Update from WebTranslator v3.0: 17:45:25 <DorpsGek> indonesian - 64 changes by UseYourIllusion 17:45:26 <DorpsGek> lithuanian - 4 changes by Stabilitronas 17:48:44 <krinn> where can i get the dest too far value? 17:50:16 <krinn> i don't mean the value of the error, but the value that trigger the error (so the max distance limit) 17:51:00 <Zuu> krinn: For aircraft or ships? 17:51:06 <krinn> ships 17:51:24 <krinn> it's like a pathfinder limitation 17:52:08 <Zuu> Not sure, but you could for example lookup the relevant order AI API method and see which DoCommand it uses, read that code and eventually find the check. 17:52:48 <krinn> going see it 17:53:31 <Zuu> The DoCommand is probably in src/order.cpp or possible order_cmds.cpp 17:59:49 *** tst [~id@37.140.99.39] has quit [Ping timeout: 480 seconds] 18:08:28 <frosch123> krinn: http://wiki.openttd.org/AI:Need_To_Know <- maybe put the slope link somewhere there? 18:08:30 <krinn> if (dist >= 130) { 18:08:31 <krinn> return_cmd_error(STR_ERROR_TOO_FAR_FROM_PREVIOUS_DESTINATION); 18:10:01 <krinn> must say i'm a bit surprise it's an hardcode number 18:10:15 <krinn> frosch123, i don't touch wiki, i don't want put hell there :) 18:10:33 <planetmaker> krinn, then it will remain wrong and not useful 18:10:47 <planetmaker> consider it *your* documentation 18:10:57 <krinn> better than damage by stupidity 18:11:15 <frosch123> reverting is easy :p 18:11:18 <planetmaker> ^ 18:11:39 <planetmaker> if you do nothing for fear of doing wrong you'll never ever achieve anything 18:11:45 <planetmaker> Things get done by people being bold 18:12:04 <Rubidium> what if doing nothing is doing the wrong thing? 18:12:43 <frosch123> i think tb's forum signature is also on that topic :p 18:14:15 <krinn> some people are good at doing it, i prefer let them keep doing that 18:14:25 *** zeknurn [~sup@hd9483b0c.seveveb.dyn.perspektivbredband.net] has quit [Read error: Connection reset by peer] 18:16:29 *** zeknurn [~sup@hd9483b0c.seveveb.dyn.perspektivbredband.net] has joined #openttd 18:17:51 <krinn> it's not like i wasn't sharing the info... 18:22:08 *** Frodus [~Frodus@static243-243-8.mimer.net] has joined #openttd 18:25:08 *** amiller [~amiller@proxy00.umiacs.umd.edu] has joined #openttd 18:26:17 *** DDR [~chatzilla@70.36.63.90] has joined #openttd 18:28:33 *** DDR [~chatzilla@70.36.63.90] has quit [] 18:32:26 *** mindlesstux [~mindlestu@raspberrypi.mindlesstux.com] has joined #openttd 18:32:36 *** MNIM [~mBuntu@ip5452ffad.adsl-surfen.hetnet.nl] has quit [Remote host closed the connection] 18:34:04 *** MNIM [~mBuntu@ip5452ffad.adsl-surfen.hetnet.nl] has joined #openttd 18:48:26 *** Devroush367 [~dennis@dD5765BAC.access.telenet.be] has joined #openttd 18:49:52 *** Polleke [~quassel@h220216.upc-h.chello.nl] has quit [Remote host closed the connection] 18:51:21 *** andythenorth [~Andy@cpc22-aztw25-2-0-cust272.aztw.cable.virginmedia.com] has joined #openttd 18:51:37 <andythenorth> o/ 18:52:42 *** Devroush [~dennis@dD5765BAC.access.telenet.be] has quit [Ping timeout: 480 seconds] 18:52:42 <planetmaker> \o 18:52:58 <krinn> hi andythenorth 18:55:35 *** glx [~glx@000128ec.user.oftc.net] has joined #openttd 18:55:38 *** mode/#openttd [+v glx] by ChanServ 19:15:53 <andythenorth> what's the go? 19:16:15 *** Frodus [~Frodus@static243-243-8.mimer.net] has quit [] 19:21:10 *** frodus [~frodus_de@static243-243-8.mimer.net] has joined #openttd 19:28:43 *** frodus [~frodus_de@static243-243-8.mimer.net] has quit [Quit: Leaving] 19:29:12 *** frodus [~frodus_de@static243-243-8.mimer.net] has joined #openttd 19:30:23 *** frodus [~frodus_de@static243-243-8.mimer.net] has quit [] 19:30:42 *** frodus [~frodus_de@static243-243-8.mimer.net] has joined #openttd 19:32:02 <Rubidium> yay... the forum loads fast again :( 19:32:53 <andythenorth> also all the whining is gone 19:32:56 <andythenorth> it's awesome :) 19:33:07 <V453000> :D 19:33:16 <Rubidium> Olivia, make sure it stays that way ;) 19:33:26 <MNIM> What, did you remove all the users? 19:34:31 *** ntoskrnl [~not@a91-153-231-146.elisa-laajakaista.fi] has quit [Ping timeout: 480 seconds] 19:34:43 <krinn> The Transport Tycoon Forums are currently down for maintenance. (yeah pretty fast) 19:35:45 *** frodus [~frodus_de@static243-243-8.mimer.net] has quit [Quit: Leaving] 19:36:02 *** frodus [~frodus_de@static243-243-8.mimer.net] has joined #openttd 19:58:53 *** pugi [~pugi@dyndsl-095-033-153-225.ewe-ip-backbone.de] has joined #openttd 20:03:27 *** Devroush367 [~dennis@dD5765BAC.access.telenet.be] has quit [] 20:06:51 <andythenorth> so why does searching my newgrf list for 'isr' get me CHIPS and FIRS? 20:06:57 *** Devroush [~dennis@dD5765BAC.access.telenet.be] has joined #openttd 20:06:58 <andythenorth> old tags? 20:07:53 <Rubidium> ask it on the forums ;) 20:08:01 <andythenorth> they were pretty quiet on the issue 20:08:34 <frosch123> it searches grfname filename and description 20:09:07 <andythenorth> oh 20:09:09 <frosch123> "isr" might also hit on "misread" 20:09:22 <andythenorth> description is attributing graphics 20:09:25 <andythenorth> so ISR shows up 20:09:28 <andythenorth> valid I guess :P 20:09:41 <andythenorth> same for FIRS 20:17:25 *** megakacktus [~debussy@174-30-204-96.mpls.qwest.net] has quit [Read error: Operation timed out] 20:17:42 <andythenorth> need to do a bulk terminal for FIRS 20:17:49 <andythenorth> oil, grain, etc 20:17:50 <andythenorth> https://dev.openttdcoop.org/attachments/download/5105/bulk_terminal_ish.png 20:17:55 <andythenorth> likey? 20:17:56 <andythenorth> or not? 20:20:30 <andythenorth> or I should post it at forums? 20:21:53 <frosch123> the combination of blue and pink looks weird 20:22:01 <frosch123> aren't all tiles cc? 20:22:19 <andythenorth> photoshop mockup ;) 20:22:43 <frosch123> well, i guess the harbor should be bigger overall 20:22:47 <frosch123> if it gets more buildings 20:22:57 <frosch123> there should be some free space :p 20:23:28 <frosch123> the tanks might also not be directly at the water 20:23:47 <Nat_aS> Tiny boats 20:24:21 <Nat_aS> what looks weird to me 20:24:30 <Nat_aS> is the pier looks like it's hovering 20:24:52 <Nat_aS> or rather the part that connects it looks like it ought to either be thicker, or slanted 20:26:43 <krinn> miss mooring 20:29:47 <andythenorth> Nat_aS: it looks like it's flying in space? 20:30:00 <Nat_aS> Not so much that 20:30:05 <Nat_aS> but the pier should be thicker 20:30:11 <Nat_aS> it's not the same thickness as a normal tile 20:30:24 <Nat_aS> but it sticks out straigh from the land 20:30:31 <Nat_aS> so it should be the same thickness 20:30:44 <andythenorth> ? 20:31:17 <andythenorth> you mean the pier is not tall enough? 20:31:36 *** HerzogDeXtEr1 [~Flex@i59F6BD56.versanet.de] has joined #openttd 20:33:07 *** oskari892 [oskari89@62-241-226-106.bb.dnainternet.fi] has quit [] 20:34:35 <Nat_aS> yeah 20:34:56 *** HerzogDeXtEr [~Flex@i59F6ABFB.versanet.de] has quit [Read error: Operation timed out] 20:35:06 <Nat_aS> it should either be the same height of a normal tile, or it should start partway down the slope instead at the top of it 20:36:35 * andythenorth wonders how many pixels short it is 20:37:29 <andythenorth> might be 2 20:39:42 <krinn> and the 2nd crate looks too much closed to be useful to anyone 20:42:02 <andythenorth> crate? 20:42:34 <krinn> crane 20:46:55 *** Zuu [~Zuu@h-114-141.a98.priv.bahnhof.se] has quit [Ping timeout: 480 seconds] 20:48:39 <andythenorth> good night 20:48:40 *** andythenorth [~Andy@cpc22-aztw25-2-0-cust272.aztw.cable.virginmedia.com] has left #openttd [] 21:05:18 *** megakacktus [~debussy@174-30-204-96.mpls.qwest.net] has joined #openttd 21:17:12 *** tokai|noir [~tokai@00012860.user.oftc.net] has joined #openttd 21:17:15 *** mode/#openttd [+v tokai|noir] by ChanServ 21:18:01 *** MadaraUchiha [~madara@95.35.55.48] has quit [Ping timeout: 480 seconds] 21:23:01 *** tokai|mdlx [~tokai@port-92-195-125-124.dynamic.qsc.de] has quit [Ping timeout: 480 seconds] 21:24:30 <frosch123> night 21:24:34 *** frosch123 [~frosch@frnk-590fc187.pool.mediaWays.net] has quit [Quit: be yourself, except: if you have the opportunity to be a unicorn, then be a unicorn] 21:47:57 *** sla_ro|master [slamaster@85.186.160.35] has quit [] 21:59:53 *** Progman [~progman@p57A1897E.dip0.t-ipconnect.de] has quit [Remote host closed the connection] 22:07:47 *** LordAro [~LordAro@host86-165-39-164.range86-165.btcentralplus.com] has quit [Ping timeout: 480 seconds] 22:11:31 *** Midnightmyth [~quassel@93-167-84-102-static.dk.customer.tdc.net] has quit [Ping timeout: 480 seconds] 22:27:48 <Wolf01> 'night 22:27:53 *** Wolf01 [~wolf01@0001288e.user.oftc.net] has quit [Quit: Once again the world is quick to bury me.] 22:41:29 <Eddi|zuHause> is that just me or is the forum awfully slow today? 22:41:41 <krinn> awfully slow here too 22:50:10 *** Devroush [~dennis@dD5765BAC.access.telenet.be] has quit [] 22:54:55 *** wakou2 [~stephen@host86-182-193-134.range86-182.btcentralplus.com] has quit [Quit: Konversation terminated!] 23:07:54 *** valhalla1w [~valhallas@5070A0D5.static.ziggozakelijk.nl] has joined #openttd 23:08:37 *** Ristovski [~rafael@ppp-seco11pa2-46-193-128.78.wb.wifirst.net] has quit [Quit: Leaving] 23:09:37 *** valhallasw [~valhallas@5070A0D5.static.ziggozakelijk.nl] has quit [Ping timeout: 480 seconds] 23:11:21 *** Pereba [~UserNick@177.41.233.224] has quit [Quit: AdiIRC cracked full version at www.adiirc.com] 23:19:42 *** pugi [~pugi@dyndsl-095-033-153-225.ewe-ip-backbone.de] has quit [] 23:24:22 *** Chrill [~chrischri@c83-253-81-174.bredband.comhem.se] has joined #openttd 23:25:21 *** frodus [~frodus_de@static243-243-8.mimer.net] has quit [Read error: Connection reset by peer] 23:33:50 *** roboboy [~robotboy@0001164c.user.oftc.net] has joined #openttd 23:43:06 *** amiller [~amiller@proxy00.umiacs.umd.edu] has quit [Ping timeout: 480 seconds] 23:54:30 *** megakacktus [~debussy@174-30-204-96.mpls.qwest.net] has quit [Read error: Operation timed out]