00:03:42 -!- CKyle has quit [Quit: My MacBook has gone to sleep. ZZZzzz…] 00:05:16 -!- Cacophony has quit [Quit: oh no am scare] 00:07:05 -!- vale_ is now known as vale 00:07:42 -!- rast has joined ##crawl-dev 00:14:01 -!- mizu_no_oto has quit [Quit: Computer has gone to sleep.] 00:15:03 alright so in lua 00:15:04 you.turn_is_over() 00:15:17 -!- Pacra has quit [Ping timeout: 246 seconds] 00:15:44 if you crawl.process_keys("j") 00:15:55 if you move down, then the turn will be over 00:16:01 if you run into a wall, then the turn won't be over 00:16:30 that makes sense... but if you... 00:16:35 crawl.process_keys("o") 00:16:44 then the turn won't be over! 00:16:46 even though you've moved 00:16:48 I don't understand 00:17:46 -!- CanOfWorms has joined ##crawl-dev 00:18:34 -!- ussdefiant has joined ##crawl-dev 00:22:16 guess: it puts you at the start of a new turn, not the same turn you started out on 00:24:37 -!- foophykins has quit [Quit: Page closed] 00:25:22 chequers: when I try o then j I get: Cannot currently process new keys (travel delay active) 00:25:39 maybe there is a you.travel_delay_active() 00:25:42 heh 00:25:46 haha (none of this is documented anywhere :( ) 00:26:23 <|amethyst> o is a delay, since it takes multiple turns to do 00:26:24 holy crap! documentation!!! 00:26:25 https://github.com/crawl/crawl/blob/master/crawl-ref/docs/develop/levels/advanced.txt#L864 00:26:38 |amethyst: so how in lua, might I check if there's currently a delay? 00:26:48 -!- st_ has quit [] 00:27:05 Unstable branch on CRAWL.XTAHUA.COM updated to: 0.17-a0-1479-g4041c36 (34) 00:27:12 <|amethyst> hm, I don't think there's currently a way 00:27:47 <|amethyst> sounds like you could check whether your turn is over after doing process_keys 00:27:54 |amethyst: basically I want to o, then see if it did anything or not 00:28:27 it seems I can do that with any other command though turn_is_over 00:30:15 <|amethyst> hm 00:31:22 I tried checking you.turns(), but auto exploer happens kidna asyncronously 00:31:31 <|amethyst> right 00:31:33 along with other actions to 00:31:56 <|amethyst> any multi-turn action will work that way 00:32:08 <|amethyst> hm 00:32:08 so, you.turns() ; process_keys("o") ; you.turns() will give teh same turn both times 00:32:32 <|amethyst> right... process_keys("o") says "start travelling", but starting to travel doesn't take time 00:32:46 <|amethyst> it doesn't take the first step until the next iteration of _input 00:33:09 <|amethyst> I guess adding a way to check for travel/running might work 00:33:36 amalloy_: even if it doesn't haev anythign to explore, it will still give "travel delay active" if you try to o then j 00:34:53 <|amethyst> yeah, finished exploring is checked on each turn of the delay 00:34:54 <|amethyst> hmm 00:35:19 <|amethyst> the problem with just making a clua call to ask if you are delayed is that it would probably not interact well with DELAY_MACRO 00:36:25 <|amethyst> and it sounds like that won't help you a lot anyway, because of the finished exploring thing 00:36:40 <|amethyst> you could wait until the next call to ready() and check if the turn count has changed 00:36:51 oh hmm 00:36:58 <|amethyst> but that's kind of painful to do 00:37:04 that was the missing piece... 00:37:17 so ready() isn't just a function that qw defined 00:37:22 it's another overwritten fucntion 00:37:31 -!- BOTBrad_ has quit [Ping timeout: 264 seconds] 00:37:44 what is ready()? 00:37:46 <|amethyst> the clua() ready function, if it exists, is called by crawl every time it is ready for user input 00:38:05 ohhh! 00:38:09 is that documented anywhere? 00:38:58 <|amethyst> probably not... our lua documentation is quite lacking 00:39:27 alright it's fine 00:39:43 if such a function exists, then there's probably a way for me to do this 00:42:53 <|amethyst> hmm 00:44:16 <|amethyst> it's probably possible to use coroutines to allow bots to actually have their own "game loop" 00:44:35 <|amethyst> which might simplify things compared to trying to manually remember state across calls to ready 00:45:53 |amethyst: ok now I'm getting a tad confused 00:46:02 -!- tabstorm has quit [Ping timeout: 246 seconds] 00:46:11 -!- giantbat has quit [Quit: Leaving] 00:46:22 <|amethyst> don't worry about the coroutine thing, that was just my idle musing 00:46:28 -!- TonyMeatballs has quit [Quit: Leaving] 00:47:02 -!- brad__ is now known as BOTBrad_ 00:47:06 |amethyst: does ready run asyncronously? Like lets say put put "wait 5 seconds" in a function, would ready still run ? 00:47:40 <|amethyst> nothing runs asynchronously 00:47:51 basically I want to: "o" then "wait to hear back from ready" then "continue" 00:48:13 -!- ZoloftElf has joined ##crawl-dev 00:48:55 -!- ZoloftElf is now known as ProzacElf_ 00:49:30 <|amethyst> the straightforward approach is to set some global variable and send "o"; and have ready() check the variable and, if it is set, do the rest of the stuff 00:49:37 <|amethyst> "straightforward" 00:51:27 <|amethyst> the other way would be with a coroutine: you'd send the "o" then call coroutine.yield(); then in ready call coroutine.resume(co) 00:51:44 <|amethyst> which will restart the function just after the yield 00:51:48 |amethyst: I think I see how to have a ready loop. basically ready will: First: report if the PREVIOUS command was "sucsesful". Second: run a command from the "command buffer" if one exists 00:51:59 |amethyst: no need to mess with corotinues under this way 00:52:14 -!- Gorgo_ has quit [Quit: Leaving.] 00:53:00 but it's a counter inturative approach that's makign my head hurt u_u 00:56:43 -!- Xenobreeder_ has joined ##crawl-dev 00:58:52 -!- Xenobreeder has quit [Ping timeout: 246 seconds] 00:59:23 ok here's how I think it will be 00:59:48 so I have this main event loop, it tries to rest, if it can't rest it tries to relax, if it can't relax it tries to explore etc 01:00:22 <|amethyst> "relax"? 01:00:33 |amethyst: yeah like memorizing spells, quaff iding, etc, anyways though 01:01:01 when it tries something that requires key presses, what it should do is 01:01:13 basically exit, but remember where in the loop it was with a global 01:01:22 <|amethyst> that's what coroutines are 01:01:52 <|amethyst> but it may be simple enough to simulate them like that with a global 01:01:54 oh haha 01:01:57 well 01:02:09 coroutines are a thing in lua 01:02:11 so maybe why not 01:02:31 <|amethyst> (disclaimer: I have not written any crawl bots :) 01:02:49 neither have i really but 01:02:58 i think you're right, it would be easier to do with a coroutine 01:03:14 and ready would basically run main_loop.resume() 01:06:47 |amethyst: coroutine.yield is non blocking right? 01:06:58 so after I run yield, ready will be able to run (and resume it) right? 01:07:05 (well I guess i'll find out in a few minutes) 01:07:10 <|amethyst> coroutine.yield() "returns" from the function 01:07:25 <|amethyst> ("suspends the coroutine") 01:07:57 <|amethyst> so it will go back to whoever called resume 01:08:12 <|amethyst> ready() has to return before crawl will keep going 01:08:16 -!- jspengler has quit [] 01:08:20 -!- Foamed has quit [Quit: Leaving] 01:09:01 <|amethyst> (or, if not ready(), then whatever function it was that crawl called... that probably won't be your coroutine directly, but a helper that resumes the coroutine) 01:09:34 -!- giantbat has quit [Read error: Connection reset by peer] 01:10:02 -!- ussdefiant has quit [Read error: Connection reset by peer] 01:10:31 -!- ussdefiant has joined ##crawl-dev 01:10:32 |amethyst: hmm alright, then function hit_closest() needs to ~~~return~~~ before ready() can be run 01:10:43 Unstable branch on crawl.s-z.org updated to: 0.17-a0-1479-g4041c36 (34) 01:12:02 <|amethyst> yes 01:12:05 <|amethyst> crawl is single-threaded 01:12:36 -!- Daekdroom has quit [Ping timeout: 252 seconds] 01:12:57 -!- nixor has quit [Ping timeout: 265 seconds] 01:13:42 |amethyst: in that case, hit_closest() would just call main_loop.resume(), and main_loop would be a coroutine that just ran forever 01:18:23 <|amethyst> why hit_closest? 01:18:43 -!- Idolo has quit [] 01:19:04 <|amethyst> hit_closest is called when you press tab 01:19:22 Unstable branch on crawl.develz.org updated to: 0.17-a0-1479-g4041c36 (34) 01:19:57 <|amethyst> so that would mean each time you press tab, it does the next iteration of main_loop.resume() 01:20:04 <|amethyst> err, of main_loop 01:21:38 HiaWG (L9 DDWr) ASSERT(item.base_type == OBJ_CORPSES) in 'butcher.cc' at line 348 failed. (D:8) 01:23:31 |amethyst: anyways i think i've figured out how to do this, brb programming 01:31:55 -!- coledot has quit [Quit: coledot] 01:41:11 -!- ZChris13 has quit [Remote host closed the connection] 01:41:13 -!- Andygal has quit [] 01:43:04 -!- BOTBrad_ has quit [Quit: WeeChat 0.4.2] 01:44:31 -!- rax has quit [Ping timeout: 252 seconds] 01:45:12 -!- rax has joined ##crawl-dev 01:47:27 -!- rossi has quit [Ping timeout: 252 seconds] 01:47:43 -!- BOTBrad has quit [Ping timeout: 264 seconds] 01:50:18 -!- Kalir has quit [Quit: CADENZA-CLASS CLOCKWORK KNIGHT--OPERATION TERMINATED] 01:52:12 -!- tcsc has quit [Quit: This computer has gone to sleep] 01:53:29 -!- TangoBravo has quit [Quit: Page closed] 01:54:01 Windows builds of master branch on crawl.develz.org updated to: 0.17-a0-1479-g4041c36 01:56:48 -!- twzt has quit [Ping timeout: 252 seconds] 01:57:05 YES! Old turn: 4544 ; Done exploring. ; New turn: 4544 01:57:50 Old turn: 4569 ; There is an open door here. ; An iguana comes into view. ; New turn: 4571 01:58:32 Old turn: 4571 ; An iguana is nearby! ; New turn: 4571 :D:D:D 02:03:43 ? 02:04:57 I'm just happy my coroutine thingy in my bot is working 02:07:07 -!- Moonsilence has quit [Ping timeout: 272 seconds] 02:13:23 -!- Krakhan has quit [Ping timeout: 265 seconds] 02:14:23 -!- amalloy_ is now known as amalloy 02:20:06 boy i was confused about that ping from scwizard until i figured out he meant amethyst 02:20:47 -!- HellTiger has quit [Ping timeout: 256 seconds] 02:22:28 -!- dtsund has quit [Quit: dtsund] 02:35:41 -!- bitcoinbastard has quit [Ping timeout: 250 seconds] 02:44:24 -!- Krakhan has quit [Changing host] 02:47:11 PS gammafunk i appreciate the TLA in this game. last time finding out it was already in elf:$ was a little underwhelming 02:47:12 amalloy: tabbing is hard 02:47:25 amalloy: people tell me I need to enable smart tabbing in irssi, but I haven't been bothered so far 02:47:32 https://github.com/paulcdejean/cb/commit/2541c045a96acf7e1c13c94bb8979d70e725244f 02:47:43 because the bot needs to be all one file, i added a table of contents haha 02:48:47 -!- Krakhan has quit [Ping timeout: 248 seconds] 02:51:02 Monster database of master branch on crawl.develz.org updated to: 0.17-a0-1479-g4041c36 02:51:09 amalloy: yeah, funny thing is that the moon troll itself benefits so little from it 02:51:12 basically just the ac 02:51:31 which is no small benefit really, but the gspirit does nothing nor does the extra regen I think 02:51:36 latter thing could be fixed 02:51:44 i wanna continue this but I have to work now :( 02:51:49 life sux 02:54:14 -!- simmarine has quit [Quit: Leaving] 02:56:15 -!- GauHelldragon2 has quit [Ping timeout: 248 seconds] 02:57:18 -!- SwissStopwatch has quit [Ping timeout: 252 seconds] 02:57:40 -!- Guest49820 is now known as SwissStopwatch 02:59:16 i just noticed that lurking horrors don't show up on the monster list, and x= doesn't target them either. is this an unintended consequence of a giant-spore change? 03:00:50 oh yeah, probably because they don't grant xp 03:01:00 -!- Akitten_Homura has quit [Quit: Connection reset by pier.] 03:09:55 -!- Cheibriados has quit [Ping timeout: 250 seconds] 03:12:51 -!- Cheibriados has joined ##crawl-dev 03:12:51 -!- The topic of ##crawl-dev is: Crawl Development | Logs: http://s-z.org/crawl-dev/ | People with +v have commit access. | Please keep general Crawl-related chat to ##crawl. | Dev wiki: http://crawl.develz.org/wiki | Long stuff to a pastebin service, please. 03:12:51 -!- The topic of ##crawl is: Play Dungeon Crawl Stone Soup online now! Type ??servers for instructions. | http://crawl.develz.org | FooTV: http://termcast.develz.org - ??footv for instructions | See also ##crawl-offtopic | 0.16 Tournament: http://dobrazupa.org/tournament/0.16/ 03:15:47 amalloy: yeah that's a bug, and I know vaguely where the offending code is 03:16:17 cool. i'll accept my two torments as a public service, the price of progress 03:18:34 -!- scummos__ has quit [Ping timeout: 244 seconds] 03:19:48 yeah it's get_monster_info() 03:19:54 if (mons_class_gives_xp(mon->type) 03:19:55 || mon->is_child_tentacle() 03:19:55 || mons_is_active_ballisto(mon)) 03:19:55 { 03:19:55 mons.emplace_back(mon); 03:21:21 I guess just add || !mon->wont_attack() 03:21:41 <|amethyst> then you get plants etc don't you? 03:21:44 -!- zhaorenw has quit [Quit: Leaving] 03:21:46 yeah 03:21:51 I thought wont_attack 03:21:57 meant doesn't have an attack, but even then! 03:22:16 <|amethyst> wont_attack is purely about alignment 03:22:19 <|amethyst> no-xp used to mean "this monster isn't a threat" 03:22:20 yep 03:22:28 Unstable branch on crawl.beRotato.org updated to: 0.17-a0-1479-g4041c36 (34) 03:22:54 <|amethyst> now it means something like "this monster isn't a threat, or it can self-destruct and isn't ball lightning" 03:22:58 I think there were always exceptions to that? 03:23:21 <|amethyst> ah, true... twister 03:23:46 <|amethyst> (and tentacles of course) 03:23:52 yeah 03:24:14 hrm, so this list does include friendlies, doesn't it 03:24:30 <|amethyst> yes 03:24:35 so I guess nothing about alignment will work here 03:24:59 <|amethyst> even ignoring that, how would alignment solve anything? 03:25:23 -!- WalrusKing has quit [Ping timeout: 265 seconds] 03:25:51 <|amethyst> oh 03:26:02 <|amethyst> does targetting skip lurking horrors now? 03:26:13 does it use get_monster_info? 03:26:25 if so, then yes 03:26:36 <|amethyst> it does not, but 03:27:04 <|amethyst> _mons_is_valid_target returns false if it's not worth XP (and isn't an active ballisto) 03:27:18 <|amethyst> hm, it seems that is the case 03:27:20 yeah, I guess we need to generalize "active ballisto" in some sense 03:27:39 <|amethyst> we could remove all the relevant monsters 03:27:44 mons_is_no_xp_threat()..but it just feels like a bad thing 03:27:45 <|amethyst> if they're not worth XP 03:27:59 remove lurking horrors? 03:28:04 <|amethyst> and plants 03:28:16 <|amethyst> not really remove exactly 03:28:22 <|amethyst> but turn them into features or something 03:28:26 when you say remove, are you saying have a special..oh 03:28:47 not sure that works for things like giant spores and lurking horrors 03:28:53 not to mention what about tentacles 03:29:25 <|amethyst> hm 03:29:34 well I guess I'm confused as to exactly how it would work, but I'm certain open to any simplification that makes it not so confusing to use the no xp flag 03:29:34 <|amethyst> there's also something in mon-behv.cc 03:31:12 <|amethyst> monsters of no-xp monster classes don't respond to ME_WHACK and ME_ANNOY 03:31:47 <|amethyst> they don't show up as being asleep, unaware, wandering, etc 03:31:55 -!- kazimuth has quit [Quit: Textual IRC Client: www.textualapp.com] 03:33:16 <|amethyst> they are allowed to be in LOS of a starting player 03:33:48 <|amethyst> they don't get name tags 03:33:57 anyway, yes, x= does skip lurking horrors now, in case that wasn't covered 03:34:30 no name tags? Must awkward for them at the Dungeon Socials 03:34:39 <|amethyst> they get HALO_RANGE instead of HALO_MONSTER 03:34:55 <|amethyst> they don't interrupt travel etc 03:35:19 <|amethyst> they can't be stabbed 03:35:35 <|amethyst> they don't flounder 03:35:36 yeah after doing all the gives-xp-test consolidation, the meaning of no xp didn't seem terribly clear 03:35:51 <|amethyst> I think that's everything 03:35:59 <|amethyst> other than the obvious "no reward" stuff 03:36:29 most of that sounds like firewood related stuff 03:36:33 -!- rossi has quit [Ping timeout: 246 seconds] 03:36:42 or stuff relevant only to firewood 03:36:43 <|amethyst> butterflies 03:37:00 yeah, firewood and butterflies 03:37:46 <|amethyst> I would suggest: 1. rename M_NO_EXP_GAIN to M_NO_THREAT 03:37:49 would splitting no xp into M_HARMLESS and M_N..yes 03:38:22 <|amethyst> 2. switch several monsters (twister, servitor, exploders) back to a new M_NO_EXP_GAIN 03:38:58 <|amethyst> (1.5. also rename mons_class_gives_xp) 03:39:21 but is it bad if M_NO_EXP_GAIN and M_NO_THREAT can both be set? 03:39:31 since I assume the latter should always imply the former 03:39:38 maybe monster flags don't work that way 03:40:11 <|amethyst> I guess you could make M_NO_THREAT be M_NO_EXP_GAIN | M_IGNORE_THIS_MONSTER 03:41:38 I will defer to your better understanding of flags, semophors, and symbols. 03:42:25 regarding renaming mons_class_gives_xp, I'm not sure if that's only used in the context of is a threat or not 03:43:32 like in _lost_soul_affectable 03:45:06 -!- CanOfWorms has quit [Quit: ChatZilla 0.9.91.1 [Firefox 3.6.28/20120306064154]] 03:45:53 -!- bonghitz_ has quit [Quit: Leaving...] 03:46:03 -!- Tux[Qyou] has joined ##crawl-dev 03:46:14 -!- amalloy is now known as amalloy_ 03:53:10 -!- Quazifuji has quit [Ping timeout: 246 seconds] 03:53:31 -!- mopl has quit [Ping timeout: 246 seconds] 03:55:48 -!- zxc232 has joined ##crawl-dev 04:09:28 -!- jeanjacques has joined ##crawl-dev 04:12:45 -!- SwissStopwatch has quit [] 04:14:10 -!- Torax_ has quit [Ping timeout: 246 seconds] 04:15:05 -!- amalloy_ is now known as amalloy 04:22:21 -!- ktgrey has quit [Ping timeout: 246 seconds] 04:34:28 -!- ussdefiant has quit [Ping timeout: 276 seconds] 04:34:31 -!- CacoS has quit [Ping timeout: 244 seconds] 04:41:40 -!- Patashu has joined ##crawl-dev 04:59:13 -!- zxc232 has quit [Read error: Connection reset by peer] 05:00:12 -!- zxc232 has joined ##crawl-dev 05:03:10 -!- mibe has quit [Quit: Page closed] 05:23:15 -!- ProzacElf_ has quit [Ping timeout: 256 seconds] 05:25:37 -!- Wolfechu has quit [Ping timeout: 264 seconds] 05:48:47 -!- debo has joined ##crawl-dev 06:04:55 -!- amalloy is now known as amalloy_ 06:07:26 -!- Twinge has quit [Ping timeout: 256 seconds] 06:07:52 -!- Twinge has joined ##crawl-dev 06:09:10 -!- Twiggytwiggytwig has quit [Quit: See ya guys later ;)] 06:20:00 -!- Torax_ has quit [Client Quit] 06:21:08 -!- debo_ has joined ##crawl-dev 06:23:36 -!- debo has quit [Ping timeout: 250 seconds] 06:23:58 -!- Torax_ has quit [Changing host] 06:28:57 -!- vale has quit [Remote host closed the connection] 06:38:26 -!- CcS has quit [Ping timeout: 256 seconds] 06:40:13 -!- vale has quit [Ping timeout: 246 seconds] 06:48:23 -!- st_ has joined ##crawl-dev 06:49:39 -!- oyster has quit [Quit: Page closed] 06:49:54 -!- Xenobreeder_ has quit [Ping timeout: 246 seconds] 07:01:16 -!- PsiRedEye22 has quit [Read error: Connection reset by peer] 07:04:51 -!- siepu has quit [Ping timeout: 244 seconds] 07:06:41 -!- debo_ is now known as debo 07:14:02 -!- nerburger has quit [Client Quit] 07:19:04 <|amethyst> So, when are we getting quality standards? 07:23:19 -!- siepu has quit [Ping timeout: 246 seconds] 07:27:58 -!- Ququman has joined ##crawl-dev 07:32:57 -!- Xenobreeder has joined ##crawl-dev 07:36:34 -!- siepu has quit [Client Quit] 07:40:18 -!- CacoS has quit [Quit: Bye] 07:41:21 -!- vale has quit [Ping timeout: 256 seconds] 07:56:55 -!- Lasty has joined ##crawl-dev 07:57:05 -!- xcourier has quit [Quit: xcourier] 08:04:43 -!- __miek has quit [Ping timeout: 252 seconds] 08:17:53 -!- tcjsavannah has quit [Quit: tcjsavannah] 08:28:03 -!- Lasty has quit [Quit: Leaving.] 08:33:43 -!- xcourier has quit [Changing host] 08:37:47 -!- copt has quit [] 08:43:34 -!- vale has quit [Ping timeout: 250 seconds] 08:44:48 -!- Cerpin has quit [Ping timeout: 264 seconds] 08:52:36 -!- UncertainKitten has joined ##crawl-dev 08:52:56 -!- Cerpin has joined ##crawl-dev 08:54:00 -!- Pacra has joined ##crawl-dev 08:56:03 -!- bonghitz has quit [Remote host closed the connection] 08:58:53 "bool player::can_smell() const" - what does this do??? 09:02:12 -!- BanMido has quit [Ping timeout: 246 seconds] 09:02:57 -!- rossi has quit [Ping timeout: 256 seconds] 09:03:46 -!- tcjsavannah has quit [Quit: tcjsavannah] 09:08:58 -!- debo has quit [Ping timeout: 246 seconds] 09:10:43 Floodkiller_: my recollection is that it's used cosmetically for messages. Mummies can't smell. 09:10:43 bh: You have 1 message. Use !messages to read it. 09:12:02 I'm trying to figure out what messages relate to smell 09:12:21 there's a xom or random uselessness thing about rotten eggs 09:12:40 ah 09:12:40 (or both for all I know) 09:13:57 oh at least random uselessness can make you smell all kinds of stuff 09:14:42 -!- xcourier has quit [Quit: xcourier] 09:15:53 miscasts also have smelly things 09:16:00 -!- HellTiger has quit [Ping timeout: 264 seconds] 09:18:47 -!- Pacra has quit [Ping timeout: 252 seconds] 09:26:00 -!- mamgar has quit [Read error: Connection reset by peer] 09:26:24 also should octopodes be able to do an impromptu tapdance 09:26:53 I'd imagine it more as a flopdance 09:38:12 -!- xcourier has quit [Client Quit] 09:44:47 -!- vale has quit [Ping timeout: 265 seconds] 09:45:21 -!- xcourier has quit [Remote host closed the connection] 09:48:34 -!- debo has joined ##crawl-dev 09:52:42 -!- CKyle has joined ##crawl-dev 09:55:45 -!- feamirim has quit [Ping timeout: 246 seconds] 10:01:38 -!- Lasty has joined ##crawl-dev 10:03:25 -!- Patashu has quit [Ping timeout: 264 seconds] 10:04:12 -!- UncertainKitten has quit [Quit: Connection reset by pier.] 10:08:52 -!- sinusoidal has quit [Quit: Page closed] 10:15:52 -!- agentgt_ has quit [Client Quit] 10:23:04 -!- tcjsavannah has quit [Quit: tcjsavannah] 10:39:29 -!- walterch has quit [Read error: Connection reset by peer] 10:41:11 -!- clouded_ has joined ##crawl-dev 10:41:23 -!- st_ has quit [Read error: Connection reset by peer] 10:45:40 -!- vale has quit [Ping timeout: 256 seconds] 10:50:15 Is there are list of the various lua funcs that are overridable? 10:50:23 -!- siepu has quit [Quit: Leaving] 10:50:35 I know about hit_closest() and ready() 10:50:40 but apparently there is also choose_stat_gain() 10:55:06 -!- Pacra has joined ##crawl-dev 10:55:14 -!- muravey has joined ##crawl-dev 11:03:02 -!- Lasty has quit [Quit: Leaving.] 11:03:24 -!- Lasty has joined ##crawl-dev 11:03:46 -!- rossi has quit [Ping timeout: 246 seconds] 11:05:41 -!- Tpain is now known as zhaorenw 11:11:18 -!- clouded_ has quit [Read error: Connection reset by peer] 11:11:19 -!- st_ has joined ##crawl-dev 11:17:24 -!- minqmay has quit [Ping timeout: 256 seconds] 11:17:48 -!- minmay has quit [Ping timeout: 264 seconds] 11:23:20 -!- tealeaves has quit [Quit: Bye] 11:23:24 is there any way what so ever to have auto explore do something while you're starving? 11:23:31 like a "force autoexplore" 11:24:36 in a situation where you are starving and you have no permafood and there's no corpses in the dungeon, you would want to explore until you found food right? 11:30:44 ok apparently not bleh 11:31:03 i guess it is possible to get stuck then in theory :( 11:35:32 -!- tealeaves has quit [Quit: Bye] 11:43:54 -!- WalrusKing has joined ##crawl-dev 11:44:11 -!- xcourier has quit [Quit: xcourier] 11:45:45 -!- tealeaves has quit [Quit: Bye] 11:46:23 -!- vale has quit [Ping timeout: 252 seconds] 11:49:05 -!- Twiggytwiggytwig has quit [Quit: See ya guys later ;)] 11:49:09 -!- Waladil has quit [Ping timeout: 246 seconds] 11:50:40 -!- endou___________ has quit [] 11:57:34 -!- murphy_slaw_ is now known as murphy_slaw 11:59:12 -!- SurpriseTRex has quit [Quit: Leaving] 11:59:33 -!- ussdefiant has joined ##crawl-dev 12:02:59 -!- radinms has quit [] 12:04:21 -!- MarvinPA has joined ##crawl-dev 12:04:23 -!- mopl has quit [Quit: Page closed] 12:16:26 -!- xcourier has quit [Quit: xcourier] 12:22:36 -!- UncertainKitten has joined ##crawl-dev 12:23:51 -!- Fizybubbleh has quit [Quit: http://www.kiwiirc.com/ - A hand crafted IRC client] 12:28:54 -!- WalrusKing has quit [Ping timeout: 250 seconds] 12:32:46 -!- Cacophony has quit [Ping timeout: 248 seconds] 12:33:33 does ru still offer the MR- sacrifice? 12:33:44 -!- Cacophony has quit [Changing host] 12:34:53 I've used wizard mode to abandon him multiple times and still haven't had it come up, and I want to test an interaction with it 12:42:11 sigh. the folks who run /r/dcss disabled it and this has made people on /r/roguelikes sad 12:47:29 -!- vale has quit [Ping timeout: 265 seconds] 12:48:25 it's because of this reddit protest 12:50:44 well, yes. but this doesn't help confused people on /r/roguelikes 12:50:59 reddit protest? 12:53:02 -!- Cacophony has quit [Ping timeout: 248 seconds] 12:53:17 the employee who runs ask me anything got fired suddenly, so AMA shut down because they couldn't operate 12:53:40 other subs have gone dark in solidarity 12:55:51 huh 12:55:56 thanks for the explanation! 12:57:36 -!- tealeaves has quit [Quit: Bye] 12:58:51 -!- ussdefiant has quit [Ping timeout: 276 seconds] 12:59:33 I've been replying to the threads directing people to the tavern 13:02:43 -!- xcourier has quit [Quit: xcourier] 13:03:24 -!- rossi has quit [Ping timeout: 264 seconds] 13:04:22 <|amethyst> and ophanim just opened up the subreddit 13:04:52 Unstable branch on crawl.akrasiac.org updated to: 0.17-a0-1479-g4041c36 (34) 13:04:58 -!- tealeaves has quit [Quit: Bye] 13:07:16 -!- tealeaves has quit [Client Quit] 13:07:23 <|amethyst> !seen ophanim 13:07:23 I last saw ophanim at Sat Jun 27 22:09:01 2015 UTC (5d 18h 58m 22s ago) parting ##crawl, saying 'chanpart'. 13:08:42 okay, I'm not insane and the MR- sacrifice is still in the game 13:08:50 it just isn't appearing then, probably because of the change I made 13:09:18 -!- tealeaves has quit [Client Quit] 13:09:37 -!- joke_LA has quit [Read error: Connection reset by peer] 13:12:51 -!- tealeaves has quit [Client Quit] 13:14:17 -!- Ladykiller69 has quit [Quit: Verlassend] 13:20:15 -!- Gorgo has quit [Remote host closed the connection] 13:20:36 -!- amalloy_ is now known as amalloy 13:22:29 -!- giantbat has quit [Ping timeout: 256 seconds] 13:22:29 -!- Foamed has quit [Ping timeout: 256 seconds] 13:22:32 -!- argent0 has quit [Ping timeout: 244 seconds] 13:24:51 -!- minmay has joined ##crawl-dev 13:25:38 -!- MarvinPA has quit [Ping timeout: 244 seconds] 13:28:59 fwiw https://www.reddit.com/r/OutOfTheLoop/comments/3bxduw/why_was_riama_along_with_a_number_of_other_large/ more on the reddit blackout 13:30:33 -!- simmarine has joined ##crawl-dev 13:30:47 tl;dr volunteer moderators (which is basically most of the people maintaining reddit) are fed up with reddit's administration 13:31:13 yep 13:31:38 -!- Kalir has quit [Changing host] 13:36:05 -!- tabstorm has quit [Ping timeout: 246 seconds] 13:38:54 -!- joke_LA has quit [Ping timeout: 248 seconds] 13:39:52 -!- MgDark has quit [Ping timeout: 252 seconds] 13:39:54 -!- MgDark_ is now known as MgDark 13:40:03 -!- joke_LA has quit [Read error: Connection reset by peer] 13:43:15 -!- joke_LA has quit [Read error: Connection reset by peer] 13:44:07 -!- emikaela has quit [Quit: Page closed] 13:45:08 <|amethyst> I like how the protest is about communication, transparency, and responsiveness to community, so ophanim shuts down his subreddit without consulting or informing its community, then brings it back, all without any explanation. 13:46:22 -!- GauHelldragon2 has quit [Ping timeout: 248 seconds] 13:47:43 -!- Twiggytwiggytwig has quit [Quit: See ya guys later ;)] 13:47:48 -!- vale has quit [Ping timeout: 264 seconds] 13:48:02 -!- Pacra_ has joined ##crawl-dev 13:48:50 -!- Pacra has quit [Read error: Connection reset by peer] 13:54:15 -!- rast has quit [Remote host closed the connection] 14:02:35 -!- joke_LA has quit [Read error: Connection reset by peer] 14:03:14 -!- giantbatt has quit [Quit: Leaving] 14:04:40 -!- rossi has quit [Ping timeout: 250 seconds] 14:06:09 -!- Kramin has quit [Remote host closed the connection] 14:06:10 -!- joke_LA has quit [Read error: Connection reset by peer] 14:08:18 -!- Kramin has joined ##crawl-dev 14:08:34 -!- Kramin has quit [Remote host closed the connection] 14:12:02 -!- Foamed_ has quit [Quit: Leaving] 14:13:06 -!- ProzacElf_ has joined ##crawl-dev 14:16:03 -!- Kramin has joined ##crawl-dev 14:16:09 -!- Kramin has quit [Remote host closed the connection] 14:16:29 -!- Kramin has joined ##crawl-dev 14:16:44 -!- Kramin has quit [Remote host closed the connection] 14:17:14 -!- Kramin has joined ##crawl-dev 14:17:24 -!- MarvinPA has joined ##crawl-dev 14:17:42 -!- Kramin has quit [Remote host closed the connection] 14:18:41 -!- Kramin has joined ##crawl-dev 14:18:54 -!- Kramin has quit [Client Quit] 14:22:57 -!- wheals has joined ##crawl-dev 14:23:30 -!- Bcadren has quit [Ping timeout: 252 seconds] 14:24:15 -!- Zekka has quit [Ping timeout: 256 seconds] 14:26:06 -!- joke_LA has quit [Ping timeout: 256 seconds] 14:27:27 -!- Fizybubbleh has quit [Quit: http://www.kiwiirc.com/ - A hand crafted IRC client] 14:30:28 -!- Idolo has quit [Ping timeout: 252 seconds] 14:31:41 -!- Foamed has quit [Quit: Leaving] 14:32:19 Geryon 13https://crawl.develz.org/mantis/view.php?id=9835 by white_noise 14:32:42 Geryon himself is the bug 14:32:55 -!- amalloy is now known as amalloy_ 14:32:57 <|amethyst> FR: giant insect unique 14:33:05 -!- joke_LA has quit [Read error: Connection reset by peer] 14:33:18 formicid? 14:33:24 we already have one, maurice 14:33:25 @??formicid 14:33:25 formicid (03a) | Spd: 10 | HD: 6 | HP: 29-55 | AC/EV: 3/10 | Dam: 15 | 10weapons, 10items, 10doors, see invisible | Res: 06magic(40) | XP: 225 | Sz: Medium | Int: human. 14:33:31 <|amethyst> mothra of wrath 14:33:58 :-) 14:34:06 !tell ontoclasm https://crawl.develz.org/mantis/view.php?id=9835 is an attempt to make a new Geryon tile 14:34:06 gammafunk: OK, I'll let ontoclasm know. 14:34:13 |amethyst++ 14:34:29 please no, we've barely learned the |amethyst language! 14:34:49 -!- joke_LA has quit [Read error: Connection reset by peer] 14:34:54 gammafunk: LOL 14:34:57 Well played 14:35:25 -!- |amethyst is now known as }bnfuiztu 14:36:04 rot13thyst 14:36:25 -!- }bnfuiztu is now known as |nzrgulfg 14:38:21 -!- joke_LA has quit [Read error: Connection reset by peer] 14:38:47 -!- Kramin has joined ##crawl-dev 14:39:24 !lg * ckiller=pandemonium_lord killer=nzrgulfg 14:39:25 No games for * (ckiller=pandemonium_lord killer=nzrgulfg). 14:39:45 -!- Kramin has quit [Client Quit] 14:40:50 -!- Gurmil has quit [Ping timeout: 246 seconds] 14:41:18 -!- joke_LA has quit [Read error: Connection reset by peer] 14:42:28 Give mummies Magic Resistance 1, reduce MR gain per level (5 to 3) 13https://crawl.develz.org/mantis/view.php?id=9836 by Floodkiller 14:43:58 -!- joke_LA has quit [Read error: Connection reset by peer] 14:45:55 -!- Zooty has quit [Ping timeout: 246 seconds] 14:47:16 -!- mauris has quit [Ping timeout: 244 seconds] 14:48:46 -!- vale_ has quit [Ping timeout: 248 seconds] 14:51:27 -!- zhaorenw has quit [Ping timeout: 256 seconds] 14:52:23 -!- Yllodra has quit [Ping timeout: 246 seconds] 14:54:40 -!- ProzacElf_ has quit [Ping timeout: 252 seconds] 15:05:28 pblur (L10 OpTm) ASSERT(item.base_type == OBJ_CORPSES) in 'butcher.cc' at line 348 failed. (D:9) 15:06:20 -!- pouledodue has quit [Quit: Textual IRC Client: www.textualapp.com] 15:08:27 @??polymetheus 15:08:27 unknown monster: "polymetheus" 15:08:43 @??polyphemus 15:08:43 Polyphemus (03C) | Spd: 10 | HD: 16 | HP: 150 | AC/EV: 10/3 | Dam: 45, 30 | 10items, 10doors | Res: 06magic(60), 12drown | XP: 2282 | Sp: throw ally [11!AM, 06!sil] | Sz: Giant | Int: human. 15:09:17 !lm pblur x=god 15:09:18 278. [2015-07-03 19:05:26] [god=Gozag] pblur the Martial Artist (L10 OpTm of Gozag) ASSERT(item.base type == OBJ CORPSES) in 'butcher.cc' at line 348 failed on turn 12933. (D:9) 15:09:30 oh yeah 15:09:53 @??stone_giant 15:09:53 stone giant (15C) | Spd: 10 | HD: 16 | HP: 71-104 | AC/EV: 12/2 | Dam: 45 | 10items, 10doors | Res: 06magic(80), 12drown | XP: 1422 | Sz: Giant | Int: human. 15:09:53 -!- ghallberg has joined ##crawl-dev 15:10:08 if someone could add && !force to line 412 of mon-death.cc that should fix the crash 15:10:28 -!- rast has joined ##crawl-dev 15:13:32 <|nzrgulfg> !crashlog 15:13:33 11405. pblur, XL10 OpTm, T:12933 (milestone): http://crawl.akrasiac.org/rawdata/pblur/crash-pblur-20150703-190526.txt 15:13:43 -!- |nzrgulfg is now known as polymethyst 15:15:03 (this would make the code actually do what the doxygen claims it does) 15:15:17 -!- ldf_ has quit [Quit: Page closed] 15:16:25 -!- xcourier has quit [Quit: xcourier] 15:17:29 -!- Sonderblade has quit [Quit: Lämnar] 15:17:41 %git 15:17:41 07|amethyst02 * 0.17-a0-1479-g4041c36: Avoid unlinked Gozag gold (wheals, #9834) 10(22 hours ago, 1 file, 1+ 0-) 13https://github.com/crawl/crawl/commit/4041c365599a 15:18:28 -!- Fizybubbleh has quit [Quit: http://www.kiwiirc.com/ - A hand crafted IRC client] 15:18:46 03|amethyst02 07* 0.17-a0-1480-g2a75f53: Support Cygwin. 10(18 hours ago, 5 files, 57+ 6-) 13https://github.com/crawl/crawl/commit/2a75f53f601c 15:18:46 03|amethyst02 07* 0.17-a0-1481-gfdcec5c: Don't crash on vault skeletons under Gozag (wheals) 10(2 minutes ago, 1 file, 2+ 1-) 13https://github.com/crawl/crawl/commit/fdcec5c4517c 15:19:01 polymethyst: spooky 15:19:22 I had thought I had pushed that cygwin commit already but I guess I forgot 15:19:27 -!- polymethyst is now known as |amethyst 15:21:32 -!- Pacra_ has quit [Read error: Connection reset by peer] 15:21:34 -!- Pacra has joined ##crawl-dev 15:23:19 -!- amalloy_ is now known as amalloy 15:26:39 -!- mauris_ is now known as mauris 15:29:29 -!- tabstorm has quit [Ping timeout: 246 seconds] 15:31:43 -!- ghallberg has left ##crawl-dev 15:35:14 -!- nixor has quit [Ping timeout: 256 seconds] 15:38:39 -!- pikaro has quit [Ping timeout: 255 seconds] 15:40:54 -!- argent0 has quit [Ping timeout: 255 seconds] 15:47:52 -!- pig is now known as Guest30433 15:49:27 -!- vale_ has quit [Ping timeout: 255 seconds] 15:53:56 -!- BOTBrad has quit [Quit: WeeChat 0.4.2] 15:54:59 -!- mizu_no_oto has quit [Quit: Computer has gone to sleep.] 15:58:19 -!- Kramin has joined ##crawl-dev 15:58:43 -!- Kramin has quit [Remote host closed the connection] 16:00:46 -!- pikaro has quit [Ping timeout: 248 seconds] 16:08:11 -!- zxc232 has quit [Read error: Connection reset by peer] 16:18:19 -!- Neuromancer has quit [Ping timeout: 246 seconds] 16:19:29 -!- Fusha has quit [Ping timeout: 246 seconds] 16:19:29 -!- Cybersaint2k has quit [Quit: Page closed] 16:23:37 -!- Fusha2 has quit [Ping timeout: 276 seconds] 16:26:48 -!- Floodkiller_ has quit [Quit: Page closed] 16:27:10 -!- Floodkiller has joined ##crawl-dev 16:31:21 -!- tealeaves has quit [Quit: Bye] 16:34:35 -!- pikaro has quit [Quit: Ex-Chat] 16:37:25 is there a way we could give a warning prompt when you press esc after drawing a card that needs targeting? like i accidentally hit esc after drawing vitriol, and it said Okay then, burned the card, and wasted my turn 16:39:43 i think i could make all the functions called form card_effect return a bool which is whether they were applied, and then in card_effect check that and prompt whether to go again 16:40:13 perhaps it might be better to add a thing in direction_chooser that controls whether it's safe to abort? 16:40:27 that is another approach but i wasn't sure how to do that 16:41:06 i can understand wanting to avoid that code 16:41:14 !source item_use.cc 16:41:14 https://github.com/crawl/crawl/blob/master/crawl-ref/source/item_use.cc 16:42:01 -!- Pacra has quit [Quit: Leaving] 16:42:21 <|amethyst> it would also be nice (for consistency) if you could abort for free when the card was already known 16:42:24 -!- Gorgo_ has quit [Ping timeout: 264 seconds] 16:42:27 -!- reaverb has joined ##crawl-dev 16:42:52 agreed, but there are some where there's no natural chance to cancel. like Storm 16:43:06 <|amethyst> right, but that's true of scrolls too 16:43:23 true, i guess. speaking of which, why can't you cancel ?blink? 16:43:29 you can 16:43:54 it used to prompt you before cancelling even if you had it ided for no good reason 16:44:04 huh 16:44:09 (well, the reason was probably that you didn't used to be able to cancel it safely) 16:44:19 well i guess i assumed that it was prompting me because it would get burned 16:44:23 but i see now that it's cancellable 16:45:04 yeah i thought the same thing, but PF pointed out that it was just a big mystery 16:47:38 -!- Pacra has joined ##crawl-dev 16:49:46 -!- Fusha has quit [Ping timeout: 250 seconds] 16:49:50 -!- vale has quit [Ping timeout: 248 seconds] 16:59:18 tapin (L22 MiGl) ASSERT(item.base_type == OBJ_CORPSES) in 'butcher.cc' at line 348 failed. (Depths:1) 16:59:52 -!- reaverb has quit [Quit: Leaving] 17:02:37 -!- Krakhan has quit [Changing host] 17:05:07 -!- ebering has joined ##crawl-dev 17:05:11 -!- alvarops has quit [Quit: Leaving] 17:05:14 whats the rumor on the next tournament 17:06:32 i'm betting on elliptic 17:09:43 -!- Torax_ has quit [Quit: Page closed] 17:12:17 -!- Kramin has joined ##crawl-dev 17:13:50 also do I want to unmoulder my mouldering patches or work on my thesis 17:22:48 -!- tcjsavannah has quit [Ping timeout: 252 seconds] 17:25:42 -!- Yllodra has quit [] 17:26:34 -!- Kramin has quit [Read error: Connection reset by peer] 17:26:53 -!- Kramin has joined ##crawl-dev 17:27:23 -!- Kramin has quit [Remote host closed the connection] 17:31:58 -!- Ladykiller69 has quit [Ping timeout: 252 seconds] 17:38:35 -!- bonghitz has quit [Quit: Leaving...] 17:46:27 -!- Pacra has quit [Remote host closed the connection] 17:46:52 -!- Pacra has joined ##crawl-dev 17:47:07 -!- wheals has quit [Quit: http://www.kiwiirc.com/ - A hand crafted IRC client] 17:51:22 -!- vale has quit [Ping timeout: 276 seconds] 17:59:56 -!- tabstorm has quit [Ping timeout: 246 seconds] 18:01:13 Unstable branch on crawl.lantea.net updated to: 0.17-a0-1481-gfdcec5c (34) 18:03:17 -!- Lasty has quit [Quit: Leaving.] 18:03:45 -!- Lasty has joined ##crawl-dev 18:05:11 -!- ktgrey has quit [Ping timeout: 246 seconds] 18:09:25 -!- debo has quit [Ping timeout: 255 seconds] 18:10:31 -!- tcjsavannah has quit [Quit: tcjsavannah] 18:11:45 !kw t 18:11:46 Built-in: t => start>='2015-03-13 20:00:00' time<'2015-03-29 20:00:00' ((cv=0.16|0.16-a)) explbr= 18:11:54 !hs * t hesu 18:11:55 116. gammafunk the Convoker (L13 HESu of Sif Muna), blasted by a fire dragon (blast of flame) (kmap: st_spiral_rooms) on Vaults:1 on 2015-03-27 13:31:08, with 47196 points after 11601 turns and 1:44:48. 18:12:01 !hs * t0.15 hesu 18:12:02 404. gammafunk the Convoker (L18 HESu of Sif Muna), blasted by a balrug (fireball) in Pandemonium on 2014-09-01 20:51:58, with 328552 points after 24155 turns and 6:55:14. 18:12:24 bet on next tournament is same result as last two, that I win the tournament again 18:17:16 -!- BOTBrad has quit [Quit: WeeChat 0.4.2] 18:18:53 -!- KurzedMetal has quit [Ping timeout: 246 seconds] 18:21:13 -!- Kramin has joined ##crawl-dev 18:21:42 -!- serq has quit [Changing host] 18:22:34 -!- Gurmil has quit [Ping timeout: 276 seconds] 18:26:57 -!- pouledodue has quit [Quit: My Mac has gone to sleep. ZZZzzz…] 18:29:01 -!- HellTiger has quit [Ping timeout: 250 seconds] 18:29:49 -!- TangoBravo has quit [Quit: Page closed] 18:29:57 -!- elliptic has quit [Read error: Connection reset by peer] 18:30:42 -!- elliptic has joined ##crawl-dev 18:35:18 -!- n1k has joined ##crawl-dev 18:36:46 -!- NarcissusIII has joined ##crawl-dev 18:37:05 so is there any way to kick people off tilechat or ban them? 18:37:52 -!- Earlo has quit [Remote host closed the connection] 18:38:13 -!- omnirizon has quit [Ping timeout: 264 seconds] 18:39:35 -!- irctc899 has joined ##crawl-dev 18:39:40 hi 18:39:54 "d3vilman: archaeo loves sniffin nigger dicks" 18:39:58 could someone please ban this guy 18:39:58 tia 18:40:10 -!- omnirizo1 has quit [Ping timeout: 252 seconds] 18:40:19 yeah this guy is getting fucking annoying 18:40:26 -!- Roarke has quit [Client Quit] 18:41:37 I think that tileschat ignore/ban is currently an implementable (i.e. a feature waiting for a hero) 18:41:58 uh, e-mail the operator of the server you're playing on is probably your best bet 18:42:05 it's neil 18:42:31 if you know his email address it'd be much appreciated 18:43:57 neil@s-z.org 18:44:04 tyvm 18:44:09 -!- dtsund has joined ##crawl-dev 18:45:39 -!- tabstorm has quit [Ping timeout: 265 seconds] 18:46:08 |amethyst: is also available on irc 18:48:07 thanks for the help 18:50:03 -!- Tux[Qyou] has quit [Read error: Connection reset by peer] 18:51:06 -!- tealeaves has quit [Quit: Bye] 18:51:27 -!- vale has quit [Ping timeout: 248 seconds] 18:52:19 -!- irctc899 has quit [Ping timeout: 246 seconds] 18:53:59 -!- P_R_Deltoid has quit [Quit: Leaving] 18:57:44 -!- Pacra has quit [Ping timeout: 265 seconds] 19:00:13 <|amethyst> done 19:11:04 -!- nixor has quit [Ping timeout: 255 seconds] 19:11:41 -!- debo has joined ##crawl-dev 19:23:13 -!- Ryzor has quit [Quit: Page closed] 19:27:03 -!- WalrusKing has joined ##crawl-dev 19:31:52 -!- BlackGyver has quit [Ping timeout: 252 seconds] 19:32:14 -!- rubinko__ has quit [Ping timeout: 252 seconds] 19:33:21 -!- kazimuth has quit [Quit: Textual IRC Client: www.textualapp.com] 19:40:35 -!- MarvinPA has quit [Quit: Leaving] 19:45:07 -!- clouded_ has joined ##crawl-dev 19:45:39 -!- Patashu has joined ##crawl-dev 19:46:25 -!- flowsnake has quit [Ping timeout: 276 seconds] 19:48:22 -!- st_ has quit [Ping timeout: 276 seconds] 19:50:07 -!- DDFig has quit [Quit: Page closed] 19:50:44 -!- KurzedMetal1 has quit [Ping timeout: 264 seconds] 19:52:05 -!- archaeo has joined ##crawl-dev 19:52:15 -!- vale has quit [Ping timeout: 248 seconds] 19:52:20 |amethyst: thank you 19:52:49 Tyryt0 (L14 MiFi) ASSERT(item.base_type == OBJ_CORPSES) in 'butcher.cc' at line 348 failed. (Swamp:1) 19:57:57 -!- Ladykiller70 has quit [Quit: Verlassend] 20:01:23 -!- scummos__ has quit [Ping timeout: 252 seconds] 20:03:01 -!- archaeo has quit [Ping timeout: 246 seconds] 20:03:39 -!- Akitten_Homura has joined ##crawl-dev 20:04:08 -!- UncertainKitten has quit [Ping timeout: 252 seconds] 20:05:55 -!- Foamed has quit [Quit: Leaving] 20:08:34 -!- Azzkikr has quit [Ping timeout: 245 seconds] 20:15:52 -!- ystael has quit [Ping timeout: 252 seconds] 20:19:56 -!- bitcoinbastard has quit [Ping timeout: 246 seconds] 20:23:56 -!- Slowki has quit [Quit: Page closed] 20:24:07 -!- Guest30433 has quit [Quit: Page closed] 20:26:41 -!- BlackGyver_ has quit [Read error: Connection reset by peer] 20:26:50 -!- Fizybubbleh has quit [Quit: http://www.kiwiirc.com/ - A hand crafted IRC client] 20:29:05 -!- jeanjacques_ has joined ##crawl-dev 20:32:13 -!- jeanjacques has quit [Ping timeout: 264 seconds] 20:32:13 -!- jeanjacques_ is now known as jeanjacques 20:32:26 so yeah, disc of storms is pretty nuts 20:32:44 I just finished a game where I evoked it over a thousand times, and it pretty much handled everything 20:32:52 if you're in a zig. with no mp. under makh/tso. and have 27 evoc. and relec. 20:33:04 otherwise good luck hitting the broad side of a barn 20:33:22 If you miss, just evoke it again 20:33:25 it does so much damage 20:33:33 and miss again and again and again and again 20:33:56 If you've sacrificed an eye, it's much more accurate than your normal attacks 20:34:10 -!- Lightli has quit [Ping timeout: 246 seconds] 20:37:54 -!- tealeaves has quit [Quit: Bye] 20:40:41 -!- neunon has quit [Ping timeout: 256 seconds] 20:41:08 -!- neunon has joined ##crawl-dev 20:43:15 -!- Crehl has quit [Quit: Killed by a kitten] 20:45:39 -!- Kalir has quit [Quit: CADENZA-CLASS CLOCKWORK KNIGHT--OPERATION TERMINATED] 20:48:26 -!- mauris has quit [Ping timeout: 244 seconds] 20:48:26 -!- alerty has quit [Ping timeout: 244 seconds] 20:48:45 -!- nicolae- has joined ##crawl-dev 20:53:19 -!- vale has quit [Ping timeout: 250 seconds] 20:55:50 -!- dtsund has quit [Ping timeout: 256 seconds] 20:57:42 -!- simmarine has quit [Read error: Connection reset by peer] 21:06:54 -!- stanzill has quit [Quit: au rev] 21:12:53 -!- omnirizon has quit [Ping timeout: 252 seconds] 21:14:43 -!- simmarine has joined ##crawl-dev 21:17:27 -!- Fusha2 has quit [] 21:17:46 -!- Ququman has quit [Remote host closed the connection] 21:18:36 -!- dtsund has joined ##crawl-dev 21:21:49 -!- G-Flex has quit [Quit: Time for us to bug out.] 21:22:48 -!- joke_LA has quit [Read error: Connection reset by peer] 21:23:25 -!- tcjsavannah has quit [Quit: tcjsavannah] 21:23:57 -!- ohyou has quit [Read error: Connection reset by peer] 21:31:43 -!- tealeaves has quit [Quit: Bye] 21:35:48 -!- joke_LA has quit [Ping timeout: 252 seconds] 21:35:57 -!- tcjsavannah has quit [Quit: tcjsavannah] 21:46:22 -!- serq has quit [Remote host closed the connection] 21:53:16 -!- tcjsavannah has quit [Quit: tcjsavannah] 21:53:44 -!- omnirizo1 has quit [Ping timeout: 246 seconds] 21:54:20 -!- vale has quit [Ping timeout: 264 seconds] 21:54:55 -!- omnirizon has quit [Ping timeout: 256 seconds] 22:02:55 -!- GauHelldragon has quit [Ping timeout: 248 seconds] 22:03:08 -!- twofortypee has quit [Quit: Connection closed for inactivity] 22:05:51 -!- nicolae- has left ##crawl-dev 22:07:23 -!- joke_LA has quit [Read error: Connection reset by peer] 22:10:13 -!- unpaidbill has quit [Ping timeout: 256 seconds] 22:11:55 -!- bh has quit [Ping timeout: 256 seconds] 22:12:34 -!- bh has joined ##crawl-dev 22:15:17 -!- TonyMeatballs has quit [Quit: Leaving] 22:15:53 -!- joke_LA has quit [Ping timeout: 256 seconds] 22:16:31 -!- MgDark has quit [Quit: ChatZilla 0.9.91.1 [Firefox 38.0.5/20150525141253]] 22:18:20 -!- pikaro has quit [Ping timeout: 244 seconds] 22:19:50 -!- tcjsavannah has quit [Quit: tcjsavannah] 22:20:10 -!- G-Flex has joined ##crawl-dev 22:21:01 -!- amalloy is now known as amalloy_ 22:21:08 -!- chance672 has quit [Quit: Leaving my desktop..... laptop possibly?] 22:28:37 -!- PsyMar has quit [Quit: witty quit message goes here] 22:29:08 -!- Chance671 is now known as chance672 22:32:52 -!- MurderMachine has quit [Quit: Page closed] 22:38:09 -!- Lasty has quit [Quit: Leaving.] 22:41:04 -!- debo has quit [Ping timeout: 244 seconds] 22:46:56 -!- Wolfechu has quit [Ping timeout: 252 seconds] 22:53:26 -!- amalloy_ is now known as amalloy 22:54:59 -!- vale has quit [Ping timeout: 256 seconds] 23:02:42 -!- rossi has quit [Ping timeout: 252 seconds] 23:04:01 -!- nixor has quit [Ping timeout: 264 seconds] 23:05:24 -!- HiaWG has quit [Quit: Page closed] 23:13:32 -!- alerty has quit [Ping timeout: 246 seconds] 23:14:56 -!- mauris has quit [Ping timeout: 246 seconds] 23:17:14 -!- xcourier has quit [Quit: xcourier] 23:17:19 -!- Cacophony has quit [Quit: oh no am scare] 23:17:39 -!- chance672 has quit [Quit: WeeChat 1.2] 23:20:24 -!- NarcissusIII has quit [Quit: Page closed] 23:20:27 -!- mamgar has quit [Read error: Connection reset by peer] 23:37:48 -!- Floodkiller has quit [Quit: Page closed] 23:54:20 -!- PsiRedEye22 has quit [Ping timeout: 256 seconds] 23:59:04 Unstable branch on CRAWL.XTAHUA.COM updated to: 0.17-a0-1481-gfdcec5c (34)