00:00:06 -!- omarax has quit [Remote host closed the connection] 00:00:23 !apt gr 00:00:23 Gr: Fighting: 1, Short: -1, Long: -1, Axes: -1, Maces: 0, Polearms: -1, Staves: 0, Slings: -1, Bows: 0, Xbows: 0, Throw: -1, Armour: 1, Dodge: -2, Stealth: 2, Shields: 1, UC: 0, Splcast: -1, Conj: 1, Hexes: -1, Charms: -1, Summ: -1, Nec: -2, Tloc: -1, Tmut: -2, Fire: 0, Ice: 0, Air: -2, Earth: 2, Poison: 0, Inv: 1, Evo: -1, Exp: 0, HP: -2, MP: 0 00:00:56 PleasingFungus: how do I get the ancestor's HD? 00:01:14 specifically in mon-info and mon-util 00:01:28 oh, i can get the monster with monster* ancestor = hepliaklqana_ancestor_mon(); 00:02:07 -!- omnirizon has quit [Ping timeout: 240 seconds] 00:02:53 <|amethyst> where are you doing the shuffle exactly? 00:03:44 _join_hep 00:05:07 -!- ontoclasm has quit [Ping timeout: 240 seconds] 00:05:55 chequers: important note: the ancestor may or may not exist at any given time 00:06:04 -!- travis-ci has joined ##crawl-dev 00:06:05 The build passed. (ukayaw - 5e54b36 #4774 : Corin Buchanan-Howland): https://travis-ci.org/crawl/crawl/builds/110036026 00:06:06 -!- travis-ci has left ##crawl-dev 00:06:23 <|amethyst> chequers: are you saving this in player properties somewhere? 00:06:33 <|amethyst> chequers: on joining, I mean 00:06:34 PleasingFungus: I'm assuming the functions to check if it resists/sinv are only called if the ancestor exists 00:06:38 |amethyst: yes 00:06:43 um 00:06:46 you.props[RF_KEY] = 11 00:06:52 why not just use get_experience_level()...? 00:07:06 I don't know why you need to go through hepliaklqana_ancestor_mon() 00:07:16 PleasingFungus: I thought it's based on the monster's HD not the player XL 00:08:17 I guess the mon-util function doesn't have access to a specific monster 00:08:32 could make _hepliaklqana_ally_hd() non-static 00:08:40 and mon-info (for sinv) 00:08:49 that might be simpler than this mess 00:08:51 well 00:08:55 mon-info does have HD avialable 00:08:57 *available 00:08:59 it's called "hd" 00:08:59 oh? 00:09:09 c.f.: how sinv works there right now 00:09:17 also important note: ?/m exists 00:09:36 I think making that function non-static is the way to go here 00:09:45 i'll do that 00:10:45 -!- zxc has joined ##crawl-dev 00:10:48 !tell Lasty https://www.reddit.com/r/dcss/comments/469nf6/stone_soup_on_twitch/d03zsl8 is what the common man thinks of ru sacs 00:10:48 amalloy: OK, I'll let lasty know. 00:12:23 -!- ontoclasm has joined ##crawl-dev 00:17:33 -!- Siegurt has quit [Quit: Leaving.] 00:17:45 is there some way I can use you.props data without needing to call it as .get_int() all the time? 00:18:37 -!- PsyMar has quit [Ping timeout: 240 seconds] 00:19:58 -!- ProzacElf has joined ##crawl-dev 00:20:01 you can save the result of get_int() 00:20:03 -!- Siegurt has joined ##crawl-dev 00:20:56 int& foo = you.props[FOO_KEY].get_int(); foo = foo + 1; // or whatever 00:21:14 or anyway i think that should work 00:22:31 -!- glaas has quit [Ping timeout: 276 seconds] 00:22:39 yeah, i'm just using these variables all over the code 00:23:38 <|amethyst> CrawlStoreValue (the thing you get from you.props[foo]) actually has operators to cast whatever types using get_blah 00:23:41 PleasingFungus: http://dpaste.com/19Q3HAM and http://dpaste.com/2B6FVBQ 00:23:51 <|amethyst> meaning you can do just int &foo = you.props[FOO_KEY]; 00:24:09 oh, that makes sense 00:24:54 -!- PleasingFungus has quit [Quit: ChatZilla 0.9.92 [Firefox 44.0.2/20160210153822]] 00:25:30 <|amethyst> chequers: unlock_hds is only used in _join_hepliaklqana(), right? 00:25:36 |amethyst: it doesn't seem to implicitly cast in a case like: if (hd >= you.props[HEPLIAKLQANA_RESIST_COLD_KEY].get_int()) 00:25:44 |amethyst: right 00:25:54 <|amethyst> yeah, in that case you need an explicit .get_int() or an explicit cast 00:25:58 rats 00:26:12 <|amethyst> since it doesn't know if you want to convert to int or to short or to what 00:26:50 <|amethyst> chequers: re unlock_hds, I'd make it a local (and non-static) variable in _join_hep 00:27:29 I was hoping to keep the two arrays together, I guess I can put the other one above _join_hep 00:27:45 why non-static? 00:28:01 <|amethyst> the non-static doesn't matter that much 00:28:02 -!- Siegurt has quit [Quit: Leaving.] 00:28:15 <|amethyst> but basically whether you want to keep around those 12 bytes forever, or only while the function is executing 00:28:22 -!- Grivan has quit [Ping timeout: 265 seconds] 00:28:22 ah 00:28:32 is there a way to oneline define and shuffle an array? 00:29:24 -!- nosratheno has quit [Quit: Zzzzz] 00:29:36 <|amethyst> not presently anyway 00:30:54 <|amethyst> chequers: you can't move hep_unlocks to just above _join_hep, since it's needed further up in upgrade_hep_ancestor 00:31:18 just discovered that. I'll add a comment and convert the COMPILE_CHECK to an ASSERT 00:31:31 <|amethyst> ? 00:31:45 -!- ontoclasm1 has joined ##crawl-dev 00:31:58 <|amethyst> does COMPILE_CHECK on a local array not work? 00:32:06 oh, I assumed not 00:32:22 <|amethyst> as long as the size is known at compile time I think it should 00:32:35 <|amethyst> and since C++ doesn't have C-style variable-length-arrays... 00:32:47 <|amethyst> s/h-a/h a/ 00:32:49 ok yep, it works 00:33:16 -!- ontoclasm has quit [Ping timeout: 250 seconds] 00:36:54 hm, it would be nice to now push item and spiked armour stuff into this array now, but that can come later 00:37:37 !tell pleasingfungus https://github.com/alexjurkiewicz/crawl-ref/tree/combo_god if you want an actual PR I'll open one 00:37:38 chequers: OK, I'll let pleasingfungus know. 00:39:07 -!- dtsund has quit [Quit: dtsund] 00:41:56 -!- vev has quit [Remote host closed the connection] 00:43:35 -!- FireSight has quit [] 00:44:53 -!- st_ has quit [Ping timeout: 240 seconds] 00:48:52 -!- ontoclasm1 has quit [Ping timeout: 250 seconds] 00:50:08 -!- ontoclasm has joined ##crawl-dev 00:51:22 I just realized the pakellas magic potion buff nerfed pakellas for mu 00:52:22 -!- TAS_2012v has quit [] 00:55:25 learn del mu_reasons 00:55:41 -!- bluewall has quit [Client Quit] 00:56:46 ??helpal 00:57:17 ??johnstein 01:00:06 -!- omarax has quit [Remote host closed the connection] 01:02:54 I seem to be unable to train invo even though the Romanticize ability says it's improved by it 01:03:28 Unstable branch on crawl.s-z.org updated to: 0.18-a0-1350-g404b4cb (34) 01:04:04 !tell pleasingfungus console combo_gods is updated. webtiles is updated, but requires a reboot of the server, which I'll do later tonight when fewer players are logged in. 01:04:04 johnstein: OK, I'll let pleasingfungus know. 01:04:39 any reason why ?? doesn't seem to be working for me in here? was there a change recently or is it just something wrong with my PC and phone IRC clients? 01:04:45 ??trog 01:06:37 ??trog 01:06:44 <|amethyst> ??trog 01:07:11 <|amethyst> !learn q trog 01:07:12 trog[1/8]: God of anger and violence. Expects followers to kill constantly in his name; hates magic and all who practice it. 01:07:15 <|amethyst> trog?? 01:07:24 <|amethyst> I guess that feature was removed 01:08:14 Game keeps crashing with an in-progress character. 13https://crawl.develz.org/mantis/view.php?id=10288 by aleksil 01:08:41 -!- asdu has quit [Quit: Page closed] 01:09:26 that's a beh, isn't it? i don't really know how those work, but maybe someone futzed with it 01:09:47 <|amethyst> !learn q :beh:[1] 01:09:47 :beh:[1/25]: $bot: help ::: $(ldb help) 01:09:49 <|amethyst> !learn q :beh:[2] 01:09:49 :beh:[2/25]: cang ::: cang 01:09:50 <|amethyst> !learn q :beh:[3] 01:09:50 :beh:[3/25]: <<<([^!]|^)\bgong\b>>> ::: $(weighted-rand 40:GONNNNG BOUMMMMG PTOANNNG PANG SHROANNG)! ::: continue 01:09:53 <|amethyst> !learn q :beh:[4] 01:09:53 :beh:[4/25]: /me >>> ::: $(if (not (rand 100)) (if (match Sequell $after) "/me $(replace Sequell $user $after)" "/me also $after")) ::: continue 01:09:55 <|amethyst> !learn q :beh:[5] 01:09:55 :beh:[5/25]: r\?\? ::: $(randnth $(ldb-search-entries .)) ::: last 01:10:03 <|amethyst> r??trog 01:10:18 <|amethyst> cang 01:10:18 uhh 01:10:18 Yer amulet o' regeneration glows black fer a momn't. _Yer foreclaws be bound. Ye be moderately bound. 01:10:39 does this imply that in batform i'm hanging on to my amulet with my....wings? 01:10:53 my little feet? 01:12:42 -!- Naruni has quit [] 01:13:31 <|amethyst> ProzacElf: it's talking about you melded weapon in the "foreclaws" bit 01:13:38 weird 01:13:59 why would it give me that message for cursing the amulet? 01:15:49 sorry, I don't accept bug reports in foreign languages 01:16:28 <|amethyst> I'm guessing a bug related to bondage calculation for melded equipment 01:18:36 huh 01:18:55 chequers: do i have to use australian idioms or something/ 01:18:57 ? 01:19:36 yes mate 01:19:58 checkmate australians 01:20:14 i just said i'm australian, not czech 01:20:30 also I didn't touch the bondage calculations so it's probably an old bug 01:20:47 that would be australian checks, mate 01:22:21 ProzacElf: i can't replicate it 01:22:33 <|amethyst> chequers: are you in bat form? 01:23:03 yes 01:23:11 ah yes 01:23:33 if your weapon is cursed, and you curse something else while in a form, you get a message about your weapon 01:23:36 or perhaps anything melded 01:24:35 hm 01:24:35 You finish putting on your +0 pair of boots. 01:24:38 Your weapon hand is bound but not your shield hand. 01:24:45 that's without a form 01:24:53 apparently the game just likes telling me this 01:25:37 -!- Harudoku has quit [Ping timeout: 240 seconds] 01:25:42 weapon is the most important slot, after ll 01:26:56 <|amethyst> aha 01:27:05 ??ll 01:27:10 <|amethyst> else if (cursed[s] > slots[s]) 01:27:10 <|amethyst> new_bondage[s] = 3; 01:27:59 i remember trying to understand that function when writing hand-cursing, and despite |amethyst patiently explaining it at least twice I still didn't get it 01:31:00 !tell gammafunk merge meee https://github.com/crawl/crawl/pull/193 01:31:00 chequers: OK, I'll let gammafunk know. 01:31:09 -!- amalloy is now known as amalloy_ 01:31:18 -!- molotove has quit [Client Quit] 01:31:33 <|amethyst> hmm 01:31:43 question 01:31:49 <|amethyst> no, this actually changed the bondage level of my hands 01:31:54 how come hepli has the same colored altar as ru 01:32:53 oh right. my weapon was already cursed 01:33:10 <|amethyst> my bondage levels were 2, 2, 0, 1, then cursing my body armour made that 3, 3, 0, 1 01:33:30 <|amethyst> (those are weapon, shield, armour, jewels) 01:33:45 -!- molotove has quit [Client Quit] 01:38:12 <|amethyst> oh, I think I may see where this is coming from 01:38:22 <|amethyst> well, one place this may be coming from 01:38:41 <|amethyst> let's say you had a 1H weapon and a shield cursed in your normal form 01:38:51 <|amethyst> and let's say your normal form is human 01:39:15 <|amethyst> your bondage level for weapon and shield is {2, 2} 01:39:22 <|amethyst> now you become a bat 01:39:32 <|amethyst> your 1H weapon is probably 2H now 01:39:45 <|amethyst> so your bondage level is at least {3, 2} 01:39:57 <|amethyst> that's an increase over what it was last time it was calculated 01:40:04 <|amethyst> so it gets reported 01:42:38 -!- WalkerBoh has quit [Remote host closed the connection] 01:42:53 obscure 01:43:03 imagining a bat with a buckler now 01:45:09 -!- Hellmonk has quit [Quit: Page closed] 01:47:06 <|amethyst> not sure if this is the only problem, but this particular one looks like it wouldn't happen with formicids 01:49:36 i did also have a buckler 01:51:08 <|amethyst> I think it doesn't actually depend on having the shield, just having a weapon that's 1H in your base form 01:51:37 <|amethyst> since even daggers are two-handed for SIZE_TINY 01:54:46 <|amethyst> chequers: the message about your hand after putting on the boots... 01:55:00 <|amethyst> chequers: had you just changed back to normal form before doing that? 01:57:38 -!- simmarine has quit [Read error: Connection reset by peer] 02:00:06 -!- omarax has quit [Remote host closed the connection] 02:02:06 <|amethyst> btw, I think this is mildly exploitable 02:02:07 -!- ussdefiant_Lappy has quit [Ping timeout: 240 seconds] 02:02:30 <|amethyst> hm, maybe not quite 02:02:58 <|amethyst> it would let your hands be fully bound even though you are wielding just a 1H weapon 02:03:24 <|amethyst> but I guess it's not exploitable, because if you then put on a shield your bondage would be recalculated 02:04:34 -!- Krakhan has quit [Ping timeout: 276 seconds] 02:15:50 -!- Zeor has quit [Quit: Leaving.] 02:23:19 -!- Twiggytwiggytwig has quit [Quit: See ya guys later ;)] 02:24:19 03|amethyst02 07* 0.18-a0-1351-gaffb144: Correct hand bondage calculation for small forms (ProzacElf) 10(18 minutes ago, 8 files, 16+ 11-) 13https://github.com/crawl/crawl/commit/affb1442906c 02:25:05 hm 02:26:19 -!- roxton has quit [Ping timeout: 268 seconds] 02:29:17 -!- HellTiger_NB has quit [Ping timeout: 240 seconds] 02:36:57 kinky 02:37:37 indeed 02:42:00 -!- Patashu has joined ##crawl-dev 02:44:57 -!- st_ has joined ##crawl-dev 02:45:07 -!- GauHelldragon has quit [Ping timeout: 240 seconds] 02:47:23 -!- Rotatell has quit [Remote host closed the connection] 02:48:00 -!- Rotatell has joined ##crawl-dev 02:50:29 -!- WalrusKing has quit [Ping timeout: 265 seconds] 02:51:30 -!- bitcoinbastard has quit [Ping timeout: 250 seconds] 02:53:23 hand bondage, is that what ht ekids call it 02:54:35 i guess so 02:56:03 -!- oxeimon has quit [Quit: Leaving.] 02:59:16 -!- oxeimon has quit [Client Quit] 03:00:08 -!- omarax has quit [Remote host closed the connection] 03:00:36 -!- ontoclasm has quit [Ping timeout: 250 seconds] 03:00:58 -!- edsrzf has joined ##crawl-dev 03:01:47 -!- KurzedMetal has quit [Read error: Connection reset by peer] 03:07:10 -!- Gorgo has quit [Quit: This computer has gone to sleep] 03:14:07 -!- mong has quit [Remote host closed the connection] 03:15:20 -!- ursan has quit [Ping timeout: 255 seconds] 03:19:20 -!- pikaro has quit [Ping timeout: 248 seconds] 03:19:25 -!- grimmulfr has quit [Remote host closed the connection] 03:24:17 Unstable branch on crawl.beRotato.org updated to: 0.18-a0-1351-gaffb144 (34) 03:28:34 -!- Siegurt has joined ##crawl-dev 03:33:45 I think I've started to notice Hep's conduct 03:34:18 what conduct? 03:34:26 you don't gain as much xp 03:34:31 ah 03:34:48 but that's true for summoners, beogh and yred worshippers, too 03:34:50 -!- Idolo has quit [] 03:44:07 -!- Siegurt has quit [Quit: Leaving.] 03:46:53 -!- amalloy_ is now known as amalloy 03:47:33 -!- KurzedMetal has quit [Read error: Connection reset by peer] 03:54:01 -!- infrashortfoo has joined ##crawl-dev 03:58:14 -!- namelastname112 has quit [Ping timeout: 252 seconds] 04:00:06 -!- omarax has quit [Remote host closed the connection] 04:00:14 -!- cmcbot has quit [Remote host closed the connection] 04:18:09 -!- ursan has quit [Ping timeout: 250 seconds] 04:20:04 -!- aditya has quit [Ping timeout: 240 seconds] 04:23:38 -!- Siegurt has joined ##crawl-dev 04:25:20 -!- ololoev has quit [Quit: Page closed] 04:34:07 -!- Siegurt has quit [Quit: Leaving.] 04:35:03 -!- edsrzf has quit [Ping timeout: 250 seconds] 04:36:38 -!- GauHelldragon has quit [Ping timeout: 240 seconds] 04:37:19 -!- Blazinghand has quit [Read error: Connection reset by peer] 05:00:07 -!- omarax has quit [Remote host closed the connection] 05:18:12 -!- infrashortfoo has quit [Ping timeout: 255 seconds] 05:18:34 -!- ursan has quit [Ping timeout: 240 seconds] 05:19:17 -!- GoblinBomb has quit [Ping timeout: 250 seconds] 05:19:54 !tell PleasingFungus first person to win a hep game! 05:19:54 Lightli: OK, I'll let pleasingfungus know. 05:22:01 -!- MgDark has quit [Read error: Connection reset by peer] 05:23:00 !tell PleasingFungus Went with a knight for the ancestor; one thing I noticed was that you generally don't want the ancestor around except when needed because it steals away some of your exp, and thus ironically meaning the fastest way to get your ancestor stronger is to never use it 05:23:01 Lightli: OK, I'll let pleasingfungus know. 05:24:26 isn't ancestor classing supposed to happen at ***? 05:25:03 FIQ: No, ** 05:25:06 mkay 05:25:06 *** is Romanticize 05:25:10 !tell PleasingFungus Was still able to ding XL27 before Zot:$, although it was as a HO and required me to do everything outside of Extended and then Slime to boot (although I think I would have dinged XL27 before Zot:$ even without the Slime EXP) 05:25:10 Lightli: OK, I'll let pleasingfungus know. 05:25:12 so monks get it right away 05:25:21 nice 05:27:02 !tell PleasingFungus HD18 knight is kind of absurd; even without using Romanticize to heal it back up it still stood a good chance of killing an orb of fire 1v1, same thing with elec golems, and ripped ancient liches to pieces pretty easily 05:27:02 Lightli: OK, I'll let pleasingfungus know. 05:28:04 -!- infrashortfoo has joined ##crawl-dev 05:28:31 !tell PleasingFungus Maybe the XP part could become a conduct of some sort? 05:28:32 Lightli: OK, I'll let pleasingfungus know. 05:33:38 -!- sorlin has quit [Ping timeout: 240 seconds] 05:52:51 -!- ololoev has quit [Client Quit] 05:58:50 -!- ProzacElf has quit [Ping timeout: 248 seconds] 06:00:06 -!- omarax has quit [Remote host closed the connection] 06:08:31 -!- KamiKatze has quit [Quit: Page closed] 06:23:19 -!- amalloy is now known as amalloy_ 06:25:38 -!- infrashortfoo has quit [Ping timeout: 240 seconds] 06:29:27 !tell PleasingFungus Small bug/feature: gear of your ancestor is identified, together with same gear on the floor. 06:29:27 Xenobreeder: OK, I'll let pleasingfungus know. 06:33:23 -!- Shard1697 has quit [Ping timeout: 250 seconds] 06:35:33 -!- dpeg has joined ##crawl-dev 06:39:18 !tell PleasingFungus Actually it's worse: the items are sometimes duplicated on the floor. 06:39:19 Xenobreeder: OK, I'll let pleasingfungus know. 06:40:09 !tell PleasingFungus http://pastebin.com/sBE6hf2V 06:40:10 Xenobreeder: OK, I'll let pleasingfungus know. 06:40:18 -!- Ququman has joined ##crawl-dev 06:45:25 -!- ololoev has quit [Quit: Page closed] 06:47:40 -!- Siegurt has joined ##crawl-dev 06:48:04 -!- Siegurt has quit [Client Quit] 06:50:53 -!- sorlin1 has quit [Quit: Leaving.] 06:53:31 -!- mibe has quit [Ping timeout: 252 seconds] 06:58:31 -!- Bcadren has quit [Ping timeout: 250 seconds] 07:00:06 -!- omarax has quit [Remote host closed the connection] 07:12:18 -!- Patashu has quit [Ping timeout: 244 seconds] 07:13:15 -!- iFurril has quit [Ping timeout: 250 seconds] 07:20:30 -!- ursan has quit [Ping timeout: 240 seconds] 07:25:01 -!- siepu has quit [Ping timeout: 265 seconds] 07:50:55 -!- cang has quit [Quit: Page closed] 07:53:04 -!- Lasty has quit [Quit: Leaving.] 07:58:24 -!- MgDark has quit [Ping timeout: 255 seconds] 08:00:06 -!- omarax has quit [Remote host closed the connection] 08:00:54 -!- ketsa has quit [Quit: ChatZilla 0.9.92 [Firefox 44.0.2/20160210153822]] 08:10:08 -!- scummos__ has quit [Ping timeout: 240 seconds] 08:21:04 -!- ursan has quit [Ping timeout: 240 seconds] 08:24:21 -!- mizu_no_oto has quit [Quit: Computer has gone to sleep.] 08:28:26 -!- ololoev has quit [Client Quit] 08:36:42 -!- infrashortfoo has joined ##crawl-dev 08:47:15 Gozag doesn't bribe elves in Hall of Blades 13https://crawl.develz.org/mantis/view.php?id=10289 by kirsanium 09:00:06 -!- omarax has quit [Remote host closed the connection] 09:03:51 -!- Twiggytwiggytwig has quit [Quit: See ya guys later ;)] 09:05:38 -!- Bcadren has quit [Ping timeout: 240 seconds] 09:08:47 -!- Tux[Qyou] has joined ##crawl-dev 09:14:00 -!- waat has quit [Ping timeout: 248 seconds] 09:16:30 -!- siepu has quit [Ping timeout: 240 seconds] 09:19:20 <|amethyst> @??deep elf mage 09:20:03 -!- Gretell has joined ##crawl-dev 09:20:06 <|amethyst> @??deep elf kight 09:20:09 <|amethyst> @??deep elf mage 09:20:09 unknown monster: "deep elf kight" 09:20:12 deep elf mage (06e) | Spd: 10 | HD: 9 | HP: 35-47 | AC/EV: 1/12 | Dam: 5 | 10weapons, 10items, 10doors, spellcaster | Res: 06magic(40) | XP: 570 | Sp: b.cold (3d17), throw icicle (3d17), sum.ice beast, blink / b.draining (3d17), sum.demon, sum.vermin, blink / b.fire (3d17), sticky flame range (3d5), sum.fire elementals, blink / b.lightning (3d16), blink / b.magma (3d17), stone arrow (3d15), sum.earth elemen.. 09:20:13 <|amethyst> @??deep elf knight 09:20:15 <|amethyst> @??deep elf archer 09:20:18 deep elf knight (10e) | Spd: 10 | HD: 11 | HP: 43-58 | AC/EV: 1/16 | Dam: 21 | 10weapons, 10items, 10doors, fighter, spellcaster | Res: 06magic(80) | XP: 803 | Sp: stone arrow (3d18), mystic blast (3d16), haste / throw icicle (3d20), haste, invisibility | Sz: Medium | Int: human. 09:20:22 deep elf archer (07e) | Spd: 10 | HD: 10 | HP: 43-57 | AC/EV: 3/15 | Dam: 21 | 10weapons, 10items, 10doors, master archer, spellcaster | Res: 06magic(80) | XP: 664 | Sp: blink away, slow, confuse, repel missiles | Sz: Medium | Int: human. 09:23:23 huh, an apis showed up in depths 09:23:27 a real apis, no less 09:23:50 <|amethyst> there are a few vaults that have them 09:27:33 -!- radinms has quit [Ping timeout: 250 seconds] 09:32:15 -!- infrashortfoo has quit [Remote host closed the connection] 09:35:08 -!- WalrusKing has quit [Ping timeout: 240 seconds] 09:35:20 -!- infrashortfoo has joined ##crawl-dev 09:36:48 -!- BigBluFrog has quit [Quit: Page closed] 09:39:57 M4edhros (L24 OpMo) ASSERT(!newpos.origin()) in 'spl-goditem.cc' at line 850 failed. (Vaults:5) 09:40:40 <|amethyst> !tell wheals I suspect #10288 is related to the local tiles menu change... when I look at the % or ? screens, I get junk at the top of the screen, then a crash later. 09:40:41 |amethyst: OK, I'll let wheals know. 09:41:56 <|amethyst> !tell wheals crash seems to be in TextRegion's destructor 09:41:56 |amethyst: OK, I'll let wheals know. 09:46:16 -!- infrashortfoo has quit [Ping timeout: 244 seconds] 09:47:18 -!- debo has quit [Ping timeout: 244 seconds] 09:50:38 -!- Yermak has quit [Quit: Page closed] 09:51:51 -!- wheals has joined ##crawl-dev 09:55:15 -!- infrashortfoo has joined ##crawl-dev 09:55:25 <|amethyst> wheals: (maybe it's unrelated, but I don't think anything else has touched tiles code recently) 09:55:32 <|amethyst> s/tiles/local tiles/ 09:55:37 what happened 09:55:38 wheals: You have 2 messages. Use !messages to read them. 09:55:40 !messages 09:55:41 (1/2) |amethyst said (15m ago): I suspect #10288 is related to the local tiles menu change... when I look at the % or ? screens, I get junk at the top of the screen, then a crash later. 09:55:44 !messages 09:55:44 (1/1) |amethyst said (13m 48s ago): crash seems to be in TextRegion's destructor 09:55:56 well then 09:56:01 %git :/ocal tiles 09:56:01 07wheals02 * 0.18-a0-1325-g3f755e8: Local tiles: don't remove lines for the -more- and title twice. 10(3 days ago, 1 file, 2+ 2-) 13https://github.com/crawl/crawl/commit/3f755e8f9c12 09:56:03 <|amethyst> let me upload my crash log 09:56:24 <|amethyst> (since aleksil's is Windows it doesn't have a backtrace) 09:56:54 it's possible that i shouldn't have removed - title_height() 09:57:07 i can't remember now whether that does get accounted for 09:59:46 <|amethyst> oh nice 09:59:57 <|amethyst> apparently it corrupted the heap enough to crash valgrind 10:00:06 -!- omarax has quit [Remote host closed the connection] 10:00:09 wow 10:00:26 i'd say just revert it if nobody knows this code well enough to fix it 10:02:46 <|amethyst> backtrace and valgrind uploaded 10:02:55 <|amethyst> looks like a revert does fix it 10:03:12 <|amethyst> but 10:04:26 <|amethyst> it's kind of bad if making the pagesize too big in menu.cc causes a crash in tiles code 10:04:46 <|amethyst> let me try valgrind on the revert version 10:04:46 #justcrawlthings 10:05:35 <|amethyst> oh hey 10:05:46 <|amethyst> there is still a valgrind error after the revert, but not as bad 10:06:23 guess that's been around forever probably :P 10:06:31 <|amethyst> ==20724== Invalid read of size 1 10:06:32 <|amethyst> ==20724== at 0x87BEC89: InventoryRegion::pack_buffers() (tilereg-inv.cc:56) 10:06:37 <|amethyst> ==20724== Address 0xcdc1088 is 0 bytes after a block of size 72 alloc'd 10:06:37 <|amethyst> ==20724== at 0x4029DFC: operator new[](unsigned int) (vg_replace_malloc.c:383 10:06:40 <|amethyst> ) 10:06:43 <|amethyst> ==20724== by 0x87BE0C6: GridRegion::on_resize() (tilereg-grid.cc:60) 10:09:01 <|amethyst> the relevant lines for that are: 10:09:09 <|amethyst> tileidx_t t = env.tile_default.floor + m_flavour[i] % num_floor; 10:09:19 <|amethyst> where m_flavour was allocated as m_flavour = new unsigned char[mx * my]; 10:09:29 <|amethyst> and i is 0 + (m_grid_page*mx*my - m_grid_page*2) 10:09:59 <|amethyst> oh, i starts at that value 10:10:08 -!- fallenxxxsky has quit [Ping timeout: 264 seconds] 10:10:13 <|amethyst> and is incremented mx*my tiles 10:10:30 <|amethyst> s/tiles/times/ 10:12:06 -!- debo has joined ##crawl-dev 10:13:15 <|amethyst> hm 10:13:26 <|amethyst> well, I don't think I have time at the moment to investigate that, but 10:13:35 <|amethyst> I can at least push the revert 10:14:32 <|amethyst> wheals: I kind of wonder whether the -1 is the problem 10:14:39 <|amethyst> wheals: rather than the whole thing 10:15:18 the -1 especially worries me since the more is not always 1 row 10:15:23 for example, on the shop menu 10:15:27 <|amethyst> hm 10:15:35 but it didn't crash in my tests for it, so... 10:15:39 <|amethyst> but MenuRegion::maxpagesize does seem to take both into account 10:15:48 <|amethyst> oh 10:16:00 <|amethyst> maxpagesize counts the more it looks like 10:16:06 <|amethyst> but I can't see where it counts the title 10:16:15 yeah i think i misread it 10:16:20 <|amethyst> so let me try 10:17:42 <|amethyst> hm, no 10:18:05 <|amethyst> just changing it to pagesize = max_pagesize - title_height(); doesn't give me the junk at the top of the page 10:18:17 <|amethyst> but I still gt a double free and a crash 10:18:32 -!- West1C has quit [Ping timeout: 248 seconds] 10:21:45 03|amethyst02 07* 0.18-a0-1352-g62dae19: Revert "Local tiles: don't remove lines for the -more- and title twice." (#10288) 10(27 minutes ago, 1 file, 2+ 3-) 13https://github.com/crawl/crawl/commit/62dae190788a 10:22:34 -!- kunwon1 has quit [Quit: Specialization is for Insects] 10:23:06 <|amethyst> wheals: did you close anything when you committed 3f755e8? 10:23:11 <|amethyst> wheals: if so I can re-open 10:23:38 no, it was just PF pointing out that stuff looked ugly 10:23:52 and it turned out it had always looked like that 10:33:01 03|amethyst02 07* 0.18-a0-1353-gf2a912f: Add generated grind.log to .gitignore 10(32 seconds ago, 1 file, 3+ 0-) 13https://github.com/crawl/crawl/commit/f2a912f44c85 10:34:38 -!- SurpriseTRex has quit [Ping timeout: 240 seconds] 10:39:15 -!- radinms_ has quit [] 10:39:20 -!- siepu has quit [Quit: Leaving] 10:42:03 -!- ussdefiant_Lappy has joined ##crawl-dev 10:45:10 -!- BigBluFrog has quit [Quit: Page closed] 10:52:00 -!- West1C_ has quit [] 10:53:54 -!- infrashortfoo has quit [Ping timeout: 255 seconds] 10:58:01 -!- LexAckson_ has joined ##crawl-dev 10:59:09 -!- nikheizen has joined ##crawl-dev 11:00:06 -!- omarax has quit [Remote host closed the connection] 11:01:56 -!- Culka has quit [Read error: Connection reset by peer] 11:02:45 -!- thrig has quit [Read error: Connection reset by peer] 11:03:19 -!- pikaro has quit [Ping timeout: 250 seconds] 11:08:52 -!- _Dash_Nine_ is now known as DashNine 11:08:52 -!- knu has quit [Quit: Reboot...] 11:09:50 -!- infrashortfoo has joined ##crawl-dev 11:10:56 -!- DashNine has quit [Client Quit] 11:15:25 !tell PleasingFungus If the ancestor locks on an invisible target it just stops moving and does nothing while the target is alive. 11:15:25 Xenobreeder: OK, I'll let pleasingfungus know. 11:18:51 -!- simmarine has joined ##crawl-dev 11:35:07 -!- MarvinPA has joined ##crawl-dev 11:35:56 -!- ursan has quit [Ping timeout: 276 seconds] 11:37:38 -!- ussdefiant_Lappy has quit [Ping timeout: 240 seconds] 11:37:41 -!- Kellhus has quit [Ping timeout: 252 seconds] 11:43:23 -!- ontoclasm has joined ##crawl-dev 11:56:23 -!- nikheizen has quit [Quit: leaving] 12:00:07 -!- omarax has quit [Remote host closed the connection] 12:00:34 -!- nikheizen has joined ##crawl-dev 12:00:59 -!- infrashortfoo has quit [Remote host closed the connection] 12:02:24 -!- grimmulfr has quit [Remote host closed the connection] 12:13:50 -!- Twiggytwiggytwig has quit [Quit: See ya guys later ;)] 12:17:18 -!- WalrusKing has quit [Ping timeout: 240 seconds] 12:22:13 -!- amalloy_ is now known as amalloy 12:25:12 -!- edsrzf has joined ##crawl-dev 12:25:59 Unstable branch on crawl.akrasiac.org updated to: 0.18-a0-1353-gf2a912f (34) 12:28:30 -!- lobf has joined ##crawl-dev 12:30:48 -!- lobf has quit [Client Quit] 12:32:06 -!- oxeimon has quit [Quit: Leaving.] 12:32:24 -!- mopl has quit [Quit: Page closed] 12:42:04 -!- ontoclasm has quit [Ping timeout: 240 seconds] 12:48:44 -!- scummos__ has quit [Ping timeout: 276 seconds] 13:00:07 -!- omarax has quit [Remote host closed the connection] 13:05:24 -!- lobf has joined ##crawl-dev 13:07:06 -!- CanOfWorms has joined ##crawl-dev 13:07:24 -!- amalloy is now known as amalloy_ 13:07:50 -!- amalloy_ is now known as amalloy 13:16:01 -!- oxeimon has quit [Quit: Leaving.] 13:17:18 -!- amalloy is now known as amalloy_ 13:17:35 -!- GauHelldragon has quit [Ping timeout: 244 seconds] 13:19:59 -!- Goon_ has quit [Ping timeout: 252 seconds] 13:21:41 Oroborous (L24 DsGl) ASSERT(you.see_cell(target())) in 'directn.cc' at line 1193 failed. (Vaults:5) 13:25:51 -!- Goon_ has quit [Ping timeout: 252 seconds] 13:30:28 -!- molotove has quit [Quit: Leaving.] 13:33:04 -!- pikaro has quit [Ping timeout: 240 seconds] 13:35:44 -!- dpeg has quit [Quit: Lost terminal] 13:41:41 !learn add lasty_to_do[1 Look over https://crawl.develz.org/mantis/view.php?id=10255 13:41:42 lasty to do[1/5]: Look over https://crawl.develz.org/mantis/view.php?id=10255 13:45:28 -!- WorkSight has quit [Quit: Leaving...] 13:47:07 -!- Goon_ has quit [Ping timeout: 252 seconds] 13:49:19 !crashlog 13:49:20 13029. Oroborous, XL24 DsGl, T:84190 (milestone): http://crawl.akrasiac.org/rawdata/Oroborous/crash-Oroborous-20160218-182135.txt 13:54:29 -!- Medar has quit [Quit: ] 13:58:14 -!- molotove has quit [Client Quit] 13:59:42 -!- oxeimon has quit [Quit: Leaving.] 14:00:07 -!- omarax has quit [Remote host closed the connection] 14:02:50 -!- amalloy_ is now known as amalloy 14:03:25 -!- molotove has quit [Client Quit] 14:05:54 -!- molotove has quit [Client Quit] 14:08:06 -!- Zekka has quit [Ping timeout: 240 seconds] 14:08:50 -!- oxeimon has quit [Quit: Leaving.] 14:09:22 -!- Shard1697 has joined ##crawl-dev 14:13:30 -!- ProzacElf has joined ##crawl-dev 14:14:51 -!- oxeimon has quit [Client Quit] 14:26:38 -!- oxeimon has quit [Ping timeout: 240 seconds] 14:31:08 -!- WorkSight has quit [Ping timeout: 240 seconds] 14:34:08 -!- zxc has quit [Read error: Connection reset by peer] 14:34:28 -!- molotove has quit [Quit: Leaving.] 14:39:09 -!- IceBlind has quit [Remote host closed the connection] 14:46:01 -!- BigBluFrog has quit [Quit: Page closed] 14:54:47 -!- Kalir has quit [Changing host] 14:55:17 -!- CanOfWorms has quit [Quit: ChatZilla 0.9.92 [Firefox 3.6.28/20120306064154]] 14:55:44 -!- Zekka has quit [Read error: Connection reset by peer] 15:00:07 -!- omarax has quit [Remote host closed the connection] 15:03:50 -!- edsrzf has quit [Ping timeout: 250 seconds] 15:09:30 -!- edsrzf has joined ##crawl-dev 15:11:40 -!- lobf_ has joined ##crawl-dev 15:12:07 -!- WereVolvo has quit [Ping timeout: 255 seconds] 15:12:07 -!- molotove has quit [Ping timeout: 255 seconds] 15:12:07 -!- myp has quit [Ping timeout: 255 seconds] 15:12:07 -!- Ladykiller69 has quit [Ping timeout: 255 seconds] 15:12:07 -!- cmcbot has quit [Ping timeout: 255 seconds] 15:12:08 -!- FiftyNine has quit [Ping timeout: 255 seconds] 15:12:08 -!- neongrey has quit [Ping timeout: 255 seconds] 15:12:08 -!- Mike57 has quit [Ping timeout: 255 seconds] 15:12:08 -!- fazizzz has quit [Ping timeout: 255 seconds] 15:12:08 -!- Krenium has quit [Ping timeout: 255 seconds] 15:12:12 -!- lobf has quit [Ping timeout: 255 seconds] 15:12:12 -!- lobf_ is now known as lobf 15:12:13 -!- PsyMar has quit [Ping timeout: 255 seconds] 15:12:28 -!- PsyMar2 is now known as PsyMar 15:12:36 -!- wHATEver is now known as Guest88072 15:12:39 -!- Guest88072 has quit [Ping timeout: 255 seconds] 15:13:00 -!- BigBluFrog has quit [Quit: Page closed] 15:14:08 -!- LexAckson_ has quit [Read error: Connection reset by peer] 15:15:57 -!- dtsund has joined ##crawl-dev 15:16:19 -!- LexAckson has joined ##crawl-dev 15:20:03 -!- zol1 is now known as zol 15:21:44 Ultros (L17 DECj) ASSERT(!aimed_at_feet || source == target) in 'beam.cc' at line 625 failed. (Spider:4) 15:22:04 -!- serq has quit [Changing host] 15:24:57 Ultros (L17 DECj) ASSERT(!aimed_at_feet || source == target) in 'beam.cc' at line 625 failed. (Spider:4) 15:29:42 -!- Zekka has quit [Ping timeout: 240 seconds] 15:32:11 -!- Patashu has joined ##crawl-dev 15:34:04 -!- edsrzf has quit [Ping timeout: 240 seconds] 15:35:17 -!- Dakoteus has quit [Remote host closed the connection] 15:42:15 -!- scummos__ has quit [Read error: Connection reset by peer] 15:42:49 -!- ProzacElf has quit [Ping timeout: 248 seconds] 15:45:04 -!- edsrzf has joined ##crawl-dev 15:46:06 -!- Patashu has quit [Ping timeout: 240 seconds] 15:47:36 -!- Harudoku has quit [Remote host closed the connection] 15:52:59 -!- Ratboiler has quit [Quit: Page closed] 15:54:46 Azmund (L13 DsGl) ASSERT(hepliaklqana_ancestor() == MID_NOBODY) in 'mon-death.cc' at line 2610 failed. (Lair:4) 15:55:27 Azmund (L13 DsGl) ASSERT(hepliaklqana_ancestor() == MID_NOBODY) in 'mon-death.cc' at line 2610 failed. (Lair:4) 15:55:48 !tell pleasingfungus !crashlog azmund 15:55:48 wheals: OK, I'll let pleasingfungus know. 15:56:22 Azmund (L13 DsGl) ASSERT(hepliaklqana_ancestor() == MID_NOBODY) in 'mon-death.cc' at line 2610 failed. (Lair:4) 15:59:51 -!- Shinino has quit [Ping timeout: 252 seconds] 16:00:07 -!- omarax has quit [Remote host closed the connection] 16:03:25 -!- WereVolvo1 has quit [Read error: Connection reset by peer] 16:06:40 -!- PsyMar has quit [Ping timeout: 250 seconds] 16:20:38 -!- Bcadren has quit [Ping timeout: 276 seconds] 16:23:54 -!- DashNine has quit [Quit: Process terminated] 16:27:48 -!- ursan has quit [Ping timeout: 255 seconds] 16:38:37 -!- Zargon has quit [Quit: Page closed] 16:40:06 -!- molotove1 has quit [Ping timeout: 240 seconds] 16:41:18 -!- SurpriseTRex_ has quit [Read error: Connection reset by peer] 16:41:24 -!- oxeimon has quit [Quit: Leaving.] 16:43:33 -!- wheals has quit [Quit: Leaving] 16:44:14 -!- KurzedMetal has quit [Read error: Connection reset by peer] 16:45:20 -!- MarvinPA has quit [Ping timeout: 276 seconds] 16:50:05 -!- jetnerd has quit [Ping timeout: 252 seconds] 16:56:54 -!- Krakhan has quit [Changing host] 17:00:07 -!- omarax has quit [Remote host closed the connection] 17:00:16 -!- cmcbot has quit [Remote host closed the connection] 17:03:32 -!- LexAckson has quit [Ping timeout: 276 seconds] 17:04:19 -!- ontoclasm1 has joined ##crawl-dev 17:14:18 -!- BigBluFrog has quit [Quit: Page closed] 17:18:17 -!- MarvinPA has joined ##crawl-dev 17:22:45 -!- Kellhus has quit [Quit: Page closed] 17:24:26 -!- ProzacElf has joined ##crawl-dev 17:30:22 -!- Zargon has quit [Quit: Page closed] 17:30:30 -!- amalloy is now known as amalloy_ 17:31:03 -!- amalloy_ is now known as amalloy 17:32:18 -!- zeeratt has quit [Quit: Page closed] 17:33:52 -!- Ladykiller70 has quit [Read error: Connection reset by peer] 17:39:43 -!- ystael has quit [Ping timeout: 240 seconds] 17:42:40 -!- sorlin has quit [Quit: Leaving.] 17:43:59 -!- Tux[Qyou] has quit [Read error: Connection reset by peer] 17:46:11 -!- jetnerd has quit [Ping timeout: 252 seconds] 17:50:09 -!- sorlin has quit [Ping timeout: 255 seconds] 17:51:18 -!- mamgar has quit [Ping timeout: 240 seconds] 17:53:59 -!- WalrusKing has quit [Quit: Leaving] 17:55:09 -!- ursan has quit [Ping timeout: 240 seconds] 18:00:07 -!- omarax has quit [Remote host closed the connection] 18:03:02 -!- wheals has joined ##crawl-dev 18:10:00 Unstable branch on underhound.eu updated to: 0.18-a0-1353-gf2a912f (34) 18:13:32 -!- serq has quit [Quit: leaving] 18:20:34 -!- molotove has quit [Quit: Leaving.] 18:22:21 -!- MarvinPA has quit [Quit: Leaving] 18:23:14 Splash screen of armored man w/ halberd not displaying correctly. 13https://crawl.develz.org/mantis/view.php?id=10290 by ozyx 18:24:05 -!- pikaro has quit [Ping timeout: 240 seconds] 18:27:04 -!- IrkenInvader has quit [Quit: Page closed] 18:27:32 -!- Lasty has joined ##crawl-dev 18:28:45 the korean tier list is so interesting 18:28:56 the meta is so different 18:30:07 oh? 18:30:09 chequers: I'm pleased by how similar it is -- relatively close overall 18:30:09 Lasty: You have 1 message. Use !messages to read it. 18:30:24 what's their meta consist of? 18:30:30 you https://crawl.develz.org/tavern/viewtopic.php?f=17&t=19180&view=unread#unread 18:31:00 yred is considered by far the best midgame god 18:31:25 -!- KamiKatze has quit [Quit: Page closed] 18:31:41 <|amethyst> these diagrams would be so much easier to understand if they used letters 18:31:49 <|amethyst> rather than tiles :) 18:32:35 i guess the beogh thing isn't actually real 18:32:54 i think they just like ally gods 18:36:10 my evil plan is working... 18:36:13 -!- siepu has quit [Read error: Connection reset by peer] 18:36:23 every time i see that diagram i remember it uses tiles, and i just give up 18:36:38 chequers: i've often heard that ckr is unnervingly obsessed with shephereding allies around 18:38:41 !lg * lld current / god=beogh|yred 18:38:42 40/4979 games for * (lld current): N=40/4979 (0.80%) 18:38:46 !lg * !lld current / god=beogh|yred 18:38:48 4107/430878 games for * (!lld current): N=4107/430878 (0.95%) 18:39:25 !lg * ckr current / god=beogh|yred 18:39:26 No games for * (ckr current). 18:39:31 !lg * ckr recent / god=beogh|yred 18:39:32 No games for * (ckr recent). 18:39:37 rip logfiles? 18:39:45 oh cwz right 18:39:50 !lg * cwz current / god=beogh|yred 18:39:52 561/62344 games for * (cwz current): N=561/62344 (0.90%) 18:39:54 !lg * !cwz current / god=beogh|yred 18:39:55 3586/373519 games for * (!cwz current): N=3586/373519 (0.96%) 18:40:18 !lg * cwz recent / god=yred 18:40:19 757/167261 games for * (cwz recent): N=757/167261 (0.45%) 18:40:20 !lg * !cwz recent / god=yred 18:40:22 4636/1049206 games for * (!cwz recent): N=4636/1049206 (0.44%) 18:40:53 maybe it's just a trend among better players there? 18:41:25 or some individual players with influence 18:42:22 -!- FiftyNine has quit [Ping timeout: 255 seconds] 18:42:27 oh yes 18:42:42 can't keep track of kr renames 18:42:58 might just be a temporary meme us westerners randomly picked up and assumed was a long term thing 18:45:57 "us westerners". don't try to associate yourself with us, you wacky kiwi 18:49:03 hey! 18:49:08 ...also distinct from US westerners >.> 18:50:01 -!- zol has quit [Disconnected by services] 18:58:01 chequers: to be fair, the ally gods are pretty good 18:58:27 well, Yred is really good, and Beogh means you're a HO 18:58:31 which is really good 18:59:11 -!- molotove has quit [Quit: Leaving.] 18:59:57 yeah, Hepli has to compete with Yred's undead gifts and Beogh's orcs 19:00:07 -!- omarax has quit [Remote host closed the connection] 19:00:49 and you only have one ancestor while you can have 3 (total) bone dragons and profane servitors or as many orc warlords as you can level up/raise 19:02:21 -!- WebFungus has joined ##crawl-dev 19:02:27 the Great Korean Beogh Obsession turned out to be 3 or 4 people, iirc 19:02:38 which is pretty funny 19:03:17 it's probably time for another trunk updates post 19:03:30 i'll draft something up? 19:03:54 I can poke at it 19:04:43 hi WebFungus 19:04:49 !lg . combogod log 19:04:50 No keyword 'combogod' 19:04:56 !lg . experimental 19:04:57 26. Lightli the Executioner (L27 HOGl of Hepliaklqana), escaped with the Orb and 4 runes on 2016-02-18 10:16:56, with 2390588 points after 68546 turns and 2:18:00. 19:05:04 dang... 19:05:08 first to win him 19:05:12 nice! 19:05:18 what ally type did you choose? 19:05:22 knight 19:05:29 knight might be a bit too good 19:06:08 !log Lightli hogl 19:06:08 26. Lightli, XL27 HOGl, T:68546: http://crawl.berotato.org/crawl/morgue/Lightli/morgue-Lightli-20160218-101656.txt 19:06:10 I commented by doing !tell towards your PleasingFungus name 19:06:27 I'll take a look when I get home 19:06:31 never used swap, huh 19:07:09 I forgot it existed, but it doesn't really go well when both you and it want to melee things 19:07:40 yeah 19:08:06 that's one of my big current concerns 19:08:10 might be better if you pick the battlemage, so you can drag it out of melee and yourself into melee at the same time 19:09:00 possible 19:09:03 (for reference, the knight ancestor was able to twice, without healing, kill an orb of fire without dying itself or with any help from me) 19:09:10 lol 19:09:10 nice 19:09:59 hasted +9 broad axe of speed running off of base 30 damage is really good melee damage it turns out 19:11:08 haha 19:11:43 one thing I did notice was that the ancestor ate some of your exp away because it was an ally 19:11:48 and so you have the usual summon issue going on 19:11:52 yeah 19:11:55 that seems okay to me 19:12:22 WebFungus: i sent a !tell to pleasingfungus 19:12:23 !tell marvinpa !degen reducing all stats by 3 might cause stat-zero for certain starts 19:12:23 chequers: OK, I'll let marvinpa know. 19:12:28 the issue is that makes it so the fastest way to improve your ancestor is to not actually bring him 19:12:35 i heard you've met him 19:12:45 I will deal with all tells when I'm home 19:12:55 warning: there are quite a few tells 19:12:59 yes 19:13:00 I know 19:13:21 Lightli: equally, the fastest way to improve summoning is to not use it 19:13:24 assuming 19:13:36 that you do not actually need the ancestor to win fights, or that it doesn't provide any significant advantage 19:13:41 yeah 19:13:47 seems like a non-issue. 19:14:34 ??yred 19:15:06 if you really want to shun your ancestor, it's pretty trivial 19:15:07 so w/e 19:15:34 sa feedback got me real down and so i'm a bit of a funk about the whole god project, tbh. 19:15:43 RIP 19:15:46 ya rip. 19:15:54 I haven't even made my own post yet 19:15:56 probably just gonna retire from crawl now. 19:16:54 there's not even much feedback from SA 19:17:10 WebFungus: http://dpaste.com/3RKS68T 19:17:32 wow, it *has* been a while since we put up a post, hasn't it? 19:17:41 send me a tell, I'll look at it when I get home. 19:17:48 !tell pleasingfungus http://dpaste.com/3RKS68T 19:17:49 chequers: OK, I'll let pleasingfungus know. 19:18:04 also ty :) 19:18:12 there's not much to be real down about 19:18:13 -!- jetnerd has quit [Ping timeout: 252 seconds] 19:18:25 !tell pleasingfungus the tense of that changes randomly between present/past depending on how I felt at the time 19:18:26 chequers: OK, I'll let pleasingfungus know. 19:18:53 WebFungus: what's the SA feedback? allys suck? 19:19:04 ya 19:19:25 one person saying that ally AI isn't very good with battlemages, and then he posted again saying that when he tried the knight ancestor the AI worke dmuch better 19:19:30 lol 19:19:33 I only saw the first part 19:19:36 well, I think they're missing the point. People really enjoy playing with allies, like they *really* enjoy it 19:19:45 then he said right afterward that the knight ancestor is kind of overpowered 19:19:53 nerfs all around 19:20:04 I have a sense that if this god has a breadth of experiences this might be one of the most popular gods 19:20:12 chequers: wellllll, the argument was that they weren't having fun playing with this (or were being frustrated by it) 19:20:31 but I guess I should actually check for the full feedback 19:21:01 I dunno, I feel there's a great core in this god (an ally which has no hard fail (eg permadeath)) 19:21:31 -!- Blade- has quit [Ping timeout: 252 seconds] 19:21:48 I guess the issue is that the battlemage could use a higher spellcasting frequency so it's more reliable in damage output? 19:22:06 gonna put the branch on CPO 19:22:14 clearly, make it use the maintain_distance ai 19:22:43 <|amethyst> WebFungus: completely ignoring gameplay for the moment, I really like the updated flavour 19:22:48 q: what about hexer? a: no one chooses hexer, don't be absurd. 19:22:55 |amethyst: be sure to send thanks to ontoclasm :) 19:23:14 I could see a high-XL hexer be very useful 19:23:30 when I was designing this, hexer was the one I was most worried about being overpowered 19:23:40 <|amethyst> !tell ontoclasm PF tells me I should thank you for Hep's "ancestor" flavour... I really like it 19:23:40 |amethyst: OK, I'll let ontoclasm know. 19:23:58 -!- molotove has quit [Quit: Leaving.] 19:23:59 I don't think you have to worry about hexer being too op 19:24:31 like, getting the HD/MR curve juuust right will be tricky, but it's ultimately just quantitative 19:24:42 hah 19:24:51 -!- ontoclasm1 is now known as ontoclasm 19:25:16 yeah, there's a lot of things that hexer will fall flat against just on account of having magic immunity, and if you don't hit XL27 before Zot the poor thing won't do much outside of wreck draconian packs 19:25:40 nothing wrong with wrecking drac packs. 19:25:43 @??orb guardian 19:25:43 Orb Guardian (06X) | Spd: 14 | HD: 15 | HP: 71-96 | AC/EV: 13/13 | Dam: 45 | 10doors, fighter, see invisible | Res: 06magic(120), 12drown | XP: 2770 | Sz: Giant | Int: human. 19:25:52 @??storm dragon 19:25:52 storm dragon (12D) | Spd: 12 | HD: 14 | HP: 87-121 | AC/EV: 13/10 | Dam: 25, 1509(claw), 1507(trample) | fly | Res: 06magic(100), 02cold, 11elec+++, 12drown | XP: 2026 | Sp: b.lightning (3d19) [11!AM, 06!sil, 08breath] | Sz: Giant | Int: animal. 19:25:56 good point 19:26:07 @??draconian knight 19:26:07 mottled draconian knight (10q) | Spd: 10 | HD: 16 | HP: 94-131 | AC/EV: 22/11 | Dam: 27 | 10weapons, 10items, 10doors, fighter, spellcaster, cold-blooded | Res: 06magic(40), 05fire, 04napalm | XP: 1741 | Sp: b.cold (3d25), throw icicle (3d25), haste, invisibility, armour | Sz: Medium | Int: human. 19:26:13 mmmm 19:26:17 idk 19:26:22 all is in flux. 19:26:30 it's the sort of thing that needs testing 19:27:06 sure 19:27:11 ??hexer 19:27:15 I need to add milestones for ally type/death choices 19:27:41 is sequell still broken 19:27:56 03amalloy02 07* 0.18-a0-1354-gbc5753f: 14d2d9b, the sequel 10(39 seconds ago, 1 file, 1+ 1-) 13https://github.com/crawl/crawl/commit/bc5753f2e7a3 19:28:01 ya 19:28:08 !learn q dcss_forks 19:28:09 I don't have a page labeled dcss_forks in my learndb. 19:28:26 <|amethyst> ??fork 19:28:29 amalloy: how time flies... 19:28:31 <|amethyst> !lear q fork 19:28:33 !learn q fork 19:28:33 I don't have a page labeled fork in my learndb. 19:28:40 !king lear q fork 19:28:40 !learn add dcss_forks https://github.com/tmhedberg/dcss-ehe https://crawl.develz.org/tavern/viewtopic.php?f=17&t=17775 19:28:41 dcss forks[1/1]: https://github.com/tmhedberg/dcss-ehe https://crawl.develz.org/tavern/viewtopic.php?f=17&t=17775 19:28:53 ??dcss forks 19:28:54 no crawl light, crawl alternative...? 19:29:01 what are those 19:29:02 Lightli: ?? is donw 19:29:05 rip 19:29:08 chequers: old 19:29:12 !learn q crawl alternative 19:29:13 crawl alternative[1/4]: A very old (pre-Stone-Soup) and apparently abandoned fork of Crawl: http://www.interq.or.jp/libra/oohara/crawl-alternative/ or https://github.com/crawl/crawl-ancient/tree/alternative 19:29:17 !learn q crawl light 19:29:18 crawl light[1/3]: A fork of Dungeon Crawl: Stone Soup. https://github.com/dtsund/crawl-light for source, http://inari.aerdan.org/~dtsund/cl_downloads/ for builds. | IRC channel at #CrawlLight. 19:29:42 !learn edit dcss_forks https://github.com/tmhedberg/dcss-ehe https://crawl.develz.org/tavern/viewtopic.php?f=17&t=17775 {crawl light} 19:29:43 Syntax is: !learn edit TERM[NUM] s/// 19:29:50 !learn set dcss_forks[1] https://github.com/tmhedberg/dcss-ehe https://crawl.develz.org/tavern/viewtopic.php?f=17&t=17775 {crawl light} 19:29:50 dcss forks[1/1]: https://github.com/tmhedberg/dcss-ehe https://crawl.develz.org/tavern/viewtopic.php?f=17&t=17775 {crawl light} 19:29:56 i'm very curious about that guy's spell level changes 19:30:12 -!- Siegurt has joined ##crawl-dev 19:30:13 which that guy 19:30:32 the tavern thread 19:30:39 wow, the later revisions mentioned are much weirder 19:30:47 HELL DWARVES 19:30:51 ABYSSAL KITTIES 19:30:55 yes 19:31:26 https://github.com/JoePaulsen/CrawlSemiSprint/commit/874619e1b7648e98cdbe53034aa1c7b7b8a942e3 19:31:55 huh 19:31:59 seems sort of arbitrary 19:32:06 the altars change likewise 19:32:15 well, it is a one-man fork 19:32:29 sure 19:32:43 it's funny how it changes from "common frequent requests" in the first post to "weird random shit" by the third 19:33:07 anyway 19:33:08 -!- WebFungus has quit [Quit: Page closed] 19:34:13 <|amethyst> hm, I guess Transference's fail rate doesn't improve unless I switch gods? 19:35:20 WebFungus: One thing I'll remark is that the ancestor is holding up even in Zot:$ 19:35:47 <|amethyst> ah, I see that mentioned by Shard1967 in the scrollback 19:35:52 I recalled the time I sent my entire Yred army in and it was basically eaten by about 2 orbs of fire and an electric golem 19:35:58 -!- pikaro has quit [Ping timeout: 250 seconds] 19:36:02 -!- amalloy is now known as amalloy_ 19:36:05 ??maxwell's silver hammer 19:36:30 -!- molotove1 has quit [Client Quit] 19:36:51 and my Beogh win had me basically lose all my orcs save for the one warlord sitting in CPA 19:36:53 <|amethyst> chequers: temp vorpal brand only for blunt weapons 19:37:05 no longer exists 19:37:21 yup 19:37:22 <|amethyst> Charms/Earth level 2 19:37:37 <|amethyst> !learn q :beh: 19:37:38 :beh:[1/25]: $bot: help ::: $(ldb help) 19:37:44 <|amethyst> !readall :beh: 19:37:49 undefined method `+' for nil:NilClass in $(+ ) in $(apply + $(map $(fn (x) $(r... in $(roll-dice ${n} ${d}) in $(ldb ${x} ${n}) in $(ldbent-text $(ldb ${x} ${n... in $(entry ${1} ${n}) in $($(fn (n) $(entry ${1} ${n}... in $(map $(fn (n) $(entry ${1} ... in $(join $(concat ${*:-/} )... 19:38:00 <|amethyst> oh, well then 19:38:01 has anyone pinged the snark about sequell 19:38:31 greensnark: sequell is broken in ##crawl-dev when you try ??query (but !learn q query works) 19:39:23 <|amethyst> ??larnan 19:39:32 <|amethyst> ??lernen 19:39:37 <|amethyst> hm 19:39:46 clang?? 19:39:49 <|amethyst> cang 19:39:51 cang 19:39:59 wow it's broken 19:40:06 <|amethyst> Sequell: help 19:40:07 both forward and reverse fail, whee 19:40:15 <|amethyst> I guess :beh:s are broken 19:40:15 -!- amalloy_ is now known as amalloy 19:40:23 !singularity Grunt 19:40:23 Lightli gestures wildly while chanting. Space collapses on itself with a satisfying crunch. The singularity violently warps Grunt! 19:40:27 -!- ProzacElf has quit [Ping timeout: 244 seconds] 19:41:03 <|amethyst> ¡learn add blah blah 19:41:56 !glaciate Lightli 19:41:56 Grunt points at Lightli and mumbles some strange words. Grunt conjures a mighty blast of ice! The great icy blast engulfs Lightli! 19:45:05 !lg . won min=xl 19:45:05 131. Lightli the Pacifier (L22 HOHe of Elyvilon), escaped with the Orb and 3 runes on 2012-05-20 22:26:54, with 1691040 points after 49480 turns and 3:27:53. 19:45:13 !lg . won min=xl !--he 19:45:14 123. darkli the Wrestler (L23 TrFi of Jiyva), escaped with the Orb and 3 runes on 2015-06-19 07:46:52, with 1878556 points after 49887 turns and 1:53:31. 19:45:49 neil (L11 TrMo) ASSERT(hepliaklqana_ancestor() == MID_NOBODY) in 'mon-death.cc' at line 2610 failed. (D:12) 19:46:23 <|amethyst> somehow my ancestor cloned itself? 19:46:47 <|amethyst> then when one of them got killed the game crashed 19:48:33 -!- HarryHood has quit [Quit: Leaving] 19:48:55 -!- Siegurt has quit [Ping timeout: 240 seconds] 19:51:35 -!- Misder has quit [Ping timeout: 252 seconds] 19:53:35 -!- ProzacElf has joined ##crawl-dev 19:54:35 -!- ProzacElf_ has joined ##crawl-dev 19:54:50 |amethyst: if that happens again try reloading the game, at one point I had a save where the ancestor kept duplicating every time i reloaded 19:54:55 but i thought it was a save-compat bug 19:55:46 amethyst: I had that happen to me once when an ancestor fell down a shaft trap and respawned a couple dozen turns later 19:55:59 then when I went down a floor the shafted ancestor was still there so I had two of it 19:56:11 one of them ceased to exist once I poked into a bailey though 19:56:16 haha 19:56:25 you should tell pf about that one 19:57:39 -!- ProzacElf has quit [Ping timeout: 240 seconds] 19:58:15 I did 20:00:07 -!- omarax has quit [Remote host closed the connection] 20:01:49 -!- PleasingFungus has joined ##crawl-dev 20:02:29 that same crash showed up this morning 20:02:29 PleasingFungus: You have 15 messages. Use !messages to read them. 20:02:38 kill me 20:02:48 chequers: I was confused when you said it was a save compat bug, since i had no idea how it could be - should've argued! 20:03:26 -!- grimmulfr has quit [Remote host closed the connection] 20:03:51 -!- Floodkiller has joined ##crawl-dev 20:04:34 -!- GauHelldragon has quit [Ping timeout: 250 seconds] 20:05:20 03PleasingFungus02 07[combo_god] * 0.18-a0-1426-g5ece3d5: Remove ancestor item plusses 10(44 seconds ago, 1 file, 4+ 4-) 13https://github.com/crawl/crawl/commit/5ece3d57b16d 20:06:10 hm 20:06:20 could make ancestors shaft-immune, like player ghosts 20:06:26 or could figure out how to handle it properly 20:07:19 -!- debo has quit [Ping timeout: 240 seconds] 20:07:21 03PleasingFungus02 07[combo_god] * 0.18-a0-1427-g60093d9: Temporarly give ancestors shaft immunity 10(35 seconds ago, 1 file, 3+ 2-) 13https://github.com/crawl/crawl/commit/60093d943e1f 20:07:37 !crash neil 20:07:38 54. neil, XL11 TrMo, T:10014 (milestone): http://crawl.berotato.org/crawl/morgue/neil/crash-neil-20160219-004531.txt 20:07:49 !lm neil crash 20:07:50 54. [2016-02-19 00:45:31] neil the Grappler (L11 TrMo of Hepliaklqana) ASSERT(hepliaklqana ancestor() == MID NOBODY) in 'mon-death.cc' at line 2610 failed on turn 10014. (D:12) 20:07:53 !lm neil crash -tv 20:07:54 54. neil, XL11 TrMo, T:10014 (milestone) requested for FooTV: telnet://termcast.develz.org or http://termcast.develz.org. 20:08:11 izel, huh 20:08:41 ooo, battlemagi 20:08:43 !nuke 20:08:45 FooTV playlist clear requested by *. 20:08:49 !learn q tv 20:08:50 tv[1/2]: An array of television channels are available by telnetting to termcast.develz.org, broadcasting recordings of (parts of) Crawl games, both user-controlled and automated. See also {footv}, {fightclub}, or !tvdef channelname for other channels. 20:08:55 !learn q footv 20:08:55 FooTV[1/5]: telnet termcast.develz.org (and then select the letter for FooTV), or http://termcast.develz.org. Do not use SSH. Shows games requested using !tv. Request games by adding -tv to !lg or !lm. Cancel games by adding -tv:cancel to the same command-line, clear playlist with !lg * -tv:nuke 20:09:00 hm 20:09:01 where's the manual 20:09:10 or, how do I queue up a tv from somewhat earlier 20:09:21 <|amethyst> -tv:<2 20:09:32 <|amethyst> for twice as long before the milestone 20:09:47 t 20:09:49 *ty 20:09:55 !lm neil crash -tv:<1.5 20:09:56 54. neil, XL11 TrMo, T:10014 (milestone) requested for FooTV: telnet://termcast.develz.org or http://termcast.develz.org. 20:09:59 <|amethyst> not sure if it was a shaft earlier or not, but that sounds right 20:10:04 <|amethyst> PleasingFungus: more significant bug: 20:10:08 <|amethyst> PleasingFungus: you can't train invo 20:10:16 yes, I saw that reported a few places 20:10:17 <|amethyst> oh wait 20:10:18 looking 20:10:20 <|amethyst> now I can 20:10:31 <|amethyst> I swear I could not earlier 20:10:34 yes 20:10:38 that's consistent with reports 20:10:40 !nuke 20:10:41 FooTV playlist clear requested by *. 20:10:50 !nuke PleasingFungus 20:10:52 PleasingFungus playlist clear requested by *. 20:10:57 lol 20:10:59 hi grunt 20:11:00 :) 20:11:04 <.< 20:11:05 PleasingFungus: i think when you unlock hep abilities there should be a force more 20:11:12 keep not realising when i can remember the ally type 20:11:23 I noticed the same thing 20:11:24 -!- Choch has quit [Client Quit] 20:11:32 how does ru work? 20:11:48 force_more 20:11:59 // included in default force_more_message 20:12:02 ok 20:13:49 line 4176 is the root of the issues with training, maybe 20:13:51 invo 20:13:54 religion.cc 20:14:19 idk why it'd be broken for this but work for chei, tho 20:17:19 ohh 20:17:21 hm 20:17:22 -!- DrStalker has quit [] 20:17:32 you don't have your ancestor yet 20:17:38 that's delayed 20:17:38 so you don't have recall yet 20:17:40 so you can't train invo 20:17:52 <|amethyst> oh, and those don't fall under ignore_piety 20:18:25 <|amethyst> that also explains why the altar showed no granted abilities 20:18:33 ignore_piety? 20:18:41 <|amethyst> !source get_god_abilities 20:18:41 1/1. https://github.com/crawl/crawl/blob/master/crawl-ref/source/ability.cc#l3670 20:19:08 yes, hm 20:21:27 i thought you can always train invo if the god uses it these days 20:22:10 <|amethyst> wheals: not if get_god_abilities(x, true, y) doesn't list it 20:22:57 <|amethyst> PleasingFungus: a simpleish fix maybe 20:23:18 I'm fixing like mad as we speak 20:24:00 PleasingFungus: not sure if it's a good thing or not, but maybe your ally could shoot through you? 20:24:01 <|amethyst> PleasingFungus: 1. mark the _TYPE_ abilities as using invo in abil_skill 2. use piety_rank() >= blah || ignore_piety 20:24:12 chequers: beam.cc???? 20:24:59 ??? 20:25:20 just to confirm.. no way to play god branches on cbro via SSH? 20:25:25 chequers: would require beem code 20:25:31 which is terrifying 20:25:35 as they say in dwarf fortress 20:25:45 miek_: it's on cpo 20:25:52 PleasingFungus: AW 20:26:00 aw? 20:26:06 chequers: also no SSH 20:26:14 but that's cool to know 20:26:25 PleasingFungus: re: no friendly fire 20:26:37 also, the combo_god branch, when i build it, doesn't seem to include ukayaw?? 20:27:14 . . . 20:27:14 or have you reenabled ssh on cpo? 20:27:25 oh wait, yes it does 20:27:27 miek_: heck no 20:27:34 <|amethyst> miek_: you can play them on cbro via ssh 20:27:36 &rc edsrzf 20:27:38 https://crawl.project357.org/rc-files/trunk/edsrzf.rc 20:27:40 <|amethyst> miek_: TXU 20:27:43 miek_: tile_display_mode = glyphs 20:28:07 -!- WorkSight has quit [Quit: Leaving...] 20:28:38 oh.. its an option under trunk 20:28:40 thanks |amethyst 20:28:42 03PleasingFungus02 07[combo_god] * 0.18-a0-1428-gb5c1455: Fix H ability bugs 10(85 seconds ago, 1 file, 15+ 26-) 13https://github.com/crawl/crawl/commit/b5c1455ebfff 20:28:49 chequers: that doesn't help me sneak out games while at work :P 20:29:07 owned 20:29:35 -!- ystael has quit [Ping timeout: 276 seconds] 20:30:15 rip 20:31:34 <|amethyst> FR: when you are swapping armour and you answer Y to "continue disrobing", consider that to also be a Y to the subsequent "continue putting on" 20:32:15 player nerf 20:32:19 gives less flexibility :) 20:33:01 oh 20:33:02 lmao 20:33:04 I found the bug 20:33:13 <|amethyst> I usually just rest the poison out, because 5Px is quicker than PxYPxY 20:33:40 <|amethyst> err, W not P 20:33:57 <|amethyst> PleasingFungus: which one? 20:34:19 03PleasingFungus02 07[combo_god] * 0.18-a0-1429-g6800a22: Fix H descriptions 10(23 seconds ago, 2 files, 14+ 14-) 13https://github.com/crawl/crawl/commit/6800a22aee16 20:34:23 :( 20:34:23 <|amethyst> ¡learn add devteam 20:34:34 ^ caused the description to show up nowhere 20:34:37 PleasingFungus, have you considered hepl wrath being making the ancestor hostile 20:34:44 no 20:34:44 while keeping its' other effects :p 20:34:46 and shan't 20:34:50 ok 20:35:25 Lasty: the ukayaw abilities being force_more is a little annoying 20:35:41 here's a quiz for you to consider: why does yred wrath destroy all of his zombies? 20:35:51 also, any particular reason you didn't just scale back ancestor damage? 20:35:57 rather than removing item plusses 20:36:53 -!- eb_ has quit [] 20:37:42 simplifying 20:37:45 fewer moving parts 20:38:06 I couldn't remove base damage scaling entirely, but I could remove weapon plusses entirely 20:38:35 ok 20:38:56 2016-02-19 01:38:18,232 INFO: #547 P283 ERR: ASSERT(succ) in 'religion.cc' at line 4559 failed. 20:38:57 was just suggesting to keep the flavour, mechanic-wise my suggestion makes no sense 20:38:59 is this the shaft bug? 20:39:24 <|amethyst> no 20:39:30 <|amethyst> that is wrath failure 20:39:51 ah 20:39:54 i went ukay -> hep 20:39:59 !blame2 Lasty 20:40:00 LLLaaassstttyyy 20:40:46 <|amethyst> I guess U needs to be added to active_penance 20:41:01 <|amethyst> !lm * god.abandon=ukayaw 20:41:02 2. [2016-02-02 10:22:33] djmy96 the Grappler (L9 TrMo) abandoned Ukayaw on turn 5722. (D:8) 20:41:02 literally unplayable 20:41:06 <|amethyst> !lm * god.abandon=ukayaw -2 20:41:07 1/2. [2016-02-02 10:20:39] djmy96 the Grappler (L9 TrMo) abandoned Ukayaw on turn 5792. (D:8) 20:41:12 chequers: yeah, didn't code wrath yet :p 20:41:13 <|amethyst> !lm djmy crash 20:41:14 No milestones for djmy (crash). 20:41:31 FIQ: it's not exactly much flavor, and arguably it's better abstracted like it is now 20:41:32 <|amethyst> Lasty: need to list them in active_penance then 20:41:40 |amethyst: yurp. 20:41:42 right now it just shows as "a broad axe of flame" or w/e 20:42:33 -!- scummos__ has quit [Ping timeout: 248 seconds] 20:42:41 03PleasingFungus02 07[combo_god] * 0.18-a0-1430-gb5e76e7: Add default force_mores for ancestor unlocks 10(2 minutes ago, 1 file, 1+ 0-) 13https://github.com/crawl/crawl/commit/b5e76e7a4508 20:43:48 !source active_penance 20:43:49 1/1. https://github.com/crawl/crawl/blob/master/crawl-ref/source/religion.cc#l1043 20:44:23 Lasty: http://dpaste.com/0MMJTNJ 20:44:58 <|amethyst> PleasingFungus: hm, re the shaft thing, is there any difference between ancestor recall and Y/B recall? 20:45:09 <|amethyst> PleasingFungus: or in how they appear on the companion list? 20:45:15 yes 20:45:23 well 20:45:29 specifically, the difference is in monster_cleanup() 20:45:43 which removes h ancestors from the companion list, since otherwise you end up with phantom ancestors in the abyss 20:45:48 who can't be recalled but won't respawn 20:46:04 this might be a latent bug for y/b too? 20:46:07 -!- debo has joined ##crawl-dev 20:46:18 <|amethyst> hm 20:46:42 -!- travis-ci has joined ##crawl-dev 20:46:43 The build passed. (combo_god - 5ece3d5 #4778 : Nicholas Feinberg): https://travis-ci.org/crawl/crawl/builds/110276126 20:46:43 -!- travis-ci has left ##crawl-dev 20:47:20 -!- Blade- has quit [Ping timeout: 252 seconds] 20:47:24 !tell xenobreeder do you have any idea how the items ended up on the floor? any more context? 20:47:24 PleasingFungus: OK, I'll let xenobreeder know. 20:47:42 i'm watching someone play combo_god on CPO, and they aren't worshipping hep or ukay 20:47:52 like, they saw both altars and went "nah" 20:47:59 Sorry, I'm working now, will try to reproduce later. 20:47:59 Xenobreeder: You have 1 message. Use !messages to read it. 20:48:35 Xenobreeder: sure, no rush. thanks for the report! 20:48:42 chequers: did you see my queries yesterday 20:48:57 which queries? 20:49:08 !lg * combo_god 20:49:09 No keyword 'combo_god' 20:49:16 -!- pikaro has quit [Ping timeout: 255 seconds] 20:49:22 someone remind me of the keyword I'm looking for so I can do the rest of this trick 20:49:40 !lg * expbr=combo_god 20:49:41 Unknown field: expbr 20:49:59 !lg * experimental 20:50:06 !lg * experimental x=explbr 20:50:07 15877. smeego the Insei (L1 DsMo), slain by a jackal on D:1 on 2016-02-19 01:49:45, with 3 points after 55 turns and 0:00:19. 20:50:16 15877. [explbr=combo god] smeego the Insei (L1 DsMo), slain by a jackal on D:1 on 2016-02-19 01:49:45, with 3 points after 55 turns and 0:00:19. 20:50:20 this mifi just went with okawaru -.- 20:50:20 !lg * explbr=combo_god dg 20:50:21 3. miek the Chiller (L7 DgIE), quit the game in the Temple (roderic_octagonal_lattice_temple) on 2016-02-19 01:48:59, with 872 points after 4258 turns and 0:17:53. 20:50:24 ^ there 20:50:27 LOL 20:50:27 also 20:50:28 lmao 20:50:31 that one's even better 20:50:39 miek_ ya big noob 20:50:45 i dunno, I think they're both classic 20:50:46 dg, ds 20:50:48 what's the difference 20:51:00 i should integrate mine into sequell 20:51:05 ctave6 the Poker 20:51:06 Minotaur of Okawaru *..... 20:51:12 <|amethyst> FR: species "Demongod" and "Demispawn" 20:51:38 !lg * explbr=combo_god s=god 20:51:39 653 games for * (explbr=combo_god): 408x, 200x Ukayaw, 26x Hepliaklqana, 3x Xom, 3x Okawaru, 2x Gozag, 2x Vehumet, 2x Elyvilon, Cheibriados, Makhleb, Trog, Ashenzari, Dithmenos, Yredelemnul, Qazlal 20:51:48 !hs * god=hepliaklqana 20:51:49 26. Lightli the Executioner (L27 HOGl of Hepliaklqana), escaped with the Orb and 4 runes on 2016-02-18 10:16:56, with 2390588 points after 68546 turns and 2:18:00. 20:51:49 chequers: you saw my story? 20:51:52 nice 20:51:57 lightli <3 20:52:06 miek_: I think the sequell line on itself is pretty funny 20:52:12 yes haha 20:52:14 miek_: it tells the whole story 20:52:15 pretty much explains it all 20:52:27 I didn't notice at all until it said "Your kind does not worship" 20:52:31 ffs I'm so unobservant 20:52:40 chequers: do you need that patch to continue your game? If so, I'll add it now 20:52:49 Lasty: yeah ! 20:52:58 gotcha, on it 20:53:09 thanks 20:53:20 sorry for the delay 20:53:22 <|amethyst> I always feel bad on god explbr s 20:53:54 <|amethyst> when I come across a very early altar to a (mainline) god that would generally be very good 20:54:24 reminds me of finding a D:2 or D:3 Jiyva in the Q/G branch way back when 20:54:33 ??rebuild 20:54:42 Lasty: cbro combo_gods? 20:54:45 <|amethyst> !learn q rebuild 20:54:45 or something else 20:54:45 rebuild[1/2]: https://dobrazupa.org/rebuild/ http://crawl.akrasiac.org/rebuild/ http://underhound.eu:81/rebuild/ http://crawl.berotato.org/crawl/rebuild/ http://crawl.xtahua.com/rebuild/ Bug Grunt, |amethyst, or Nap Kin for CDO. Use your powers wisely. 20:54:49 oh 20:54:58 just asking because I have the pages bookmarked ;) 20:55:14 03Lasty02 07[combo_god] * 0.18-a0-1431-g56b1029: Stub Ukayaw penance (chequers) 10(63 seconds ago, 1 file, 1+ 0-) 13https://github.com/crawl/crawl/commit/56b10298526c 20:55:19 ah haha 20:55:19 Lasty: just ping me when you commit it 20:55:21 just reubuilding for ch 20:55:22 chequers: 20:55:25 :) 20:55:38 chequers: it'll announce in channel when the rebuild is complete 20:55:40 <|amethyst> You stub your penance on the curse toe! 20:55:41 I'll try to ping you too 20:55:43 i'm playing on CPO 20:55:48 CPO? 20:55:50 Wuzzat? 20:56:03 r2d2's australian friend 20:56:04 <|amethyst> Lasty: a fake server that doesn't even have ssh 20:56:11 religion.cc: In function ‘armour_type _hepliaklqana_shield_type(int)’: 20:56:11 religion.cc:1970:13: warning: no previous declaration for ‘armour_type _hepliaklqana_shield_type(int)’ 20:56:14 [-Wmissing-declarations] 20:56:17 armour_type _hepliaklqana_shield_type(int HD) 20:56:19 ^ 20:56:29 <|amethyst> missing static I guess 20:57:00 <|amethyst> hm 20:57:36 <|amethyst> it would be really nice if one could do a ctags search of another branch 20:57:44 is there anything I should do before adding a milestone for ally type choice & death type choice? 20:57:48 |amethyst: how does one rebuild CPO? 20:57:54 <|amethyst> Lasty: wait 15 minutes 20:57:55 *ancestor type choice... 20:58:01 ah 20:58:06 <|amethyst> Lasty: or maybe chequers can do it by hand 20:58:18 yep, done 20:58:38 experimentals on CPO are totally hacky. no sequell, rebuild by hand only, nobody can be playing when you update, blah blah 20:58:54 PleasingFungus: well done again on Octavia 20:59:12 name choice, or? 20:59:14 <|amethyst> chequers: CBRO (and CSZO when it had them) just treated them the same way as stable branches 20:59:15 yes 20:59:55 oh 20:59:58 this looks like a bug 21:00:07 -!- omarax has quit [Remote host closed the connection] 21:00:13 -!- WalkerBoh has joined ##crawl-dev 21:00:18 <|amethyst> btw 21:00:56 <|amethyst> what is the target for Ukayaw? 0.18 or 0.19? 21:01:07 !learn q hep 21:01:08 hep[1/1]: see {hepliaklqana} 21:01:09 <|amethyst> Hep too for that matter 21:01:21 U seems like 0.18, *maybe* H if things go well? 21:01:37 <|amethyst> I think then U should go to trunk pretty soon 21:01:39 we'll need 21:01:40 banners 21:01:40 :) 21:01:41 PleasingFungus: you have american spelling for romanticise 21:01:56 every time I typed it the other way I got spell-corrected 21:01:56 (P needs a banner too; I have a few ideas) 21:02:06 I lost my nerve 21:02:21 "haploidkoala" 21:02:28 <|amethyst> PleasingFungus: you don't install both the EN_US and EN_AU language packs? :) 21:02:33 helplesskoala 21:02:36 >.> 21:02:41 sad 21:02:57 <|amethyst> so 21:03:07 <|amethyst> is that q in there purely to avoid the possibility of anagrams? 21:03:08 <|amethyst> :) 21:03:24 i'm worried about trying to force banners; I feel like it might make sense to split banners out from gods and just choose the challenges that seem fun - like we were talking about last tournament or tournament before, iirc 21:03:33 just my opinion 21:03:42 <|amethyst> banners could be associated with uniques rather than gods 21:03:50 |amethyst: the q is in there because I like the pair of letters 'qa' 21:04:01 <|amethyst> then no one would expect every single unique to have a banner 21:04:05 or really q followed by any vowel other than u 21:04:05 :) 21:04:36 I would love it if I could earn banners for my score page outside of tournaments 21:05:01 new plan: don't let Grunt name any more gods 21:05:06 :( 21:05:16 I'd say there are a LOT of banners right now 21:05:17 I'd like to get U into trunk -- after I redo piety and finish wrath it might make sense to add to trunk 21:05:18 q overload 21:05:38 !learn add hepliaklqana new plan: don't let Grunt name any more gods 21:05:38 hepliaklqana[3/3]: new plan: don't let Grunt name any more gods 21:05:38 although if they were split up into single level banners (aka "achievements") you could have a lot more 21:05:53 bad ideas: theme them after mutations 21:05:59 some 1-level, some 3-level... 21:06:01 :P 21:06:21 of course now it's gonna be slightly trickier to get U into trunk 21:06:29 03PleasingFungus02 07[combo_god] * 0.18-a0-1431-g7f2cdba: Add milestones for H choices 10(86 seconds ago, 1 file, 3+ 0-) 13https://github.com/crawl/crawl/commit/7f2cdba90425 21:06:29 03PleasingFungus02 07[combo_god] * 0.18-a0-1433-g3a0b313: Merge branch 'combo_god' of github.com:crawl/crawl into combo_god 10(16 seconds ago, 0 files, 0+ 0-) 13https://github.com/crawl/crawl/commit/3a0b3134fa1b 21:06:34 Lasty: not too bad - I can help 21:06:56 <|amethyst> Q alkane phial 21:06:59 Lasty: imo the trick is to keep cherry-picking your changes into the separate U branch I set up 21:07:00 <|amethyst> Q apnea killah 21:07:08 or a trick 21:07:13 also at some point you should probably test sprint 21:07:46 http://crawl.develz.org/wordpress/trunk-updates-23-january-2016/comment-page-1#comment-2359 unrelated but makes me smile 21:08:16 ally AI issue: it recasts confuse/slow on targets that are already confused/slowed 21:08:21 <|amethyst> alpha qi ankle 21:08:37 <|amethyst> Q halal ape-kin 21:08:41 PleasingFungus: some mutations are 2 level too :P 21:08:53 even better! 21:08:53 Experimental (combo_god) branch on crawl.beRotato.org updated to: 0.18-a0-1431-g56b1029 21:09:13 chequers: noted 21:09:36 <|amethyst> paella qi ankh 21:09:57 also, it would be cool for some lower level hexer spells to be AOE, rather than the hexer transitioning from single target -> aoe 21:10:05 but I'm not sure if the potential hexes really allow for that 21:10:08 no, Hep is not an anagram of anything important 21:10:09 afaik 21:10:10 :) 21:10:15 eg weak single target -> weak aoe -> strong single target -> strong aoe 21:10:15 PleasingFungus: oh, I didn't know you set one up 21:10:28 :) 21:10:38 %git ukayaw 21:10:38 07Lasty02 * 0.18-a0-1282-g5e54b36: More better fix piercing enchantments (|amethyst) 10(4 days ago, 1 file, 1+ 1-) 13https://github.com/crawl/crawl/commit/5e54b3646d59 21:10:46 woo 21:10:55 good commit name, btw 21:10:57 -!- Ququman has quit [Read error: Connection reset by peer] 21:11:08 PleasingFungus: that might be my best one ever 21:11:12 haha 21:11:25 <|amethyst> %git :/betterer 21:11:26 07kilobyte02 * 0.10.1-72-gf8274cb: A betterer desc for Volcano exits (headzone) (cherry picked from commit 7ff52721aa186489a3a27074a2e95e9f0471eb02) 10(3 years, 10 months ago, 1 file, 1+ 1-) 13https://github.com/crawl/crawl/commit/f8274cbfeca2 21:11:41 oh 21:11:43 that reminds me 21:11:55 <|amethyst> removing volcano? 21:12:11 03PleasingFungus02 07[combo_god] * 0.18-a0-1434-g103a366: Remove a a redundant article 10(21 seconds ago, 1 file, 1+ 1-) 13https://github.com/crawl/crawl/commit/103a366cae9d 21:12:24 wow, rude 21:12:34 we already discussed it, but ally respawn based on time rather than xp encourages 5-spamming 21:12:49 -!- oxeimon has quit [Quit: Leaving.] 21:13:01 tell me what the word "spam" means to you. 21:13:11 ally dies -> finish fight -> press 5 until ally respawns 21:13:19 <|amethyst> mostly you have to get out of combat and press it maybe once 21:13:24 <|amethyst> though 21:13:31 <|amethyst> maybe it should interrupt rest when your ally respawns 21:13:34 ^ literally no one reported that "a a knight" bug, btw. 21:13:43 |amethyst: yeah, it definitely should 21:13:51 <|amethyst> PleasingFungus: they were dreaming of Paris in the the Spring 21:13:54 does it not already? 21:14:04 <|amethyst> hm, maybe it does 21:14:12 <|amethyst> I don't think it interrupts explore though 21:14:24 <|amethyst> Or maybe it does and I was spamming 21:14:54 <|amethyst> I'll try to pay attention next time Izel dies 21:14:58 easy to test 21:15:00 I'll poke at it 21:15:15 yeah, it doesn't 21:15:16 hm 21:15:55 <|amethyst> oh, I was looking at the names list 21:16:04 <|amethyst> to that FR I would add oceania 21:16:17 <|amethyst> s/names/ancestor names/ 21:16:41 good name 21:17:05 roman? 21:17:16 <|amethyst> no, I mean 21:17:22 ohhh 21:17:24 region 21:17:26 <|amethyst> asian, african, oceanian name 21:17:27 <|amethyst> s 21:17:27 I was thinking "as a name" 21:17:31 <|amethyst> ha 21:17:54 plausible. I'm focused elsewhere for now 21:18:09 you have the power to manipulate text in whatever way you desire... adding FRs, removing them... 21:18:28 <|amethyst> adding names... 21:18:43 <|amethyst> but that requires research so I will put it off until later 21:19:28 <|amethyst> PleasingFungus: hm, "Wolf" doesn't cause problems? 21:19:56 <|amethyst> with xv and the description 21:20:08 they have dbname 21:20:11 <|amethyst> ah 21:20:14 <|amethyst> that's right 21:20:17 I haven't tested that name specifically 21:20:21 but it shouldn't be an issue, I'd think? 21:20:55 <|amethyst> my other concern is potential confusion if you have call canine too 21:21:06 oh 21:21:15 <|amethyst> which I guess would mostly be a problem for non-native speakers who don't register the lack of article 21:22:00 bug, Summoned item on floor: 21:22:01 dagger 21:22:10 okay 21:22:12 I think it's from when I was shafted, recalled my ancestor, and then went upstairs 21:22:16 Xenobreed*r had reported that 21:22:17 hum 21:22:20 -!- Stathol has quit [Quit: leaving] 21:22:28 that's very strange 21:23:21 lmao 21:23:24 testing this, I just shafted into a shaft 21:23:50 also, hrm 21:23:57 something is busted 21:24:00 oh 21:24:15 lol 21:24:19 no, nvm 21:24:22 I don't know what's going on here 21:24:53 chequers: what is "bay form"? 21:25:00 fr: bae form 21:25:03 bat, i suspect 21:25:36 ya 21:25:42 I figured that out right after I typed it 21:25:48 but I preferred to talk about baes 21:26:03 hexer in lair is fun 21:26:13 i'm just watching octavia confuse a rat and chase it for 30 turns 21:26:23 -!- travis-ci has joined ##crawl-dev 21:26:24 The build passed. (combo_god - 60093d9 #4779 : Nicholas Feinberg): https://travis-ci.org/crawl/crawl/builds/110276447 21:26:24 -!- travis-ci has left ##crawl-dev 21:26:46 i would def. like her spell freq to be upped, but not sure if that would be balanced 21:27:45 i feel like this is already pretty amazingly strog 21:28:31 I appreciate that you refer to your ancestor by name 21:28:35 would be impolite otherwise 21:28:43 just got shafted again -- want me to test anything? 21:29:01 -!- Insomniak` has quit [Quit: I like to rock] 21:29:42 too late 21:32:49 lol 21:32:51 rip 21:33:22 nah i just foundupstairs 21:33:35 alternative to beam.cc friendly fire: let them smite target certain things 21:33:39 -!- Zekka has quit [Ping timeout: 240 seconds] 21:33:48 might be too op 21:34:23 PleasingFungus, the bug with item duplication might have something to do with leaving your ancestor on another level to avoid exp siphoning. 21:34:40 hmmm 21:34:43 that gives me a thought 21:34:50 Want me to make a save backup? 21:35:20 hm 21:35:24 what ally type do you have? 21:35:33 Knight. 21:35:34 that reminds me 21:35:42 I have both axe and shield cloned. 21:35:54 -!- molotove1 has quit [Quit: Leaving.] 21:35:58 on Elf:$ I think my ancestor somehow dropped a +5 shield of reflection inside the end vault 21:36:10 I wouldn't have noticed except for how it was pre-identified 21:36:14 Same. 21:36:35 ohhh 21:36:40 that's another idea 21:37:10 I thought it was just an ID bug at first. 21:37:19 yeah, I remember the tell 21:37:28 But then the axe spawned too. 21:37:46 And I saw the spawning message (binned it for you). 21:37:46 the weird part was the ancestor wasn't even on the level at the time 21:37:57 That's probably the reason. 21:38:35 was this around the time you levelled up? 21:39:03 yeah, I had leveled up and knew something was up because the ancestor remembered having like 5 things it already had remembered having :v 21:39:19 oh 21:39:23 no one's mentioned that 21:39:27 that would have been a good thing to tell me about 21:42:08 never saw either of those 21:42:33 I think that's because they have knights and you don't 21:42:37 Did you always have your ancestor at your side and not on another level? 21:42:52 -!- ontoclasm has quit [Quit: Leaving.] 21:42:53 Xenobreeder: no 21:43:09 like, i was just shafted -- for the third time this game!! -- and my ally isnt here 21:43:24 i think if i recall the ally, i'll get the missing dagger bug 21:43:57 ah yes 21:44:06 when i level up when the ally isn't around, i'm told about every upgrade she gets 21:45:05 every upgrade they've ever gotten, or just new ones? 21:45:19 ahh, there we go 21:45:21 bug triggered 21:45:30 there's another bug that's probably new that was interfering 21:46:11 so after i levelled up, i recalled them, now there's the bug about a missing dagger on the floor i was shafted to 21:46:42 yeah no more need for reports 21:46:43 i'm fixing 21:47:18 thumbsup 21:51:06 petrify is incredible 21:51:18 imagine if I'd given them para 21:51:54 This god is currently Trog-level. 21:52:14 if you get low on health, just run around and your hexer will eventually confuse and kill everything 21:52:26 plenty of time for nerfs 21:52:34 lol 21:52:38 i wouldn't say trog level. It's just like having max piety ru aura 21:52:50 well, remember you have different companions :) 21:53:12 xeno's was already nerfed, rip 21:53:14 <|amethyst> /r/roguelikedev FAQ Friday is on combat algorithms 21:53:40 and it's the location in the game too 21:53:47 everything has low MR in lair/S-branches 21:53:50 <|amethyst> I'm tempted to post just "It's complicated." 21:54:01 lol 21:54:20 |amethyst: bonus points for references to beam.cc 21:54:50 [It's complicated](github.com/.../beam.cc) 21:55:03 ! 21:55:07 <|amethyst> well 21:55:22 <|amethyst> melee_attack.cc attack.cc ranged_attack.cc would be more on-topic 21:55:26 <|amethyst> and just as exciting 21:56:59 ooh, hexer vs mara 21:57:55 * chequers climbs up the stairs again, heavily bleeding. "Octavia.... Octavia didn't make it" 21:58:38 lol 21:59:03 <|amethyst> !readall accuracy 21:59:03 Your ability to hit and not miss things in combat. Affected by weapon modifiers, some spells, fighting skill, and some randarts. Your base melee or ranged accuracy is 15 + ((dex + (str-dex) * {str_weight} / 20) / 2) + random2(fighting) + random2(weapon or unarmed skill) + 2 if unarmed + 2 if unarmed and you *started* the game with claws. / Then add the weapon's base accuracy, enchantment, and slay... 21:59:06 <|amethyst> !readall melee damage 21:59:06 "[N]ow completely useless." -- Grunt 21:59:12 <|amethyst> !readall weapon damage 21:59:26 @??mara 21:59:26 Mara (13R) | Spd: 10 | HD: 18 | HP: 117-169 | AC/EV: 12/14 | Dam: 30 | 05demonic, 10weapons, 10items, 10doors, unholy, see invisible | Res: 06magic(140), 05fire++, 03poison, 04rot, 13neg+++, 13torm | Vul: 08holy++ | XP: 8024 | Sp: blink [06!sil], b.fire (3d27) [06!sil], mara summon [06!sil], sum.illusion [06!sil], pain (d17) [06!sil] | Sz: Medium | Int: human. 21:59:28 <|amethyst> !readall unarmed combat 21:59:28 Fighting without a weapon. Base damage is 3 + UC skill (+2 per claws level (so +6 Tr, +2 Gh), +X for forms); delay 1.0 - UC/54.0; +2 to hit. 21:59:41 <|amethyst> !readall weapon_damage 21:59:41 Approximately: 1d(base*strength_bonus)*skill_bonus + 1d(to_dam + slaying) + various bonuses. Weapon {brand} is applied after monster AC reduction. / Strength bonus is usually < 1.5 (see {str}), {skill bonus} (both from weapon and Fighting skills) is randomized, averaging about 2.0 at max skill / Damage bonuses include +1d10 for {might} and -1d5 when Starving. 21:59:49 <|amethyst> !readall unarmed_combat 21:59:50 Fighting without a weapon. Base damage is 3 + UC skill (+2 per claws level (so +6 Tr, +2 Gh), +X for forms); delay 1.0 - UC/54.0; +2 to hit. / Base for forms: Normal/Hog 3, Spider 5 (venom), Bat 1, Vampire Bat 2 (vamp), Ice 12 (freezing), Blade 8 + (str + dex) / 3, Statue (6 + str / 3), Dragon 18 + str*2/3, Lich 5 (drain). Form base damage scales with skill, just like normal punches. / Auxiliary a... 22:00:08 -!- omarax has quit [Remote host closed the connection] 22:00:31 -!- HarryHood has quit [Quit: Leaving] 22:01:30 -!- travis-ci has joined ##crawl-dev 22:01:31 The build passed. (combo_god - b5c1455 #4780 : Nicholas Feinberg): https://travis-ci.org/crawl/crawl/builds/110279878 22:01:31 -!- travis-ci has left ##crawl-dev 22:04:21 wow, companion_is_elsewhere's second argument is really goofy 22:04:30 I guess it's just a default return 22:05:10 -!- Blazinghand has joined ##crawl-dev 22:08:02 rip 22:09:31 ugh 22:09:33 this is such a pain 22:17:39 -!- jefus has quit [Ping timeout: 240 seconds] 22:18:35 -!- jefus has joined ##crawl-dev 22:20:57 "Playing on the Ukayaw branch, having a blast, but, uh... Pan seems to be missing?" lol 22:21:50 PleasingFungus's favorite branch 22:21:58 -!- ursan has quit [Ping timeout: 255 seconds] 22:21:59 I thought we removed Pan 22:22:02 <.< 22:22:12 * PleasingFungus plays wheals like a pipe! 22:22:15 <|amethyst> !lm * explbr=combo_god uniq=pan 22:22:15 No milestones for * (explbr=combo_god uniq=pan). 22:22:19 <|amethyst> !lm * explbr=combo_god br.enter=pan 22:22:23 10. [2016-02-18 12:51:18] Sar the Rhythm of Life and Death (L27 NaMo of Ukayaw) entered the realm of Gloorx Vloq on turn 90912. (Pan) 22:22:25 |amethyst: well done 22:22:54 <|amethyst> !lm * uniq=pan br=pan 22:22:54 No milestones for * (uniq=pan br=pan). 22:23:01 1learn add challenge 22:23:16 also 22:23:18 http://crawl.develz.org/wordpress/trunk-updates-18-february-2016 22:23:19 <|amethyst> !lm * uniq=pan s=br 22:23:20 70 milestones for * (uniq=pan): 70x Forest 22:23:29 going to add a link to the cbro & a mention of the experimental 22:23:31 but only once I fix this bug 22:23:33 <|amethyst> no one even lured him out of F? 22:23:41 sda 22:23:41 *sad 22:24:00 Pan wasn't around for very long 22:24:23 <|amethyst> !lm * uniq=crazy_yiuf s=br 22:24:30 -!- lobf has quit [Quit: lobf] 22:24:40 301367 milestones for * (uniq=crazy_yiuf): 301344x D, 18x Abyss, 3x Orc, 2x Temple 22:24:43 ! 22:24:44 is yiuf in one of those stupid out-of-place unique vaults? 22:24:46 guess not 22:24:58 !vault metal_show 22:24:58 1/1. https://github.com/crawl/crawl/blob/master/crawl-ref/source/dat/des/branches/vaults_rooms_standard.des#l216 22:25:01 Orc is surprising 22:25:23 i guess there was an overlap in the past 22:25:47 <|amethyst> !lm * uniq=crazy_yiuf br=orc 22:25:49 3. [2012-11-26 06:39:14] KareZ the Scout (L9 HOPr of Beogh) killed Crazy Yiuf on turn 10752. (Orc:1) 22:25:56 <|amethyst> !lm * uniq=crazy_yiuf br=orc -tv 22:25:58 3. KareZ, XL9 HOPr, T:10752 (milestone) requested for FooTV: telnet://termcast.develz.org or http://termcast.develz.org. 22:26:07 hm 22:26:15 hopr 22:26:16 !lg * cikiller=Pan s=br 22:26:17 One game for * (cikiller=Pan): Forest 22:26:17 lmao 22:26:23 !lg * cikiller=Pan 22:26:25 1. chukamok the Sorcerer (L23 DjCj of Vehumet), shot by Pan (arrow of frost) on Forest:5 (grunt_forest_end_winery) on 2013-06-22 23:53:23, with 410687 points after 78652 turns and 14:50:34. 22:26:31 !lg * cikiller=Crazy_Yiuf s=br 22:26:32 43635 games for * (cikiller=Crazy_Yiuf): 43630x D, 5x Abyss 22:26:37 aw 22:26:49 ooh 22:26:52 this actually makes sense now 22:27:06 <|amethyst> hm 22:27:38 <|amethyst> I was hoping for some scumming of chaos-polymorphs vs orcs 22:27:46 :( 22:27:52 <|amethyst> or cloning 22:33:09 it had to be dj 22:36:13 -!- gammafunk has joined ##crawl-dev 22:36:20 ??ancestor[2 22:36:24 !learn q ancestor[2 22:36:24 ancestor[2/5]: HD = (player XL - 1)*2/3 + 1. HP = hd * 5 + max(0, (hd - 12) * 5). MR = hd*hd/2. Base AC = HD. Base damage = HD*3/2 + 3. Gains rF at HD 11, rC at HD 12, Haste at HD 14, and sInv at HD 16. Weapons get +1 enchant per 2 HD. 22:36:26 !learn q ancestor[3 22:36:26 ancestor[3/5]: Knight: melee companion. Starts with a longsword and bonus AC; 5 + HD/2. HD 5: buckler. HD 8: longsword->broadaxe. HD 9: buckler->shield. HD 10: flame ego. HD 13: reflect ego. HD 16: spiny. HD 17: shield->lg. sh. HD 18: flame->speed ego. 22:36:27 !seen Medar 22:36:27 I last saw Medar at Thu Feb 18 18:54:24 2016 UTC (8h 41m 58s ago) quitting, saying 'Quit: '. 22:39:00 !tell Medar are you aware if there's any issue with leaving websocket connections up a long time, generally speaking? I have a webtiles spectating client that's going to reuse the socket as it watches games, but I'm not sure if it'd be better to just recreate the websocket (resending cached login token) each new game. 22:39:00 gammafunk: OK, I'll let medar know. 22:39:05 -!- gammafunk has left ##crawl-dev 22:39:53 -!- travis-ci has joined ##crawl-dev 22:39:54 The build passed. (combo_god - 6800a22 #4781 : Nicholas Feinberg): https://travis-ci.org/crawl/crawl/builds/110280565 22:39:54 -!- travis-ci has left ##crawl-dev 22:39:59 wtf 22:40:01 this bug is so strange 22:40:44 my ancestor keeps vaporizing 22:40:59 if I go to one level, recall my ancestor, and then go to another level, my companion will no longer be in the companion list 22:41:10 PleasingFungus: Isn't the second entry for ancestor inaccurate 22:41:13 meaning they're getting cleaned up, I guess? 22:41:19 since the weapon no longer gets any enchantment 22:41:22 !learn e ancestor[2 s/ Weapons.*// 22:41:22 ancestor[2/5]: HD = (player XL - 1)*2/3 + 1. HP = hd * 5 + max(0, (hd - 12) * 5). MR = hd*hd/2. Base AC = HD. Base damage = HD*3/2 + 3. Gains rF at HD 11, rC at HD 12, Haste at HD 14, and sInv at HD 16. 22:44:27 -!- Lasty has quit [Quit: Leaving.] 22:44:34 !learn q ancestor[4] 22:44:34 ancestor[4/5]: Battlemage: conjurer companion. Starts with a quarterstaff and magic dart; knows up to 2 conjurations (drops lowest). HD 3: Throw Frost. HD 6: Stone Arrow. HD 8: Throw Icicle. HD 10: Bolt of Magma. HD 13: Iron Shot. HD 16: Corrosive Bolt. HD 18: Crystal Spear. 22:44:36 !learn q ancestor[5] 22:44:36 ancestor[5/5]: Hexer: support companion. Starts with a dagger and Corona; knows up to 2 hexes (drops lowest). HD 4: Slow. HD 7: Confuse. HD 9: drain ego. HD 10: Petrify. HD 13: Metabolic Englaciation. HD 16: dagger->quickblade. HD 17: Mass Confusion. HD 18: drain->antimagic ego. 22:44:49 -!- Lasty has joined ##crawl-dev 22:46:00 augh 22:46:02 |amethyst: help 22:46:31 <|amethyst> PleasingFungus: hm, I wonder why that isn't happening every time you take stairs and it follows you 22:46:39 ame 22:46:49 I was also wondering that 22:46:50 <|amethyst> _grab_follower_at calls monster_cleanup 22:46:53 yes 22:46:59 christ 22:47:27 look: I can deal with that, probably 22:47:37 but I have no idea how to handle offlevel equipment upgrading 22:47:53 I guess I could do the jiyva approach...? 22:48:01 <|amethyst> that would be one way 22:48:07 tell me your thoughts 22:48:20 I have an implementation but it's fundamentally flawed 22:48:39 should I make a ticket for this? "Unlinked item held by dead monster: battleaxe" 22:48:45 Azmund (L13 DsGl) ASSERT(hepliaklqana_ancestor() == MID_NOBODY) in 'mon-death.cc' at line 2610 failed. (Lair:4) 22:48:46 <|amethyst> I was thinking a daction 22:48:53 Floodkiller: is it an orc 22:48:56 yes 22:49:02 then no 22:49:02 or, most likely 22:49:06 alright 22:49:33 <|amethyst> !bug 8187 22:49:33 https://crawl.develz.org/mantis/view.php?id=8187 22:49:42 <|amethyst> Floodkiller: could post a comment there 22:49:56 |amethyst: when does the daction trigger? 22:51:04 <|amethyst> PleasingFungus: when you enter a level it's on 22:51:11 what if you recall them? 22:51:13 <|amethyst> you'd still need to handle recalling separately I think 22:51:31 <|amethyst> hmm 22:51:56 I have a bunch of code that handles modifying the follower's inventory correctly 22:52:11 I guess I could just add a daction on top of that 22:53:17 the other tricky bit is that I want to print messages when stuff is upgraded when the ancestor is offlevel 22:53:29 <|amethyst> hmm 22:53:33 I currently do that by comparing the final state of the ancestor's equipment to their previous state 22:53:48 but if we don't upgrade until later, that has to be abstracted out 22:53:53 ...that's doable, though 22:54:11 <|amethyst> maybe the excursion method would be simpler 22:54:28 my concern about an excursion is that this is happening in the middle of the player levelling up 22:54:30 where can I get a copy of the .tar.bz2 to add to the note for the mantis ticket? 22:54:36 which seems like it could be messy 22:54:42 Floodkiller: have to ask a dev, iirc 22:54:45 <|amethyst> Floodkiller: which server? 22:54:51 CSZO 22:54:56 <|amethyst> Floodkiller: do you have ssh? 22:55:07 Grunt: " There needs to be exactly one change to the name "Hepliaklqana" and it's removing that fucking q or moving the q to where the k is. As it stands it's nearly impossible to internalize because it's weirdly hard to pronounce. Hepliaklana/Hepliaqlana is at least possible to say. " 22:55:13 some people just don't understand... 22:55:14 <|amethyst> !lg floodkiller s=tiles 22:55:15 1596 games for floodkiller: 1596x true 22:55:42 <|amethyst> PleasingFungus: I still think the q should be removed for anagram reasons :P 22:55:49 haha 22:55:54 -!- NeremWorld has quit [Ping timeout: 248 seconds] 22:56:00 if I do, I'm not familliar with using it 22:56:12 in conclusion, I hate state. 22:56:12 <|amethyst> Floodkiller: I'll copy it for you... this is trunk? 22:56:16 yes 22:56:17 PleasingFungus: hah 22:56:30 -!- lobf has joined ##crawl-dev 22:56:43 ftr it's "hep lee ack ull can ah" 22:57:23 !learn add Hepliaklqana ftr it's "hep lee ack ull can ah" 22:57:23 hepliaklqana[4/4]: ftr it's "hep lee ack ull can ah" 22:57:30 <3 22:57:31 feel free to change that to not ping you, actually 22:57:40 just realized 22:57:43 nah, I look forward to people being confused about it 22:57:45 :) 22:57:48 :) 22:58:05 !learn edit hepliaklqana s/$/ I look forward to people being confused about it 22:58:05 Use: !learn edit hepliaklqana[NUM] s/// 22:58:07 <|amethyst> Floodkiller: include this link http://dobrazupa.org/saves/Floodkiller-20160218.tar.bz2 22:58:08 !learn edit hepliaklqana s/$/ I look forward to people being confused about it/ 22:58:08 Use: !learn edit hepliaklqana[NUM] s/// 22:58:11 !learn edit hepliaklqana[4 s/$/ I look forward to people being confused about it/ 22:58:12 hepliaklqana[4/4]: ftr it's "hep lee ack ull can ah" I look forward to people being confused about it 22:58:13 nice update PleasingFungus 22:58:14 <|amethyst> Floodkiller: you can't download it, but devs can 22:58:14 there 22:58:15 <3 22:58:16 (blog) 22:59:18 :) 22:59:28 you'd forgotten about degeneration 22:59:40 alright, added the reply to the ticket with that link 23:00:08 -!- omarax has quit [Remote host closed the connection] 23:00:26 i forgot they were removed! 23:00:33 this darn game updates too fast 23:00:35 -!- debo has quit [Ping timeout: 240 seconds] 23:02:16 -!- Goon_ has quit [Ping timeout: 252 seconds] 23:06:18 -!- vev has quit [Remote host closed the connection] 23:11:42 -!- lobf has quit [Quit: lobf] 23:12:11 <|amethyst> PleasingFungus: as an alternative to removing the Q, change the K to a C 23:12:18 <|amethyst> Then I can rule the Andes 23:12:33 <|amethyst> from Neil Alpaca HQ 23:12:38 !!! 23:13:24 ... 23:13:37 only if you also add alpaqas as enemies 23:13:53 <|amethyst> al-paqah 23:14:22 <|amethyst> (sadly, standard arabic doesn't have a p) 23:14:48 pah! 23:15:12 Floodkiller: good buttlang 23:15:19 -!- aditya has quit [Ping timeout: 240 seconds] 23:16:11 I never turn it off 23:16:33 -!- travis-ci has joined ##crawl-dev 23:16:34 The build passed. (combo_god - b5e76e7 #4782 : Nicholas Feinberg): https://travis-ci.org/crawl/crawl/builds/110281622 23:16:34 -!- travis-ci has left ##crawl-dev 23:17:11 PleasingFungus: there's not really any penalty for losing all your piety as hep 23:17:24 03PleasingFungus02 07[combo_god] * 0.18-a0-1435-g60b4ac8: Abstract out equipment upgrade messages 10(47 seconds ago, 2 files, 77+ 91-) 13https://github.com/crawl/crawl/commit/60b4ac8d6cfa 23:17:24 03PleasingFungus02 07[combo_god] * 0.18-a0-1436-g169090e: Move knight reflection ego down to 13 10(24 seconds ago, 1 file, 2+ 2-) 13https://github.com/crawl/crawl/commit/169090e0e454 23:17:45 chequers: ok 23:17:49 oh wow, I'm so used to buttlang I didn't noticed it hijacked part of the error message as well 23:18:11 chequers: if there's a problem here, it's probably that transference isn't a useful enough ability 23:19:04 yeah, I don't think it's a great ability 23:19:28 -!- lobf has joined ##crawl-dev 23:19:35 so it goes 23:20:12 one thing I was considering was removing the 'death' half of deathswap effects (only trigger on transference, possibly at the current 'death' strength) 23:20:12 -!- lobf has quit [Client Quit] 23:20:24 which might kill a few birds 23:21:03 I like that the death effect sort of reduces the penalty for your ally dying 23:21:26 on the effect I think it's more interesting to have status effects than damage, and maybe you can replace explosion with another status effect option 23:21:41 or could just toss it 23:21:47 not like there needs to be 5 options specifically 23:21:56 ya. you mean 3? 23:22:01 right now there's 4 23:22:04 er 23:22:06 5 23:22:15 3 chosen randomly to present to the player in each game 23:22:29 oh really?? I never realised 23:23:42 it's a super secret 23:23:59 so there's room for plenty more effects 23:24:03 not restricted to the current 5 23:24:13 !learn q ancestor death 23:24:13 Ancestor Death[1/1]: See {Remember Death} 23:24:18 !learn q remember death 23:24:18 Remember Death[1/1]: Hepliaklqana 6* ability. Choose one of five on-death/swap effects for your ancestor (only three are offered in a given game): Slow (slow nearby enemies), Fog (creates fog), Disperse (as {Dispersal}), Implode (as {Gell's Gravitas}), Explosion (an explosion). None will harm the player or ancestor. Choice is permanent. 23:24:50 haha, in all my combo god games I'm finding U then H 23:24:56 so I keep testing U's "wrath" 23:25:00 haha 23:25:03 explosion I only really added because I had good flavor for it when it was a demon god 23:25:10 demonic viscera everywhere!!! 23:25:15 my biggest regret about the switch 23:25:36 yeah i definitely think the other effects are way more interesting 23:25:40 do the powers scale with invo? 23:26:03 not at present 23:26:04 -!- wheals has quit [Quit: Leaving] 23:26:25 -!- wheals has joined ##crawl-dev 23:26:50 I was going to say 'what if explosion was wind blast', but that's basically dispersal, isn't it 23:30:23 probably 23:30:38 i feel like in almost all cases you'll want dispersal, if you have to choose for the entire game 23:30:40 -!- wheals has quit [Remote host closed the connection] 23:31:08 but in several situations I'd want implosion, especially if the ally is not the same ranged/melee status as me 23:31:46 oh cool, you can reach over the ally 23:39:21 I personally went with Fog 23:40:02 which basically never mattered because if the ancestor died it was either out of LOS or I was already running for the stairs fast enough for the fog to not really matter 23:40:26 rip 23:42:40 -!- zxc has joined ##crawl-dev 23:42:51 rip 23:45:01 |amethyst: help 23:45:10 why is my dact applying to an offlevel monster instantly 23:45:12 im gonna cry 23:45:39 http://sprunge.us/Mabd everything sucks 23:46:32 one thing about permaflight is that it makes the ally much better in shoals/swamp 23:53:53 <|amethyst> PleasingFungus: hm, offlevel in what sense 23:54:02 on a different level of D 23:54:05 <|amethyst> hm