00:28:03 -!- paxed has quit [Ping timeout: 245 seconds] 00:29:56 -!- paxed has joined ##crawl-dev 01:16:48 -!- paxed has quit [Ping timeout: 245 seconds] 01:18:34 -!- paxed has joined ##crawl-dev 02:52:13 -!- paxed has quit [Ping timeout: 245 seconds] 02:53:56 -!- paxed has joined ##crawl-dev 02:58:03 -!- paxed has quit [Ping timeout: 245 seconds] 03:06:26 -!- paxed has joined ##crawl-dev 03:14:13 -!- eyhung has joined ##crawl-dev 03:33:37 -!- syllogism has joined ##crawl-dev 04:11:19 -!- MarvinPA has quit [Quit: Page closed] 04:28:35 -!- Textmode has quit [Quit: Over the ages, man has been certain of a great many things. some of these things were even true.] 04:30:43 -!- Mu_ has joined ##crawl-dev 05:06:02 -!- elliptic has joined ##crawl-dev 05:38:10 -!- eyhung has quit [Quit: ChatZilla 0.9.86 [Firefox 3.6.8/20100722155716]] 06:31:48 -!- paxed has quit [Ping timeout: 245 seconds] 06:33:37 -!- paxed has joined ##crawl-dev 06:38:26 -!- Amonchakad has joined ##crawl-dev 06:40:00 Hello, in the latest trunk I have this new "branch" hinted at in ^O, "forest". I can't find anything about it anywhere, and it's apparently not present ingame; is it a new branch under construction? 06:41:05 I believe it's kilobyte's baby. 06:41:07 it shouldn't show up in ^O 06:41:30 and it does, as D:3-6 06:43:22 So, I should just ignore the hint in ^O until later updates? 06:43:28 yeah 06:43:31 ok, thanks 06:44:13 same as Shoals in 0.4-0.5 06:44:35 kilobyte: have you started a layout generator for it yet? 06:45:56 not yet 06:46:20 all algorithms I have for now are way overcomplex 06:47:01 most of the complexity comes from the requirement to be able to recreate parts of the map away from you 06:47:24 of course, it's easy to make generators that don't look the way I want 06:48:19 which is what you can see in vaults: kilobyte_rumbling_trees, kilobyte_entry_exit_the_forest, forest_paths 06:50:05 I didn't touch this recently: if you have an idea for a half-decent generator, it would be awesome 06:50:37 even one that can't recreate the thing 06:52:12 -!- Amonchakad has quit [Quit: When two people dream the same dream, it ceases to be an illusion. KVIrc 3.4.2 Shiny http://www.kvirc.net] 06:52:46 and layout_delve, while not fitting what I want, looks good for Keskitalo's Spider, which I added as a stub too 06:54:45 -!- Zaba has quit [Ping timeout: 265 seconds] 06:58:20 03kilobyte * r7d31e05d0dce 10/crawl-ref/source/dgn-overview.cc: Don't show Forest nor Spider's Nest on ^O. 07:01:33 -!- Zaba has joined ##crawl-dev 07:19:18 -!- paxed has quit [Ping timeout: 245 seconds] 07:21:11 -!- paxed has joined ##crawl-dev 07:37:20 -!- Vandal has joined ##crawl-dev 07:41:35 -!- upsy has joined ##crawl-dev 07:51:45 kilobyte: I have a strange problem with termrec; it starts everything in 80x24 terminal with the -e parameter 07:52:05 but if you run it without a command, the term size is detected right 07:52:37 and it records any changes correctly in the resulting ttyrec 07:55:19 In fact, the ttyrec records right size even with -e 07:55:37 But anyhing running under it thinks it's 80x24 07:56:32 hmm, lemme check 07:57:27 a simple "termrec -e ls" results in 80 wide listing 07:59:29 interesting, "termrec -e bash" works correctly, "termrec -e ls" doesn't 08:00:41 yes 08:01:09 Hmm, 'termrec -e "bash -c nano"' works 08:01:34 "bash -c ls" doesn't 08:04:43 -!- paxed has quit [Ping timeout: 245 seconds] 08:06:00 'bash -c "sleep 5;stty -a"' says it's not a race condition 08:06:43 -!- paxed has joined ##crawl-dev 08:08:28 with that it tells me rows 0; columns 0; 08:09:07 That's not right. 08:10:53 "bash -c 'sleep 5;stty size;nano;stty size'" 08:10:57 0 0 08:10:59 30 88 08:11:11 nano does something :P 08:13:12 Actually, stty does it. 08:13:18 I do see a race condition, but I don't get why it doesn't go away with sleep 08:14:07 got it 08:14:15 Sweet 08:14:17 'bash -c "echo meow;sleep 5;stty -a"' 08:14:57 the tty size is set only after some data passes to or from the process 08:15:06 So it seems 08:15:50 termrec -e 'bash -c "crawl;crawl"' 08:15:56 The second time it's right :) 08:17:12 echo is a sufficient workaround for now 08:20:00 Thanks! 08:37:36 well, there's still that race condition, since the term size is set only some time after the input is seen 08:37:54 Ok 08:44:57 oops, the hook for git over http wasn't set 08:45:24 http://angband.pl/git/termrec has the fixed version 08:45:30 or do you prefer the tarball? 08:45:35 I guess with my old server hardware crawl always started slow enough for termrec to get the size before ncurses initialized :P 08:46:05 It only started behaving spuriously when I upgraded 08:46:24 ncurses will receive SIGWINCH and notice the terminal size changed 08:46:25 Thanks, git is fine 08:46:39 but it might be too late for Crawl's initial check, yeah 08:48:55 Awesome, it works 08:49:11 Thanks again, I'm one happy user of termrec 08:57:38 -!- paxed has quit [Ping timeout: 245 seconds] 08:59:21 -!- paxed has joined ##crawl-dev 09:10:16 -!- nrook has joined ##crawl-dev 09:19:50 kilobyte: btw, with potentially unsafe parameters, the syntax "termrec foo.ttyrec -- command foo bar baz" would be nicer, as you would be able to parametrize them all 09:20:25 it would just read anything after -- as the command line 09:21:23 !time 09:21:23 Time: Aug 31, 2010, 02:21:23 PM, UTC. The 2010 tournament ends in 9 hours, 38 minutes and 36 seconds. 09:25:23 joosa: good idea, thanks! 09:29:22 At the moment on rl.heh.fi there's a cumbersome amount of quotes and escaping going on :) 09:30:24 -!- ixtli has quit [Quit: ixtli] 09:48:03 -!- paxed has quit [Ping timeout: 245 seconds] 09:49:58 -!- paxed has joined ##crawl-dev 10:11:48 -!- eith has joined ##crawl-dev 10:15:32 Squolly (L9 VpNe) (D:8) 10:21:08 what 10:25:15 Autodrop rotten chunks (https://crawl.develz.org/mantis/view.php?id=2415) by minmay 10:27:43 I just use d, 10:27:57 Selects all useless stuff iirc 10:36:32 has the way monster speech works been changed at all 10:42:38 -!- paxed has quit [Ping timeout: 245 seconds] 10:44:41 -!- paxed has joined ##crawl-dev 10:50:35 -!- st_ has quit [] 10:52:30 Monsters in the Cigotuvi wizlab work correctly in 0.7.1, but in my local git build they all lost their definite articles in speech / combat log?? 11:03:58 -!- st_ has joined ##crawl-dev 11:30:37 Don't tie item uselessness to temporary conditions (https://crawl.develz.org/mantis/view.php?id=2416) by OG17 11:36:48 -!- paxed has quit [Ping timeout: 245 seconds] 11:38:23 -!- paxed has joined ##crawl-dev 11:43:58 -!- Siber has joined ##crawl-dev 11:53:56 -!- Vandal has quit [Ping timeout: 255 seconds] 12:28:28 -!- paxed has quit [Ping timeout: 245 seconds] 12:30:10 -!- paxed has joined ##crawl-dev 12:30:59 More "runed" item graphics (https://crawl.develz.org/mantis/view.php?id=2417) by LoginError 12:42:15 -!- Vandal has joined ##crawl-dev 12:48:36 -!- Vandal has quit [] 12:51:05 Allies should be better at evaluating ranged weapon value (https://crawl.develz.org/mantis/view.php?id=2418) by OG17 13:04:09 -!- ortoslon has joined ##crawl-dev 13:07:24 -!- Twinge has joined ##crawl-dev 13:10:00 Keskitalo: you forgot to rename tarantellas :P 13:26:31 -!- Vandal has joined ##crawl-dev 13:37:38 !time 13:37:38 Time: Aug 31, 2010, 06:37:38 PM, UTC. The 2010 tournament ends in 5 hours, 22 minutes and 21 seconds. 13:38:52 about time for the hare competition to start i imagine 13:39:16 !lg * ktyp=winning max=startdate 13:39:17 Unknown selector: startdate 13:39:22 -!- mruuuu has quit [Ping timeout: 252 seconds] 13:39:23 !lg * ktyp=winning max=starttime 13:39:23 Unknown selector: starttime 13:39:26 !lg * ktyp=winning max=start 13:39:26 3150. MarvinPA the Necromancer (L22 DDNe), worshipper of Makhleb, escaped with the Orb and 3 runes on 2010-08-31, with 1291312 points after 86141 turns and 7:56:26. 13:40:03 -!- mruuuu has joined ##crawl-dev 13:40:55 !lm * t type=orb / lg:ktyp=winning 13:40:56 314/336 milestones for * (t type=orb): N=314/336 (93.45%) 13:40:58 -!- ortoslon has quit [Ping timeout: 245 seconds] 13:45:19 -!- MarvinPA has joined ##crawl-dev 13:58:51 -!- casmith789 has quit [Read error: Connection reset by peer] 14:01:07 -!- casmith789 has joined ##crawl-dev 14:36:55 !lm * t type=orb.destroy 14:36:56 8. [2010-08-31] trucutru the Phalangite (L27 MfCr) destroyed the Orb of Zot (Hell) 14:37:12 336 orb pickups, 314 wins, 8 destroys 14:50:17 !lg * ktyp=winning max=start 14:50:17 3152. casmith789 the Eclecticist (L23 SpEn), worshipper of Kikubaaqudgha, escaped with the Orb and 3 runes on 2010-08-31, with 1301121 points after 92133 turns and 4:40:44. 14:53:19 syllogism: I thought we agreed it was an intentional pun on Lemuel's part. 14:53:48 did we 14:54:48 can i just close all of the ally frs and tell people to go to the wiki? 14:55:11 other than those one or two bugs, i really don't see any of them being implemented 14:55:35 and it doesn't look like og17 is planning on stopping anytime soon 14:57:18 syllogism: The description speaks of frenzied dance that the victims of the bites start to do :) 14:57:21 doy: Sure, go ahead. 14:57:56 ah 15:04:36 -!- casmith789 has quit [Remote host closed the connection] 15:09:46 doy: i made the FRs because they were specific proposals, i thought that was what mantis was for 15:11:14 and it's all on the wiki too 15:13:52 Heh, yeah, that was the idea. 15:15:22 if the beogh proposals on the wiki are actually going to be added then i guess that would definitely help 15:15:41 But it hasn't really worked out, I think that's the thought.. 15:15:53 (Wiki->FR thing I mean) 15:16:05 -!- totalg33k has joined ##crawl-dev 15:16:23 where is the actual damage shaving formula for deep dwarves in the source? 15:16:27 There's been a proposal to axe FRs from the tracker, and only have the wiki. 15:16:40 yeah, maybe that would work better 15:16:45 MarvinPA: well, a few of yours were actual bugs, that's fine 15:16:52 totalg33k: ouch.cc i think 15:17:03 thanks doy 15:17:35 MarvinPA: i'm mainly talking about og17's rants 15:17:58 ah right 15:18:24 well anyway, i did make quite a lot of FRs and maybe the wiki is a better place for them :P 15:18:39 * Siber makes new FR: do what I tell you 15:18:54 FR: reject this FR 15:19:03 but those are just my thoughts after having played a HOPr, it was definitely fun ultimately despite the issues 15:22:57 There's a lot of room for improvement in ally play interface-wise.. it doesn't feel quite trivial.. I don't think we have a enthuastic implementer unfortunately :) 15:23:19 yeah, makes me wish i could code :( 15:31:43 the point is, from a design standpoint, we don't *want* the game to become about managing your allies to any significant extent 15:32:03 it would require some pretty serious redesigns of things if that's ever going to work well 15:32:33 trying to tack it onto the side of the current interface and gameplay is just going to be awkward and messy 15:33:11 hmm, which i guess means a better solution would be changing how beogh works instead of changing the interface 15:36:01 Yeah, less management rather than more (e.g. when I read on SA that you should be able to equip your orcs by hand, it sounds like exactly the opposite of what it should be) 15:37:15 Keskitalo: yes, although i'm not convinced that throwing in a bunch of special cases for friendly monster ai is the right way to go there either 15:39:06 !lg * ktyp=winning max=start x=start 15:39:06 3153. [start=2010-08-31 [20100731130124S]] casmith789 the Eclecticist (L23 SpEn), worshipper of Kikubaaqudgha, escaped with the Orb and 3 runes on 2010-08-31, with 1301121 points after 92133 turns and 4:40:44. 15:46:58 -!- totalg33k has left ##crawl-dev 16:15:45 -!- Textmode has joined ##crawl-dev 16:20:50 -!- Cryp71c has joined ##crawl-dev 16:21:01 -!- The_Madcapper has joined ##crawl-dev 16:21:06 -!- The_Madcapper has left ##crawl-dev 16:22:39 -!- Cryp71c has left ##crawl-dev 16:27:31 78291's hare attempt is ogam? really? 16:28:03 i think he's trying to take combo highscores away from slyshy 16:28:49 clearly everyone should be going for halfling reaver 16:29:12 it has a pretty low score, someone could probably grab the new hs for it quite easily :P 16:29:17 !wtf hare 16:29:18 Halfling Reaver 16:29:30 ;) 16:30:37 !lg * ktyp=winning max=start x=start 16:30:37 3155. [start=2010-08-31 [20100731130124S]] casmith789 the Eclecticist (L23 SpEn), worshipper of Kikubaaqudgha, escaped with the Orb and 3 runes on 2010-08-31, with 1301121 points after 92133 turns and 4:40:44. 16:30:55 !time 16:30:55 Time: Aug 31, 2010, 09:30:55 PM, UTC. The 2010 tournament ends in 2 hours, 29 minutes and 4 seconds. 16:31:02 does the game have to end before the tourney ends too? 16:31:16 yes 16:31:40 for some reason i assumed otherwise and thought people would start at the last minute 16:33:11 we can't really have tourney results changing after the tournament--how could we declare a winner? 16:33:48 true 16:34:57 !lg * when=t ktyp=winning dur<=9000 16:34:58 4. 78291 the Backstabber (L15 SpEn), escaped with the Orb and 3 runes on 2010-08-28, with 3765072 points after 16625 turns and 1:11:51. 16:35:14 !lg * when=t ktyp=winning dur<=9000 s=name 16:35:14 4 games for * (when=t ktyp=winning dur<=9000): 2x elliptic, 1x 78291, 1x Grimm 16:36:56 !lm . t noun=sigmund 16:36:56 20. [2010-08-30] upsy the Insei (L7 SEMo) killed Sigmund on turn 5570. (D:4) 16:37:05 i dropped 11 places since last year, though i got 600 more points 16:37:08 more than i thought 16:37:18 unless some of those aren't ones where i killed him 16:37:36 those are all times when sigmund died in games you played 16:37:42 it doesn't matter who killed him 16:37:42 !lm upsy t noun=sigmund s=type 16:37:42 20 milestones for upsy (t noun=sigmund): 20x uniq 16:37:57 !lm . t9 noun=sigmund s=type 16:37:58 33 milestones for Zannick (t9 noun=sigmund): 27x uniq, 6x uniq.ban 16:38:03 oh, I guess that search would also include banishing sigmund, yeah 16:38:17 yeah 16:38:29 last year, at first i thought i could include that 16:38:43 but then i realized i didn't have the banner 16:38:52 uniq=sigmund is the right search to do 16:38:59 hmm 16:39:01 !lm when=t type=uniq noun=sigmund 16:39:02 6. [2010-08-28] doy the Chopper (L4 DDBe) killed Sigmund on turn 1935. (D:3) 16:39:10 !lm . t9 uniq=sigmund s=type 16:39:10 27 milestones for Zannick (t9 uniq=sigmund): 27x uniq 16:39:13 !lm . t uniq=sigmund 16:39:14 4. [2010-08-16] elliptic the Reanimator (L9 SEAs) killed Sigmund on turn 10577. (D:7) 16:39:17 indeed 16:39:19 !lm type=uniq noun=sigmund 16:39:20 62. [2010-08-28] doy the Chopper (L4 DDBe) killed Sigmund on turn 1935. (D:3) 16:40:32 hm, the top scores between years are about the same 16:40:51 -!- Moriasc has joined ##crawl-dev 16:41:06 but obviously a lot more people broke 1000 points than last year 16:41:19 !lm * t uniq=Sigmund s=name 16:41:19 3091 milestones for * (t uniq=Sigmund): 51x BirdoPrey, 47x Gandelf, 46x think, 38x NyaaKitty, 38x casmith789, 37x Elbereth, 37x Jaeger, 33x m1nced, 29x BlueAnna, 28x Pseudonut, 27x IanDavid, 26x Ragdoll, 24x Tenaya, 24x rend, 24x BrockL, 24x Voker57, 23x Hourscht, 22x Vicht, 22x Mogwok, 21x FreeHugs, 21x Sildraith, 21x mafalda, 20x upsy, 20x Stormfox, 20x Ahrin, 20x Jubu, 20x MarvinPA, 19x Blackmo... 16:41:52 * Zannick didn't make it to 27 this year :/ 16:43:03 zannick: runes are worth a lot more this year (the first time you get each) 16:43:05 Bah. I played 4 games. Won 2! Scored 1,400 odd. Felt like a good run to me. 16:43:21 elliptic: yeah, that's why there are a lot of such scores 16:43:32 if you got all 16 runes over the course of the month, your score is 640 higher than it would have been last year 16:43:45 but it's interesting how the top scores are still 4000 or so 16:43:46 er, 650 higher I guess because shoals didn't exist last year 16:44:08 zannick: well, last year only the top two scores were 4000 or so and then there was a huge dropoff 16:44:25 well, top score 16:44:28 but yes 16:44:30 and n7 and mikee spent a ton of time last year -- note they each won far more games than anyone this year 16:44:49 !lg mikee won t9 16:44:49 26. mikee the Executioner (L26 MiBe), worshipper of Trog, escaped with the Orb and 3 runes on 2009-08-31, with 1532241 points after 78538 turns and 3:57:00. 16:44:52 my score difference is in fact, 622, due to all 16 runes and slightly less uniques than last year 16:46:12 !lm . t uniq=sigmund / lg:when=t 16:46:12 16/16 milestones for Zannick (t uniq=sigmund): N=16/16 (100.00%) 16:46:22 that does not do quite what i want 16:47:20 !lm Zannick uniq=sigmund / lg:when=t 16:47:21 16/61 milestones for Zannick (uniq=sigmund): N=16/61 (26.23%) 16:48:08 that is 16 games this tourney out of 61 overall sigmund kills 16:48:35 yes, what did you want? 16:48:40 !lm . uniq=sigmund / lg:when=t 16:48:40 20/31 milestones for upsy (uniq=sigmund): N=20/31 (64.52%) 16:48:54 milestones per games total 16:49:03 eg i have 84 games in t, 16 with sigmund kills 16:49:21 !lg Zannick when=t / lm:uniq=sigmund 16:49:21 Unknown selector: lm:uniq 16:49:23 guess i played a lot in the tourny 16:49:28 shrug 16:49:40 also, i had no idea you could do that with sequell 16:49:44 the lg in the denominator is only using the games from the numerator 16:49:50 is / being used as a pipe? :P 16:49:59 is there better documentation than ??listgame_examples :/ 16:50:11 upsy: no one documents these things, i found out by seeing someone do it 16:50:36 ??listgame 16:50:37 listgame[1/6]: http://github.com/greensnark/dcss_henzell/raw/master/docs/listgame.txt 16:50:50 ooh 16:50:53 it's documented there now 16:51:00 oh, nice 16:53:31 i was ranked 8th in 08, 18th in 09, and 25th this year, with scores of 1099, 921, and 1602 16:53:34 people keep getting better 16:53:52 i like to think i got better, but i only won twice this year than last year 16:54:09 i blame it on my two fighters from last year who couldn't stomach the ac nerf this year :P 16:55:06 in 08 i had 4 wins including a two game streak, in 09 i had 4 wins, this year i had 3 wins 16:55:21 in 08 i was 1st in combo high scores though 16:55:44 both my wins are combo high score because no one else did them 16:56:04 !lg * t won char=mipa|spfe s=name 16:56:04 2 games for * (t won char=mipa|spfe): 2x jokeserver 17:02:03 -!- pointless_ has joined ##crawl-dev 17:20:05 !lg * s=char / ktyp=winning o=den.N ?: N=0 17:20:07 3156/790680 games for *: 0/730x GECr [0.00%], 0/261x GERe [0.00%], 0/240x OMEn [0.00%], 0/232x OMVM [0.00%], 0/213x OMCj [0.00%], 0/203x OMRe [0.00%], 0/192x GnTm [0.00%], 0/182x GESt [0.00%], 0/157x OMSu [0.00%], 0/147x GnHu [0.00%], 0/141x OMAE [0.00%], 0/127x GEWr [0.00%], 0/127x OMMo [0.00%], 0/126x GETm [0.00%], 0/118x ElWz [0.00%], 0/113x GEHe [0.00%], 0/107x ElCr [0.00%], 0/106x ElHu [0.00%... 17:20:44 !lg * s=char race!=ge race!=om race!=hd race!=el / ktyp=winning o=den.N ?: N=0 17:20:46 3098/777525 games for * (race!=ge race!=om race!=hd race!=el): 0/192x GnTm [0.00%], 0/147x GnHu [0.00%], 0/105x GnAs [0.00%], 0/100x GnCr [0.00%], 0/39x GnMo [0.00%], 0/39x GnFE [0.00%], 0/32x GnPa [0.00%], 0/32x GnGl [0.00%], 0/30x GnNe [0.00%], 0/30x GnAr [0.00%], 0/26x GnWr [0.00%], 0/25x GnIE [0.00%], 0/22x GnAE [0.00%], 0/17x GnWz [0.00%], 0/16x GnRe [0.00%], 0/13x GnDK [0.00%], 0/12x GnVM [0... 17:20:54 !lg * s=char race!=ge race!=om race!=hd race!=el race!=gn / ktyp=winning o=den.N ?: N=0 17:20:56 3076/773978 games for * (race!=ge race!=om race!=hd race!=el race!=gn): 0/6x XXFi [0.00%], 0/2x DGBe [0.00%], 0/1x GhPa [0.00%] 17:21:25 oh, wow, there are no unwon combos anymore? 17:21:40 nope, not for a while 17:21:44 !lg * s=char cv>=0.5 / ktyp=winning o=den.N ?: N=0 17:21:45 1783/492235 games for * (cv>=0.5): 0/32277x DEWn [0.00%], 0/10756x DETh [0.00%], 0/7077x DEEn [0.00%], 0/2418x SEWn [0.00%], 0/2107x KeWn [0.00%], 0/1745x KoNe [0.00%], 0/1205x DESu [0.00%], 0/1110x HEHu [0.00%], 0/1104x OgBe [0.00%], 0/1103x DrCK [0.00%], 0/1043x VpDK [0.00%], 0/1012x KeNe [0.00%], 0/928x MuFi [0.00%], 0/683x DECr [0.00%], 0/674x DrPa [0.00%], 0/553x HEWn [0.00%], 0/551x HuCK [0.... 17:21:58 people have been doing combos that are unwon since 0.3 17:21:58 well yak fighter as you can see 17:22:05 ??unwon[3] 17:22:08 there are relatively unwon combos 17:22:10 unwon[3/7]: UNWON SINCE v0.3 | DEPr,DrHu,KeWn,MDWz,NaHu,HOAs | Hu:Hu,Mo | DG:As,Mo | SE:Fi,Hu,Wn 17:22:17 as in, combos that haven't been won in a recent version 17:22:41 i've had a trunk DGMo in progress waiting for the tourney to end :P 17:29:32 -!- valrus has joined ##crawl-dev 17:32:22 -!- Anym has joined ##crawl-dev 17:35:28 -!- Twinge has quit [Read error: Connection reset by peer] 17:36:08 -!- Twinge has joined ##crawl-dev 17:37:43 Crypt entry vaults (https://crawl.develz.org/mantis/view.php?id=2419) by minmay 17:39:21 -!- Giomancer has joined ##crawl-dev 17:40:24 !lg * ktyp=winning max=start x=start 17:40:24 3156. [start=2010-08-31 [20100731130124S]] casmith789 the Eclecticist (L23 SpEn), worshipper of Kikubaaqudgha, escaped with the Orb and 3 runes on 2010-08-31, with 1301121 points after 92133 turns and 4:40:44. 17:44:01 -!- Anym has quit [Quit: ChatZilla 0.9.86 [Firefox 3.6.8/20100722155716]] 17:45:02 The Angel hits the long sword of reaching with a holy scourge of holy wrath! 17:45:07 umm... 17:45:42 holy redundancy, batman! 17:47:10 yeah, we already changed eudemon blades, and stopped an attempt to have trishulas "holy", but it's not what I'm talking about here 17:47:36 the Dance card produced a long sword of reaching 17:58:19 -!- syllogism has quit [] 17:58:24 -!- enne has quit [Ping timeout: 272 seconds] 18:05:17 -!- enne has joined ##crawl-dev 18:23:44 -!- eith has quit [Ping timeout: 272 seconds] 18:24:05 !lg * t won dur<18000 s=char 18:24:05 20 games for * (t won dur<18000): 19x SpEn, 1x SEAs 18:24:13 !lg * t won seas min=dur x=dur 18:24:13 17. [dur=4:21:46 [15706]] Verily the Shatterer (L26 SEAs), worshipper of Okawaru, escaped with the Orb and 3 runes on 2010-08-31, with 1491876 points after 79854 turns and 4:21:46. 18:24:36 !lg * t won dur<15706 s=char 18:24:36 11 games for * (t won dur<15706): 11x SpEn 18:25:24 of the 20 fastest games, number 12 is seas, and the rest are spen 18:25:41 !lg * t won sea x=sk 18:25:41 Malformed argument: sea 18:25:46 !lg * t won seas x=sk 18:25:46 17. [sk=Necromancy] henryci the Thanatomancer (L25 SEAs), worshipper of Kikubaaqudgha, escaped with the Orb and 3 runes on 2010-08-31, with 1119153 points after 148437 turns and 10:22:57. 18:28:46 !time 18:28:46 Time: Aug 31, 2010, 11:28:46 PM, UTC. The 2010 tournament ends in 31 minutes and 13 seconds. 18:28:54 hmmm 18:29:00 78291 has two runes 18:29:19 31 minutes seems a bit tight though 18:30:58 !lg * ktyp=winning max=start x=start 18:30:58 3157. [start=2010-08-31 [20100731130124S]] casmith789 the Eclecticist (L23 SpEn), worshipper of Kikubaaqudgha, escaped with the Orb and 3 runes on 2010-08-31, with 1301121 points after 92133 turns and 4:40:44. 18:31:45 elliptic currently has 3 runes as qwqw 18:37:09 except 78291 worships lugonu 18:45:59 -!- pointless_ has quit [Quit: ChatZilla 0.9.86 [Firefox 3.6.7/20100713130626]] 18:46:51 -!- pointless_ has joined ##crawl-dev 19:05:35 !lg * ktyp=winning max=start x=start 19:05:35 3158. [start=2010-08-31 [20100731221405S]] qwqw the Bewitcher (L14 SpEn), worshipper of Jiyva, escaped with the Orb and 3 runes on 2010-08-31, with 4299119 points after 14318 turns and 1:39:33. 19:08:28 !lg @78291 19:08:31 4593. 78291 the Covert (L14 SpCK), worshipper of Lugonu, slain by NyaaKitty's ghost on Zot:5 (hall of Zot) on 2010-08-31, with 47243 points after 26364 turns and 1:15:23. 19:10:31 !tv @78291 19:10:32 4593. 78291, XL14 SpCK, T:26364 requested for FooTV. 19:12:31 !lg @78291 x=dam 19:12:31 4593. [dam=6] 78291 the Covert (L14 SpCK), worshipper of Lugonu, slain by NyaaKitty's ghost on Zot:5 (hall of Zot) on 2010-08-31, with 47243 points after 26364 turns and 1:15:23. 19:13:07 -!- rwbarton has joined ##crawl-dev 19:14:19 heh, CDO hasn't been updated since July 19:21:58 -!- pointless_ has quit [Ping timeout: 265 seconds] 19:33:29 -!- Mu_ has quit [Quit: Defecator, may everything turn out okay so that you can leave this place.] 20:17:35 -!- valrus has quit [Remote host closed the connection] 21:01:10 -!- Giomancer has quit [Quit: Man who run behind car get exhausted] 21:15:23 -!- nrook has quit [Quit: Lost terminal] 22:16:17 -!- by has quit [Ping timeout: 255 seconds] 22:17:05 -!- by has joined ##crawl-dev 22:18:14 !messages 22:18:15 (1/2) Keskitalo said (5d 14h 32m 55s ago): I need a door being opened to serve as a trigger for monster creation (turns statues into goles); is this already possible, or is some additional lua magic required? 22:18:19 !messages 22:18:19 (1/1) Mu_ said (5h 54m 37s ago): Monsters in the Cigotuvi wizlab work correctly in 0.7.1, but in my local git build they all lost their definite articles in speech / combat log?? do they need that tag in their name now, or is there a bug? 22:35:42 -!- upsy has quit [Quit: Leaving] 22:42:36 -!- valrus has joined ##crawl-dev 22:50:56 -!- Pseudonut has joined ##crawl-dev 23:05:02 -!- valrus has quit [Remote host closed the connection] 23:14:44 -!- Pseudonut has quit [Remote host closed the connection] 23:34:43 Fedhas lets you polymorph stuff into free oklobs (https://crawl.develz.org/mantis/view.php?id=2420) by OG17 23:45:34 -!- MarvinPA has quit [Ping timeout: 252 seconds] 23:47:13 -!- MarvinPA has joined ##crawl-dev