00:00:28 Stable (0.13) branch on crawl.s-z.org updated to: 0.13-b1-1-g298bc45 00:06:14 Unstable branch on crawl.s-z.org updated to: 0.14-a0-30-gf0b6e91 (34) 00:07:18 -!- NekoRex has quit [Quit: "All the vain and ignorant will look up and shout 'Save us!', and I'll look down and whisper... 'Nyo.'"] 00:08:03 -!- Arkaniad has quit [Quit: Lost terminal] 00:10:40 -!- magistern has quit [Quit: This computer has gone to sleep] 00:11:45 -!- ystael has quit [Ping timeout: 252 seconds] 00:14:59 -!- Tarquinn has joined ##crawl-dev 00:22:35 -!- Pepe has quit [Ping timeout: 260 seconds] 00:23:21 -!- dead_ has quit [Ping timeout: 250 seconds] 00:30:22 -!- st_ has quit [Read error: Connection reset by peer] 00:30:34 -!- st_ has joined ##crawl-dev 00:42:31 think i found an info leak 00:43:02 is there a way in wizmode to forget which items you know 00:43:10 scrolls in particular 00:43:22 you can unidentify stuff 00:43:47 I think it's unidentify inventory, specifically? 00:43:56 k 00:44:18 ack gotta rebuild from last pull... stupid tomahawk 00:50:00 -!- CeleryMa_ has quit [Ping timeout: 245 seconds] 00:51:14 -!- VolteccerJack has quit [Quit: Page closed] 01:02:19 yeah this is confirmed 01:08:16 -!- kait has quit [Ping timeout: 264 seconds] 01:09:37 -!- buppy has quit [Remote host closed the connection] 01:12:07 -!- ussdefiant_ has joined ##crawl-dev 01:13:14 -!- ontoclasm has quit [Quit: Leaving.] 01:13:54 -!- ussdefiant has quit [Ping timeout: 264 seconds] 01:13:54 -!- phyphor has quit [Ping timeout: 264 seconds] 01:14:02 -!- ussdefiant_ is now known as ussdefiant 01:19:39 -!- pelotr0n has quit [Ping timeout: 248 seconds] 01:21:27 Pigform (and possibly other morphs) remove your dot on the minimap by NekoRex 01:27:23 in itemuse.cc function read_scroll where does it actually call a function based on which scroll it was? 01:27:23 set_ident_type? 01:27:38 New branch created: banish (1 commit) 01:27:39 03bh02 07[banish] * 0.14-a0-31-g1d6a0fd: Tinker with Abyss Spawns 10(7 minutes ago, 1 file, 27+ 28-) 13http://s-z.org/neil/git/?p=crawl.git;a=commitdiff;h=1d6a0fd99717 01:29:01 -!- bisonbisonbison has quit [Quit: Page closed] 01:29:25 ah i found it: id_the_scroll = _scroll_modify_item(scroll); 01:31:45 -!- Kalir has quit [Quit: CADENZA-CLASS CLOCKWORK KNIGHT--OPERATION TERMINATED] 01:33:05 -!- Pacra has quit [Read error: Operation timed out] 01:34:51 -!- gregunderscorem has quit [Ping timeout: 250 seconds] 01:35:21 -!- Ryan_ has quit [Quit: Page closed] 01:42:54 -!- gammafunk has quit [Quit: gammafunk] 01:44:37 -!- Zifmia has quit [Quit: Wrong button bad with computers] 01:46:14 what is base type of a scroll? 01:46:57 what do you mean? 01:46:58 OBJ_SCROLLS from enum.h? 01:47:19 umm im trying to call bool item_type_known(const object_class_type base_type, const int sub_type) 01:47:20 oh, that; look at the crawl-gdb.py for that stuff really 01:48:12 * SamB is tired 01:48:13 er, yes I guess OBJ_SCROLLS is what you seek ... 01:48:22 crawl-gdb.py? 01:48:28 debugger? 01:48:46 -!- minqmay has quit [Quit: Leaving] 01:49:19 I wrote a pretty-printer for item_def that also could be used as a reference for what sub-type enum goes with what base type ... but I forgot what base type meant momentarily ;-X 01:49:20 now im trying to find sub-type 01:50:03 the type in question is scroll_type 01:50:16 if my pretty-printer is correct, anyway 01:51:00 SamB: i tried python crawl-dgb.py on my cli and got some gnarly errors 01:51:13 no module named gdb 01:51:37 i need base_type and sub_type for a scroll of enchant armour 01:51:47 yeah, this is meant to be run by GDB itself 01:52:09 with an open crawl process? 01:53:07 But you can also get some information out of the code. Well, *I* can anyway. 01:53:38 "/home/m/crawl/crawl-ref/source/crawl-gdb.py": not in executable format: File format not recognized 01:54:01 isnt there just an easy way to grep it? 01:54:16 dunno 01:54:28 yes ;-) 01:54:31 -!- st_ has quit [Ping timeout: 260 seconds] 01:54:37 itemname.cc: case SCR_ENCHANT_ARMOUR: return "enchant armour"; 01:56:36 that item_type_known function is looking for an int in the subtype field though... 01:57:29 if you want to know what value that has, gdb is your friend 01:59:16 -!- ryansee has quit [Quit: Page closed] 01:59:24 -!- NekoRex has quit [Quit: "All the vain and ignorant will look up and shout 'Save us!', and I'll look down and whisper... 'Nyo.'"] 01:59:40 (gdb) print (int) SCR_ENCHANT_ARMOUR 01:59:40 $2 = 7 02:04:44 2 or 7? there is no line of code that has "armour" and "7" 02:04:55 and 2 doesnt show anything either 02:04:57 strange 02:06:12 $2 is just a way to reference that value again; gdb assigns one to every print output 02:06:52 then somewhere there should be a line with armour and 7 together right? 02:06:57 and yeah, no code assigns the value 7 explicitly; it's just that that is what was next 02:07:48 -!- Zaba has quit [Ping timeout: 252 seconds] 02:07:59 behold: 02:08:03 itemprop-enum.h:316: SCR_ENCHANT_ARMOUR, 02:08:06 i could go crazy hacker and just create an item object scroll = SCR_ENCHANT_ARMOUR then mpr(scroll.item.subtype) 02:08:43 ahh fuck 02:08:51 that's the line that assigns the number 7 (implicitly) to SCR_ENCHANT_ARMOUR 02:09:05 enums start at 0 right? 02:09:10 that could make sens 02:09:19 s/c/w 02:09:25 -!- ussdefiant has quit [Ping timeout: 248 seconds] 02:09:50 -!- Zifmia has quit [Quit: Wrong button bad with computers] 02:09:53 by default, yes 02:11:23 well damn, that didnt fix what i was trying to do :D 02:12:13 what are you trying to do? 02:12:19 so the way it stands right now, if you have a max enchanted armour (+3 shield) and read an un-id'd enchat armour scroll, the shield will not pop up which is info leak. 02:13:12 say what? 02:13:15 so i added a line in is_enchantable_armour to return true if enchant armour is unknown, but that actually allowed the shield to be enchanted 02:13:44 yeah i just noticed it on CAO so i tested it and it seems to be legit 02:13:58 -!- Zaba has joined ##crawl-dev 02:14:11 what exactly happens when you try to enchant this thing with the un-IDed scroll? 02:14:26 i need to figure out how to allow the armour in question to be displayed, but prevent the actual item mod from going through 02:14:34 guys, just a quick question, which file should I modify if I want to correctly modify the footer in webtiles? 02:14:34 TZer0: You have 1 message. Use !messages to read it. 02:14:35 the shield not popping up is not an info leak I think, if you have a targetting scroll it's one of ID, recharging, and EA, and none of those will do anything on a +3 shield 02:14:40 !messages 02:14:41 (1/1) |amethyst said (2h 52m 16s ago): you'll also need to edit /chroot/bin/init-webtiles.sh to init 0.13 rc/macro files and publish 02:14:58 I thought 02:15:24 that an enchantment scroll would do make a glow when applied to fully-enchanted gear 02:15:52 ogaz: ID was id'd, and i thought it might have been recharging or enchant armour, but i noticed my gloves were not showing and that caught my interest 02:17:31 Naruni: so you're just saying that an item you couldn't possibly get any real benefit from using the scroll on not being on the menu somehow leaks info? 02:17:51 Interesting bug. 02:17:53 :D 02:18:09 -!- mong has quit [Quit: Leaving] 02:18:14 -!- SkaryMonk1 has joined ##crawl-dev 02:18:29 -!- Zaba has quit [Ping timeout: 248 seconds] 02:18:38 maybe 'info leak' is a little drastic, but it was sure as shit obvious to me when those gloves didnt pop up and all my other armour did 02:18:50 it sounds like it's not really a bug: why would you want to use any scroll on a fully-enchanted armour ever? 02:19:00 SamB: i was read-id'ing it 02:19:09 -!- Zaba has joined ##crawl-dev 02:19:25 and doesn't the same thing happen with un-IDed recharging? 02:20:04 SamB: does it happen with the recharge scroll if you have fully enchanted armor? 02:20:27 if yes, then you can blind-ID stuff by having max-exchanted armor 02:20:36 sorry, if no I meant 02:20:50 TZer0: thats what i was getting at 02:20:53 AIUI, the menu for an un-IDed item-menu scroll is just the union of the menus for the IDed scrolls 02:21:54 so this would be on the menu for ANY of them 02:22:00 (try it and see) 02:22:11 anyway, sleep for me ... 02:22:52 SamB: good night. 02:23:18 cya SamB 02:23:44 / For unidentified scrolls of recharging, identify and enchant armour 02:23:45 / offer full choice of inventory and only identify the scroll if you chose 02:23:45 / something that is affected by the scroll. 02:25:46 -!- TangoFoxtrot_ has quit [Quit: Page closed] 02:26:11 !tell |amethyst done. 02:26:12 TZer0: OK, I'll let |amethyst know. 02:26:49 Naruni: well, or remove stuff you don't want to try enchant anyway 02:27:09 and perhaps add the option for force attempting an enchant in case everything you have is max-enchanted 02:27:13 (possible.. but unlikely..) 02:27:43 -!- ogaz has quit [Ping timeout: 250 seconds] 02:42:56 -!- ainsophyao has joined ##crawl-dev 02:46:43 -!- SurpriseTRex has quit [Ping timeout: 260 seconds] 02:47:43 -!- ainsophyao has quit [Ping timeout: 256 seconds] 02:49:29 -!- Pulseman has quit [Quit: Want to be different? Try HydraIRC -> http://www.hydrairc.com <-] 02:51:01 -!- ChongLi has quit [Ping timeout: 245 seconds] 02:52:18 -!- |amethyst has quit [Ping timeout: 264 seconds] 02:53:03 -!- Sizzell has quit [Ping timeout: 245 seconds] 03:01:54 -!- Quashie has quit [Ping timeout: 256 seconds] 03:03:35 -!- Hailley has quit [Quit: Petra is closed!] 03:05:26 -!- randart has quit [Ping timeout: 240 seconds] 03:08:37 -!- hurdos has quit [Ping timeout: 246 seconds] 03:09:22 -!- Soulmask has quit [Ping timeout: 250 seconds] 03:14:10 -!- Dr_Ke has quit [Ping timeout: 245 seconds] 03:14:18 -!- dtsund has quit [Ping timeout: 245 seconds] 03:14:32 -!- |amethyst has joined ##crawl-dev 03:15:11 -!- magicpoints has quit [Ping timeout: 260 seconds] 03:15:16 -!- dtsund has joined ##crawl-dev 03:18:24 -!- Sizzell has joined ##crawl-dev 03:24:52 -!- SkaryMonk2 has joined ##crawl-dev 03:24:53 -!- SkaryMonk1 has quit [Ping timeout: 256 seconds] 03:31:50 -!- simmarine has quit [Quit: Leaving] 03:37:03 -!- BasementCat has quit [Ping timeout: 250 seconds] 03:45:01 -!- Marbit has joined ##crawl-dev 03:51:08 -!- SurpriseTRex has quit [Quit: Leaving] 03:51:15 -!- flowsnake has quit [Read error: Connection reset by peer] 03:55:53 -!- flowsnake has joined ##crawl-dev 04:06:30 -!- dtsund has quit [Read error: Connection reset by peer] 04:06:59 -!- dtsund has joined ##crawl-dev 04:07:09 -!- Bcadren has quit [Ping timeout: 252 seconds] 04:07:40 -!- indspenceable has quit [Remote host closed the connection] 04:13:09 -!- ystael has quit [Ping timeout: 240 seconds] 04:13:51 -!- culcube is now known as phyphor 04:20:37 -!- dtsund has quit [Read error: Connection reset by peer] 04:23:54 -!- alefury has joined ##crawl-dev 04:31:50 -!- _dd has joined ##crawl-dev 04:36:17 -!- VladTC has quit [Quit: Page closed] 04:44:04 -!- Roarke has quit [Quit: Page closed] 04:47:03 -!- MaxFrost has quit [Ping timeout: 256 seconds] 04:49:30 -!- dtsund has joined ##crawl-dev 04:49:37 -!- dtsund has quit [Client Quit] 04:49:53 -!- Crehl has quit [Quit: Leaving] 04:57:47 -!- Thyme has quit [Ping timeout: 248 seconds] 04:57:56 -!- CampinSam has quit [Ping timeout: 245 seconds] 05:02:30 -!- hart_ has quit [Read error: Connection reset by peer] 05:08:28 -!- Suga_H has quit [Ping timeout: 245 seconds] 05:09:02 -!- radinms has quit [Ping timeout: 240 seconds] 05:13:56 -!- alefury has quit [Read error: Connection reset by peer] 05:17:58 -!- indspenceable has joined ##crawl-dev 05:20:42 -!- aleksiL has quit [Read error: Connection reset by peer] 05:24:31 -!- indspenceable has quit [Ping timeout: 260 seconds] 05:25:08 -!- SkaryMonk1 has joined ##crawl-dev 05:26:35 -!- SkaryMonk2 has quit [Ping timeout: 248 seconds] 05:36:08 -!- KorpsDeKrieg has quit [Ping timeout: 260 seconds] 05:41:39 -!- alefury has joined ##crawl-dev 05:57:20 -!- crate has quit [Read error: Connection reset by peer] 06:01:52 -!- KorpsDeKrieg has quit [Ping timeout: 240 seconds] 06:02:52 -!- Blazinghand has quit [Ping timeout: 264 seconds] 06:09:24 -!- syllogism has joined ##crawl-dev 06:19:40 -!- jeanjacques has quit [Ping timeout: 264 seconds] 06:20:37 -!- indspenceable has joined ##crawl-dev 06:25:48 -!- indspenceable has quit [Ping timeout: 240 seconds] 06:31:34 -!- Sgeo has quit [Read error: Connection reset by peer] 06:32:33 -!- crate has quit [Quit: Leaving] 06:33:39 -!- Pacra has joined ##crawl-dev 06:33:51 -!- mizu_no_oto has quit [Quit: Computer has gone to sleep.] 06:37:23 -!- VladTC has quit [Quit: Page closed] 06:43:27 -!- ainsophyao has joined ##crawl-dev 06:47:59 -!- ainsophyao has quit [Ping timeout: 256 seconds] 06:48:44 -!- mizu_no_oto has quit [Quit: Computer has gone to sleep.] 06:54:46 -!- indspenceable has joined ##crawl-dev 07:01:09 -!- indspenceable has quit [Ping timeout: 248 seconds] 07:04:05 -!- ackack has joined ##crawl-dev 07:24:47 -!- SkaryMonk2 has joined ##crawl-dev 07:26:52 -!- SkaryMonk1 has quit [Ping timeout: 264 seconds] 07:30:37 -!- Xenobreeder has quit [Ping timeout: 250 seconds] 07:32:31 -!- Ur-Quan has quit [Ping timeout: 245 seconds] 07:34:35 -!- scummos^ has quit [Ping timeout: 248 seconds] 07:35:50 -!- indspenceable has joined ##crawl-dev 07:41:30 -!- indspenceable has quit [Ping timeout: 264 seconds] 07:42:30 -!- frank___ has quit [Quit: Page closed] 07:44:07 -!- Ladykiller69 has joined ##crawl-dev 07:44:13 -!- Ladykiller69 is now known as Drahbeg 07:44:50 Has there ever been an idea on the table to make Dgs Hus with mandatory permanent god choice at the beginning? 07:45:14 and maybe increased piety 07:47:21 probably not since that doesn't make any sense? 07:48:27 what with the whole point of demigods being that they don't get a god 07:48:30 <|amethyst> the restriction would be barely noticeable for 3 rune games 07:48:30 |amethyst: You have 1 message. Use !messages to read it. 07:48:44 I mean very early in the design process 07:49:34 <|amethyst> Dg is older than most of us have been devs, so can't speak to that :) 07:51:21 And a magic school that focusses on using items to cast spells? 07:51:56 <|amethyst> we have a few such spells, but they're not in any one school 07:52:33 no, not as ingredients 07:52:38 more like 07:52:48 "you need this item for this spell" 07:53:49 <|amethyst> no, that would just annoy people when they have one and not the other 07:53:49 so finding an item means finding a spell 07:54:10 <|amethyst> particularly if the item were specific to that spell 07:54:21 <|amethyst> we don't want to turn Crawl into the McDonald's Monopoly game 07:54:39 I need to explain better 07:54:54 a class with an ability to use items to cast spells 07:54:58 one ability 07:55:14 that's not how classes work 07:55:17 give an example of a spell you have in mind 07:55:34 hm 07:55:46 <|amethyst> that sounds more like a god ability in crawl, yes 07:55:50 it wouldnt fit into the class system, marvin's right 07:56:09 <|amethyst> e.g. sacrifice a plate armour to get stoneskin ? 07:56:22 that would be cool for a god 07:56:23 <|amethyst> (one cast of stoneskin) 07:57:19 MarvinPA: once I get my lazy ass off the ground and mumra happens to be available too, we'll slowly potter along with the abstract worshippers. A lot's already there. 08:01:15 -!- indspenceable has joined ##crawl-dev 08:04:04 -!- Zermako has quit [] 08:07:39 -!- indspenceable has quit [Ping timeout: 248 seconds] 08:18:09 -!- Giomancer has quit [Quit: Leaving] 08:21:55 -!- Soner2 has joined ##crawl-dev 08:25:01 -!- Soner has quit [Ping timeout: 246 seconds] 08:28:05 -!- Ganrao has joined ##crawl-dev 08:28:31 -!- Vandal has quit [Ping timeout: 246 seconds] 08:29:13 -!- ToBeFree has quit [Ping timeout: 246 seconds] 08:35:49 -!- indspenceable has joined ##crawl-dev 08:37:54 Also can somebody add "It's Blork the fucking orc!" to his dialogue? 08:39:09 nope 08:41:03 -!- indspenceable has quit [Ping timeout: 252 seconds] 08:44:10 -!- Tarquinn has quit [Quit: Leaving] 08:48:26 ??fungus 08:48:27 fungus[1/1]: A non-interactive plant in the dungeon. Nothing special about it, except that it can block an oklob plant's LOF. 08:48:55 i infer from the obvious mechanics that there is some function that gets delays for player movement and player weapons 08:49:05 is there anything for spells is that hardcoded to match the global delay for the player? 08:49:15 s/spells is/spells, or is 08:57:28 -!- ToBeFree has joined ##crawl-dev 08:58:03 -!- ontoclasm has joined ##crawl-dev 08:58:46 ??wand of heal wounds 08:58:47 wand of heal wounds[1/1]: Exactly like a potion of heal wounds, except you can recharge it, it's lightweight and it won't be destroyed by cold attacks. Its healing is not based at all on evocation skill (but Ely pacification with it is, for some reason). Deep Dwarves start with one that has five charges. It's cool! 08:59:10 ??scroll of recharging 08:59:11 scroll of recharging[1/3]: When used on a wand, refills a varying number of charges. When used on a rod, will increase the rod's enchantment by 1d2, restore the rod's power, and add 1d2 magic points to its limit, up to 17. 08:59:24 ??scroll of recharging[2 08:59:24 scroll of recharging[2/3]: Wand limits: invis, heal, haste, fireball, tele: 9; lightning, drain: 12; fire, cold: 15; other: 24. Note that these limits apply to recharging only, not starting values. One scroll will add to # of charges between 1 and two less than the maximum number of charges, weighted to the middle of the distribution. 09:01:12 ??nessos 09:01:13 nessos[1/3]: A unique centaur, generated with a longbow of flame, poisoned arrows, a centaur barding, haste and blink. Also blinks away from you. Fires poisoned arrows of flame (no, you can't). His magic resistance is considerably low, so he's susceptible to slowness, paralyzing, etc. 09:01:16 oops 09:01:19 I am so sorry 09:03:55 -!- indspenceable has joined ##crawl-dev 09:05:45 -!- Bcadren has quit [Quit: For Sale: Intergalactic Proton Powered Electrical Tentacled Advertising Droids] 09:05:46 a while ago people were discussing the idea of more magic boosting transmutations 09:06:08 i had the idea this morning that a core effect for one of those could be "magic swiftness," reducing the delay of spellcasting to .8 for the duration of the transform 09:06:24 but i have no idea how feasible that is to implement with the present delay system 09:08:00 -!- bmfx has quit [Read error: Connection reset by peer] 09:08:59 -!- Pacra has quit [Ping timeout: 248 seconds] 09:10:07 that's probably pretty easily doable 09:10:10 no idea how good an idea it is though 09:10:18 -!- indspenceable has quit [Ping timeout: 264 seconds] 09:11:42 only really useful for conjurers i guess? and if it stacks on top of haste that could potentially be pretty silly 09:12:44 and if it doesn't stack, you'd just get charms for haste+all the other charms stuff instead of tmut for that, maybe 09:14:01 -!- mizu_no_oto has quit [Client Quit] 09:16:47 -!- blackflare has quit [Ping timeout: 256 seconds] 09:17:50 -!- ogaz has joined ##crawl-dev 09:17:54 To me it makes more sense that transmuting your body affects things you do with your body 09:21:36 guys 09:21:43 I just encounered a slime creature 09:21:46 and it blinked 09:22:36 Playing trunk 09:25:41 -!- SkaryMonk2 has quit [Ping timeout: 248 seconds] 09:25:49 -!- SkaryMonk1 has joined ##crawl-dev 09:25:49 how what wtf? 09:26:21 well you are wielding a chaos weapon 09:26:34 oh 09:26:36 right 09:26:36 -!- st_ has joined ##crawl-dev 09:26:42 that 09:27:20 -!- SkaryMonk1 has quit [Client Quit] 09:34:55 -!- indspenceable has joined ##crawl-dev 09:36:35 in case anyone may find it interesting, I made a proposal to change the hall of blades into the forge to add monster variety (reviving discusion from a related post) 09:36:43 https://crawl.develz.org/tavern/viewtopic.php?f=8&t=9414 09:40:00 -!- indspenceable has quit [Ping timeout: 246 seconds] 09:44:55 marvinpa: i was assuming it would stack with haste, and yes, it would be of most interest to conjurers 09:45:10 sort of giving them something to do with transmutation besides lichform 09:45:27 the other possibility was figuring out how to repurpose the djinn gimmick as a tm spell 09:46:12 -!- gammafunk has joined ##crawl-dev 09:48:33 -!- Bloax has joined ##crawl-dev 10:01:34 -!- LexAckson has joined ##crawl-dev 10:05:32 -!- indspenceable has joined ##crawl-dev 10:05:40 -!- indspenceable has quit [Read error: Connection reset by peer] 10:06:04 -!- indspenceable has joined ##crawl-dev 10:11:33 -!- indspenceable has quit [Ping timeout: 248 seconds] 10:13:10 -!- bhaak has quit [Read error: Operation timed out] 10:13:15 -!- radinms has quit [] 10:14:30 -!- LexAckson has quit [Read error: Connection reset by peer] 10:15:52 -!- MarvinPA_ has joined ##crawl-dev 10:15:58 -!- MarvinPA has quit [Ping timeout: 246 seconds] 10:16:00 -!- MarvinPA_ is now known as MarvinPA 10:16:07 -!- bhaak has joined ##crawl-dev 10:18:00 -!- Morg0th has quit [Quit: leaving] 10:20:24 -!- LexAckson has joined ##crawl-dev 10:20:54 ackack: you mean like sublimation? 10:21:12 ackack: actually, which Dj gimmick? 10:22:29 alefury: essence 10:22:40 okay, so you mean like sublimation 10:22:54 i mean a transmutation where you have essence, as if you were a djinn 10:23:05 sublimation? 10:23:07 the problem i see with this is that high end dj casters seem overly formidable 10:23:10 ;) 10:23:27 well, sublimation has a) the possibility of chunks, and b) you have the choice to cast it or not 10:23:52 also with good necro the transferral of hp to mp is probably more efficient than 2:1 10:24:58 its pretty random 10:25:14 no idea what the average turns out to be 10:29:12 -!- SurpriseTRex has quit [Ping timeout: 260 seconds] 10:29:52 <|amethyst> !tell tzer0 looks like you'll need to kill and restart crawl-inotify-dglwhere: the W menu isn't showing locations 10:29:53 |amethyst: OK, I'll let tzer0 know. 10:30:33 how about a form which (also?) acts like magic berserk 10:30:44 i.e. you can cast spells but are locked out of most other actions 10:31:29 and in exchange you get (insert bonus here) 10:32:42 bigger explosions! more damage! 10:33:15 whenever you cast a spell, a horde of screaming fans appears from nowhere to cheer you on 10:33:35 -!- Xenobreeder has quit [Quit: Page closed] 10:33:40 I'm not sure it would work very well 10:34:25 -!- ussdefiant has joined ##crawl-dev 10:34:50 FR: reflavor Boris as a felid 10:34:55 Maybe if it really was a lot like berserk, lasting long with monsters in sight but quickly ending without. Or with a short duration and maybe even a drawback when it runs out. Also, the berserker rage spell had problems, but I don't think they really apply in this case 10:35:38 ddoor 10:36:43 can't use ddoor, otherwise makes it too easy to get access to ddoor 10:37:00 magic berserking is an interesting idea but the problem with that vs. melee berserking is you never run out of the ability to melee 10:37:13 I was thinking more about the drawbacks 10:37:37 you boost your magic ability at the cost of your hp 10:38:01 as opposed to doing that the weird way (essence makes little sense to me...) 10:42:53 -!- mizu_no_oto has quit [Quit: Computer has gone to sleep.] 10:43:35 ackack: well, if you combine this with the djinn ep thing 10:43:44 running out of mp kills you 10:44:01 yeah, but you have a lot more mp than usual 10:44:11 well yeah 10:44:22 how does sublimation work with djinni? 10:44:33 you can't sub yourself 10:44:38 -!- Sabaki has quit [Ping timeout: 264 seconds] 10:45:03 my drawback idea was something like 10:45:10 you can't end it early (or doing so takes ages) 10:45:16 -!- athros has quit [Quit: Take care everyone! - Colloquy for iPad] 10:45:19 and when you go back, the ep first funnels into your hp 10:45:26 so likely you'll have 0 mp afterwards 10:45:37 -!- rapierx has quit [Ping timeout: 250 seconds] 10:46:09 -!- ketsa has quit [Quit: Page closed] 10:47:23 -!- indspenceable has joined ##crawl-dev 10:47:38 -!- ontoclasm has quit [Quit: Leaving.] 10:49:05 -!- magistern has quit [Quit: This computer has gone to sleep] 10:54:30 -!- ais523_ has joined ##crawl-dev 10:56:56 -!- Marbit has quit [Quit: Page closed] 10:57:20 -!- clouded_ has joined ##crawl-dev 11:00:05 -!- st_ has quit [Ping timeout: 248 seconds] 11:07:17 -!- b4rR31_r0l1 has quit [Quit: Page closed] 11:09:35 -!- clouded_ is now known as st_ 11:11:01 -!- ackack has quit [Quit: Leaving] 11:12:18 -!- magicpoints has quit [Ping timeout: 252 seconds] 11:13:09 -!- simmarine has joined ##crawl-dev 11:21:15 -!- ainsophyao has joined ##crawl-dev 11:30:28 !tell bh current abyss skeletons suck, but making them work like they once did might be better than dropping them. We lost even those iconic grey snake skeletons. 11:30:28 -!- UseBees has quit [Ping timeout: 264 seconds] 11:30:29 kilobyte: OK, I'll let bh know. 11:31:24 -!- ais523_ has quit [] 11:32:22 !tell bh what's the point of distributions like -1, 5, 2000, DOWN? -1, 5, 2000, UP makes sense: it goes from 3/7 at A:1 to 7/7 at A:5, but DOWN is a roundabout way for scaling everything down. 11:32:23 kilobyte: OK, I'll let bh know. 11:33:55 -!- mizu_no_oto has quit [Quit: Computer has gone to sleep.] 11:34:19 !tell bh I'd want to allow all monsters to spawn in the Abyss for the stress test bot (but not necessarily the real game). Should I coordinate with you, or just hack something, possibly with some debug-only dlua call? 11:34:20 kilobyte: OK, I'll let bh know. 11:34:59 -!- Poncheis has quit [Quit: ChatZilla 0.9.90.1 [Firefox 23.0.1/20130814063812]] 11:46:49 -!- mizu_no_oto has quit [Quit: Computer has gone to sleep.] 11:47:00 -!- indspenceable has quit [Remote host closed the connection] 11:48:26 -!- alefury has quit [Quit: ChatZilla 0.9.90.1 [Iceweasel 23.0/20130807024356]] 11:50:11 -!- JaGGedTK has quit [Ping timeout: 250 seconds] 11:58:52 -!- _UseBees has quit [Ping timeout: 246 seconds] 12:07:36 -!- mizu_no_oto has quit [Client Quit] 12:12:34 -!- duralumin has quit [Quit: Leaving] 12:19:10 Unstable branch on crawl.akrasiac.org updated to: 0.14-a0-30-gf0b6e91 (34) 12:27:26 -!- Pisano has quit [Read error: Connection reset by peer] 12:27:28 -!- Cryp71c has joined ##crawl-dev 12:28:37 -!- Kalir has quit [Changing host] 12:28:57 -!- Giomancer has joined ##crawl-dev 12:29:37 -!- VolteccerJack has quit [Ping timeout: 250 seconds] 12:29:44 -!- VolteccerJack_ is now known as VolteccerJack 12:31:51 -!- jeanjacques has joined ##crawl-dev 12:43:03 -!- ussdefiant has quit [Ping timeout: 256 seconds] 12:44:48 -!- SurpriseTRex has quit [Ping timeout: 240 seconds] 12:52:27 -!- Gotham has joined ##crawl-dev 12:53:38 -!- ackack has joined ##crawl-dev 12:54:33 -!- dtsund has joined ##crawl-dev 12:57:28 -!- indspenceable has joined ##crawl-dev 12:59:39 -!- ChickenWing has quit [Quit: Page closed] 13:03:06 -!- indspenceable has quit [Ping timeout: 264 seconds] 13:03:17 -!- mizu_no_oto has quit [Quit: Computer has gone to sleep.] 13:11:39 -!- rapierx has quit [Ping timeout: 250 seconds] 13:14:24 -!- ackack has quit [Ping timeout: 252 seconds] 13:16:01 -!- mizu_no_oto has quit [Quit: Computer has gone to sleep.] 13:22:10 -!- VolteccerJack has quit [Quit: Page closed] 13:22:11 -!- ZChris13 has joined ##crawl-dev 13:26:25 -!- Thyme has joined ##crawl-dev 13:26:26 -!- mizu_no_oto has quit [Quit: Computer has gone to sleep.] 13:27:03 are there any downsides to being a gargoyle? 13:27:41 -!- tensorpudding has quit [Quit: ZNC - http://znc.sourceforge.net] 13:28:42 low HP; AC goes only so far 13:28:43 -!- Leafsnail has quit [Quit: Easy as 3.14159265358979323846...] 13:28:53 early gargoyles die to orc priest smiting a lot 13:28:59 oh, i didn't notice the low hp yet 13:29:12 though the 0 exp apt helps that somewhat 13:32:44 -!- kingbuddyboy has quit [Quit: Page closed] 13:41:54 -!- greg___ has quit [Quit: Page closed] 13:42:20 -!- MDesigner has quit [Quit: Leaving] 13:42:32 -!- mizu_no_oto has quit [Client Quit] 13:43:26 it's kind of dangerous until you hit a certain number of HP 13:43:38 Well i guess that shows it. Just got one shot from max hp 13:43:50 but they get much more to make up for it than the other HP -2 races I think' 13:43:52 iron shot for 89 damage 13:43:58 i only had 86 hp 13:44:27 -!- SkaryMonk has quit [Read error: Connection reset by peer] 13:44:27 you could probably argue DE's good spell apts but yeah 13:44:43 not very safe against that sort of threat until triple digit HP 13:44:53 probably really not until 120-140 or something 13:44:57 yeah 13:45:30 the high ac makes you feel safe 13:45:51 but really you are not 13:46:09 even so some people will just randomly get through without ever taking sufficiently strong hits to get murdered like that 13:46:17 yeah 13:46:50 -!- SkaryMonk has joined ##crawl-dev 13:48:28 -!- marquess has quit [Ping timeout: 240 seconds] 13:53:57 -!- robotcentaur has joined ##crawl-dev 13:55:25 -!- UrQuan has quit [Ping timeout: 250 seconds] 13:55:42 AC is pretty weak unless it comes with GDR 13:56:20 and GDR itself is pretty weak unless it comes with AC 13:58:32 -!- Pisano has quit [Quit: Leaving.] 14:01:05 the first part is really not true 14:01:38 you definitely notice that it's weaker against things that gdr doesn't apply to but it's still not bad 14:01:59 certainly you take noticeably less damage from centaurs with 25 AC than with 10 14:02:30 -!- gammafunk has quit [Quit: gammafunk] 14:05:41 -!- ainsophyao has quit [Remote host closed the connection] 14:06:14 -!- ainsophyao has joined ##crawl-dev 14:12:19 -!- Aarinfel has quit [Quit: Page closed] 14:13:27 well, 15 of any defense stats is noticeable 14:13:43 especially that early on 14:14:18 but where are you going to take that 25 AC from when you still care about centaurs? 14:15:42 probably nowhere but even if I think evasion-based defenses usually make for stronger characters overall 14:16:04 I would not say that I'd feel particularly safer against centaurs with 8/20 than with 20/8 14:16:19 >30 AC/EV/SH is pretty absurd however. 14:16:25 And not very hard to achieve with a gargoyle. 14:16:53 by the time you have that on anybody you're scared of very few enemies at all 14:17:01 and on a gargoyle that still will take a long time 14:17:25 unless you're using a large shield at 0 skill for some reason 14:17:29 -!- Cryp71c has quit [Quit: Leaving] 14:17:36 still losing EV from that though... 14:19:01 -!- SkaryMonk has quit [Ping timeout: 248 seconds] 14:21:16 SwissStopwatch: cheibriados 14:21:28 grab a shield and pump some dodging 14:21:33 suddenly godmode 14:22:04 chei characters, very well known for being good 14:22:43 but they're certainly a special case for good or ill 14:22:45 Chei gargoyles even more so, since AC+EV is extremely good. 14:24:19 -!- ainsophyao has quit [Remote host closed the connection] 14:28:17 -!- BrightCloud has quit [Ping timeout: 264 seconds] 14:28:17 -!- Ragnor has quit [Disconnected by services] 14:30:57 -!- Soulmask has quit [Ping timeout: 250 seconds] 14:34:19 -!- Tux[Qyou] has quit [Quit: Excess flood] 14:34:38 -!- Nightbeer has joined ##crawl-dev 14:35:04 -!- ackack has joined ##crawl-dev 14:36:10 -!- robotcentaur has quit [Quit: Page closed] 14:36:59 -!- mizu_no_oto has quit [Ping timeout: 248 seconds] 14:38:16 -!- Drahbeg has quit [Ping timeout: 264 seconds] 14:41:48 -!- duckroller has quit [Read error: No route to host] 14:43:57 -!- sumguy has quit [Ping timeout: 250 seconds] 14:50:53 -!- Xenobreeder has quit [Ping timeout: 250 seconds] 14:58:41 -!- Garhauk has quit [Quit: Page closed] 14:59:07 -!- rapierx has quit [Ping timeout: 250 seconds] 15:01:11 -!- b4rR31_r0l1 is now known as barrel 15:01:39 -!- barrel is now known as b4rR31_r0l1 15:06:05 the bots don't appear to recognize 0.13-b games/milestones 15:07:21 -!- BasementCat has quit [Ping timeout: 250 seconds] 15:07:43 <|amethyst> greensnark hasn't updated Sequell yet 15:08:03 <|amethyst> and neither he nor I have updated Henzell 15:08:14 <|amethyst> Sizzell and Lantell should be updated already 15:09:02 -!- syllogism has quit [] 15:09:32 -!- mizu_no_oto has quit [Quit: Computer has gone to sleep.] 15:11:57 -!- NotKintak has quit [Read error: Connection reset by peer] 15:12:35 -!- NotKintak has joined ##crawl-dev 15:15:09 -!- Nilsyn has quit [Ping timeout: 250 seconds] 15:15:17 -!- ackack has quit [Quit: Leaving] 15:23:36 -!- Valarioth has quit [Quit: Page closed] 15:24:37 -!- Zaba has quit [Ping timeout: 248 seconds] 15:27:48 -!- Quashie has quit [Ping timeout: 240 seconds] 15:28:58 -!- Tux[Qyou] has quit [Quit: Excess flood] 15:30:34 -!- Zaba has joined ##crawl-dev 15:31:26 -!- Pisano has quit [Quit: Leaving.] 15:32:03 -!- ogaz has quit [Ping timeout: 250 seconds] 15:33:06 -!- Leafsnail has quit [Quit: ASCII a stupid question, get a stupid ANSI!] 15:35:04 -!- indspenceable has joined ##crawl-dev 15:35:30 -!- magistern has quit [Quit: This computer has gone to sleep] 15:35:33 -!- mizu_no_oto has quit [Client Quit] 15:37:21 -!- Kellhus has quit [Quit: Page closed] 15:38:30 -!- herself has quit [Ping timeout: 252 seconds] 15:39:42 -!- ontoclasm has joined ##crawl-dev 15:40:16 -!- valtern has quit [Read error: Connection reset by peer] 15:43:21 -!- Daekdroom has quit [Read error: Connection reset by peer] 15:47:33 -!- VolteccerJack has quit [Quit: Page closed] 15:48:38 giantbat the Ducker (L4 HuMo) (D:3) 15:49:44 CFSZero the Invulnerable (L27 MiFi) (Abyss:2) 15:50:12 NoamChomsky the Heavyweight Champion (L27 TrFi) (Vaults:5) 15:50:25 <|amethyst> henzell got stuck again 15:50:30 <|amethyst> s/henzell/cao/ 15:51:07 -!- b4rR31_r0l1 has quit [Ping timeout: 250 seconds] 15:53:54 -!- indspenceable has quit [Remote host closed the connection] 15:57:16 -!- Soner2 is now known as Soner 16:07:09 -!- b4rR31_r0l1_ has quit [Ping timeout: 250 seconds] 16:09:15 -!- st_ has quit [Read error: Connection reset by peer] 16:09:54 -!- st_ has joined ##crawl-dev 16:11:50 -!- aleksiL has quit [Ping timeout: 256 seconds] 16:12:51 -!- dc is now known as giantbat 16:19:11 -!- Blazinghand has quit [Ping timeout: 245 seconds] 16:19:43 -!- dead_ has quit [Ping timeout: 250 seconds] 16:24:24 -!- Nightbeer has quit [Read error: Connection reset by peer] 16:27:25 -!- b is now known as Guest66748 16:27:46 -!- Guest66748 has quit [Client Quit] 16:28:22 -!- Morg0th has quit [Quit: leaving] 16:31:00 -!- Aryth has quit [Quit: KVIrc 4.0.4 Insomnia http://www.kvirc.net/] 16:34:58 -!- indspenceable has joined ##crawl-dev 16:39:15 -!- MarvinPA has quit [Ping timeout: 260 seconds] 16:39:29 -!- MarvinPA has joined ##crawl-dev 16:40:07 -!- dtsund has left ##crawl-dev 16:40:24 -!- duralumin has quit [Read error: Connection reset by peer] 16:41:33 -!- mizu_no_oto has quit [Quit: Computer has gone to sleep.] 16:44:42 -!- Lightli has joined ##crawl-dev 16:46:50 -!- VladTC has quit [Quit: Page closed] 16:52:03 -!- gammafunk has joined ##crawl-dev 16:53:34 -!- dtsund has joined ##crawl-dev 16:57:39 -!- ZChris13 has quit [Quit: This is not a desk. It is not being flipped.] 17:03:03 -!- Nilsyn has quit [Ping timeout: 250 seconds] 17:07:13 -!- LexAckson has quit [Quit: Leaving] 17:10:20 -!- UseBees2 has quit [Remote host closed the connection] 17:10:58 -!- SurpriseTRex has quit [Ping timeout: 245 seconds] 17:18:40 -!- Bloax has quit [Quit: Error: Bloax not found] 17:22:03 -!- HellTiger has quit [Quit: KVIrc 4.2.0 Equilibrium http://www.kvirc.net/] 17:22:09 penetrating large rocks make Linesprint ridiculous 17:29:55 -!- Xenobreeder has quit [Ping timeout: 250 seconds] 17:34:38 Linesprint is already ridiculous 17:34:59 * Lightli has died to an emperor scorpion after killing Lom Lobon 17:38:12 -!- nicolae- has joined ##crawl-dev 17:39:51 -!- Vidiny has quit [Quit: You want it to be one way. But it's the other way.] 17:41:01 fr curvesprint 17:41:44 roomsprint. just a very tiny room and you fight one monster at a time 17:42:22 sprintsprint 17:42:41 there's a monster, a rune, an orb guardian, and the orb 17:43:18 what is the monster 17:43:18 i like it 17:43:26 runelock or not? 17:43:28 the player is the monster. it's the twist. 17:43:33 gasp 17:43:33 hahaha 17:43:34 you can emulate linesprint on any layout that has a straight corridor 17:44:24 nicolae-: the players are revolting, right? 17:44:34 snrk 17:44:47 yes 17:45:06 SamB: yes, of course. you have to get the rune before entering the zot room 17:45:07 (was this joke too obscure?) 17:45:42 -!- VolteccerJack has quit [Quit: Page closed] 17:45:51 (nah) 17:46:01 (but you're not the first to make it, i'm afraid) 17:46:31 orbsprint. don't even bother with the runes. 17:46:36 a bug in Linesprint: you can enter Zot without picking up three runes 17:47:03 -!- elliptic has quit [Quit: Leaving] 17:47:11 you, a pile of equipment, orb guardian, orb. 17:47:15 -!- Xenobreeder_ has quit [Ping timeout: 250 seconds] 17:47:32 nicolae-: ie, if you try to pick it up, you die? 17:47:58 ah, is that what happens in sprint if you haven't got the runes yet 17:48:10 -!- elliptic has joined ##crawl-dev 17:48:36 nicolae-: I mean, trying to wear gear when standing next to an orb guardian tends to be fatal 17:48:45 except for weapons and jewelry, that is 17:48:48 ah, true 17:49:01 better have a tiny closet with a runed door to start out in, and THEN you can fight the orb guardian 17:49:48 * kilobyte assumed I can remove a large shield next to some shit monster at full hp today. 17:50:16 turns out you receive a confirmation "continue disrobing?" only on the first turn, no matter how badly you get damaged later 17:50:47 "continue dying?" 17:53:22 FR: let's make linesprint no_rotate. It sucks in a vertical layout: there's far more screen space horizontally. 17:56:18 !messages 17:56:19 (1/1) |amethyst said (7h 26m 26s ago): looks like you'll need to kill and restart crawl-inotify-dglwhere: the W menu isn't showing locations 17:57:16 no 17:59:01 !tell |amethyst can't find the process. 17:59:02 TZer0: OK, I'll let |amethyst know. 17:59:22 maybe then you just need to start it 17:59:35 Zannick: ok. 18:01:16 herp derp. 18:01:18 Fixed. 18:01:21 !tell |amethyst fixed. 18:01:22 TZer0: OK, I'll let |amethyst know. 18:01:28 -!- |amethyst has quit [Ping timeout: 240 seconds] 18:01:40 -!- Kalir has quit [Quit: CADENZA-CLASS CLOCKWORK KNIGHT--OPERATION TERMINATED] 18:02:23 about 256 colour support: looks like it will be doable after all 18:02:25 -!- |amethyst has joined ##crawl-dev 18:02:52 the main blockers are rxvt (88 colours, partially works) and linux console (16 colours only) 18:03:08 256 in console? 18:03:13 so we could make it look like brogue 18:03:16 optionally 18:03:23 and seconds ago gregkh applied my patch to properly ignore them to next 18:04:07 it's a matter of waiting for distributions to drop ancient kernels now :p 18:04:28 -!- Blazinghand has quit [Ping timeout: 240 seconds] 18:04:43 -!- flowsnake has quit [Ping timeout: 260 seconds] 18:05:36 nicolae-: using 256 colours for regular walls sucks, but having elemental colours not conflict with regular ones would be nice 18:05:52 cool 18:05:53 also, messages from previous turns could gradually fade to black 18:05:58 that would also be cool 18:06:22 -!- eeviac has joined ##crawl-dev 18:07:25 -!- flowsnake has joined ##crawl-dev 18:07:37 -!- Lightli has quit [Ping timeout: 250 seconds] 18:09:19 -!- ystael has quit [Ping timeout: 260 seconds] 18:13:14 256 colors ~~ <3 18:13:32 are you going to do up a splash screen in ascii art, onto 18:13:36 -!- dtsund has quit [Quit: dtsund] 18:13:41 -!- Daekdroom has quit [Ping timeout: 248 seconds] 18:19:03 -!- Soner has quit [Quit: Leaving] 18:20:08 -!- NekoRex has quit [Ping timeout: 245 seconds] 18:21:04 -!- Lightli has joined ##crawl-dev 18:21:51 -!- Zaba has quit [Ping timeout: 252 seconds] 18:23:30 -!- Zaba has joined ##crawl-dev 18:30:28 hrm, one problem: the hack I thought up can't be done with ncurses, at least without intercepting and postprocessing output 18:32:10 when trying to use a "slightly yellowish light green number 42(not a real colour)", I'd write: \e[32;1;38;5;42m 18:32:52 ie, set the colour to light green (32;1) then attempt setting it to exact colour requested 18:33:35 no way to do this with ncurses, apparently :( 18:34:30 I thought you said curses was dumb anyway 18:34:47 yeah but the devs keep it around because of ashenzari 18:35:07 nicolae-: not THOSE curses 18:35:30 i know but i find it hard to pass up a chance to make a really bad pun 18:35:36 SamB: what's dumb in curses is: 1. its interface (a throwback to '70s terminals), and 2. its reliance on the TERM variable 18:36:11 but rewritting everything would take quite some time, especially if you want this to be portable 18:36:26 I mean, output is easy, input is not 18:37:06 hmm, can input even ignore TERM really? 18:38:26 so, do we actually need much from curses? 18:40:15 on the output, nothing really (although curses optimize writes; crawl just writes everything naively and lets curses avoid rewrites) 18:42:16 ... do we want to get curses patched? 18:42:18 nicolae-: i would do that in a goddamn heartbeat 18:42:59 noice 18:43:10 actually, if we're playing locally or over ssh, the terminal is known. It's only DGL that needs to produce output understandable by all terminals. 18:43:36 so postprocessing would be easy 18:43:42 -!- ystael has quit [Ping timeout: 268 seconds] 18:44:06 can we know what color to fallback to in DGL? 18:44:16 ie, forcing 256 colours in curses, then fixing up its codes 18:44:49 pretty sure ncurses can do more colors, it just requires more work. 18:44:49 yes I got that 18:44:57 I had already imagined doing that 18:46:19 SamB: mapping 256 colours to 16 isn't hard, especially if there's nearly no use of backgrounds 18:46:47 -!- SomeoneAwful_ is now known as SomeoneAwful 18:46:47 I think crawl uses no backgrounds at all, just reverse. Not 100% sure here. 18:48:48 it does something for allied/neutral/unaware monsters, but that might just be foreground colors 18:49:20 uhm, it's actually real backgrounds 18:50:27 -!- ackack has joined ##crawl-dev 18:50:40 yeah, just checked. Spawn a sleeping orc wizard: magenta on blue. Spawn a sleeping iguana: black [should be blue] on blue 18:52:20 hrm, this makes conversion from 256-colour only to universal harder: it needs to track both fore- and background, instead of a simple mechanical replacement 18:52:20 but still no rocket surgery 18:52:58 -!- Gotham has quit [Read error: Connection reset by peer] 18:56:09 -!- dead_ has quit [Ping timeout: 250 seconds] 19:01:19 -!- Quashie has quit [Ping timeout: 246 seconds] 19:03:53 -!- ZChris13 has joined ##crawl-dev 19:07:01 -!- indspenceable has quit [Remote host closed the connection] 19:08:59 -!- magicpoints has quit [Ping timeout: 248 seconds] 19:10:15 -!- SurpriseTRex has quit [Ping timeout: 253 seconds] 19:10:38 kiloobyteyou might fix my ancient bug! 19:11:55 -!- ShadeTornado has quit [Quit: Leaving] 19:14:06 -!- Yermak has quit [Quit: Page closed] 19:17:12 -!- indspenceable has joined ##crawl-dev 19:17:24 -!- gammafunk has quit [Ping timeout: 252 seconds] 19:19:53 -!- Zifmia has quit [] 19:22:26 ontoclasm: uhm, what bug? 19:27:08 -!- _UseBees has quit [Ping timeout: 240 seconds] 19:27:51 -!- UseBees has quit [Ping timeout: 252 seconds] 19:50:01 -!- __UseBees has quit [Ping timeout: 245 seconds] 19:54:04 -!- kingbuddyboy has quit [Quit: Page closed] 19:54:06 -!- Pacra has joined ##crawl-dev 19:59:53 -!- MIC132 has quit [Quit: AndroIRC - Android IRC Client ( http://www.androirc.com )] 20:00:07 -!- Naruni has quit [Quit: Leaving] 20:02:51 -!- pelotr0n has quit [Ping timeout: 248 seconds] 20:05:07 -!- dtsund has joined ##crawl-dev 20:05:52 -!- Zermako has quit [] 20:12:35 -!- indspenceable has quit [Remote host closed the connection] 20:18:34 -!- Ur-Quan- has quit [Read error: Connection reset by peer] 20:19:36 -!- mikee_ has joined ##crawl-dev 20:20:17 -!- ogaz has joined ##crawl-dev 20:25:31 -!- Daekdroom has quit [Read error: Connection reset by peer] 20:26:01 -!- WalkerBoh has quit [Ping timeout: 246 seconds] 20:30:21 -!- Leafsnail has quit [Quit: I cna ytpe 300 wrods pre mniuet!!!] 20:32:38 -!- scummos^ has quit [Ping timeout: 264 seconds] 20:37:59 -!- Nilsyn has quit [Ping timeout: 250 seconds] 20:42:32 -!- jeanjacques_ has joined ##crawl-dev 20:43:46 -!- ystael has quit [Ping timeout: 245 seconds] 20:44:58 -!- ackack has quit [Quit: Leaving] 20:45:28 -!- jeanjacques has quit [Ping timeout: 264 seconds] 20:45:28 -!- jeanjacques_ is now known as jeanjacques 20:48:38 -!- ussdefiant has joined ##crawl-dev 20:48:58 -!- bh has joined ##crawl-dev 20:49:23 hai 20:49:23 bh: You have 3 messages. Use !messages to read them. 20:49:25 oy 20:49:27 !messages 20:49:28 (1/3) kilobyte said (9h 18m 58s ago): current abyss skeletons suck, but making them work like they once did might be better than dropping them. We lost even those iconic grey snake skeletons. 20:49:37 !messages 20:49:37 (1/2) kilobyte said (9h 17m 14s ago): what's the point of distributions like -1, 5, 2000, DOWN? -1, 5, 2000, UP makes sense: it goes from 3/7 at A:1 to 7/7 at A:5, but DOWN is a roundabout way for scaling everything down. 20:49:43 !messages 20:49:43 (1/1) kilobyte said (9h 15m 23s ago): I'd want to allow all monsters to spawn in the Abyss for the stress test bot (but not necessarily the real game). Should I coordinate with you, or just hack something, possibly with some debug-only dlua call? 20:49:54 !seen kilobyte 20:49:55 I last saw kilobyte at Fri Sep 27 01:36:36 2013 UTC (13m 18s ago) saying '0.13 has newcrypt and Gr, no forest, Dj nor LO' on ##crawl. 20:50:13 kilobyte: I don't think I understand UP and DOWN 20:50:43 I want to express "give me more of these deeper" and "give me less of these deeper" 20:51:52 bh, see random-pick.h 20:51:56 (when did that get moved?) 20:52:20 Grunt: I did and I thought I understood it 20:52:55 What you just mentioned are UP and DOWN respectively. 20:53:27 which file is this again? 20:53:53 If that's what your understanding is, the issue is that {-1, 5, 2000, DOWN} can be simplified because the top depth is out of range. 20:54:12 ...to, say, {1, 5, 1333, DOWN}. 20:54:13 hmm, maybe GDB can tell me where those come from 20:54:23 Grunt: ah 20:55:34 hmm, it's not an enum member :-( 20:55:47 enum distrib_type 20:56:09 -!- ainsophyao has joined ##crawl-dev 20:56:44 oh, I guess I'm just using GDB wrong then 20:57:06 -!- Zifmia has quit [Ping timeout: 264 seconds] 20:57:34 gdb may not be able to show enums as enums 20:57:56 was trying to get it to tell me where that came from 21:00:28 -!- NekoRex has quit [Quit: "All the vain and ignorant will look up and shout 'Save us!', and I'll look down and whisper... 'Nyo.'"] 21:00:49 -!- ainsophyao has quit [Ping timeout: 256 seconds] 21:01:01 hmm, what does rarity mean here 21:06:52 -!- eeviac has quit [Quit: ChatZilla 0.9.90.1 [Firefox 23.0.1/20130814063812]] 21:10:29 -!- versayr has quit [Ping timeout: 250 seconds] 21:15:50 -!- ussdefiant has quit [Ping timeout: 240 seconds] 21:18:22 kilobyte: https://crawl.develz.org/mantis/view.php?id=6012 21:18:46 (reverse branded bright things display incorrectly in putty) 21:19:15 oh my what is that font 21:19:22 -!- Somefellow has joined ##crawl-dev 21:19:22 it's a dumb thing putty does and thus Not Our Problem, but if it gets fixed on accident 21:19:29 MarvinPA: monofur 21:19:40 goddamn beautiful 21:19:49 :( 21:19:58 -!- Pulseman has quit [Quit: Try HydraIRC -> http://www.hydrairc.com <-] 21:20:07 or was that "oh my" an "oh god that's horrific" 21:20:13 yes :P 21:20:16 hah 21:20:45 i can't play crawl with anything else now, they're all so ugly 21:20:50 de gustibus et de coloribus ... 21:21:38 -!- indspenceable has joined ##crawl-dev 21:22:17 the two problems i have with it are that the * isn't centered and that it doesn't have club signs for trees 21:22:27 so my trees are capital deltas instead 21:25:47 -!- eeviac has joined ##crawl-dev 21:26:41 i kind of like it only because i like seeing console fonts that don't look like something from the 90s or earlier 21:28:04 I don't know what you kids have against the 90s 21:28:29 there are some things about the 90s i like 21:28:37 being reminded of ms-dos terminals is not one of them 21:28:44 -!- ussdefiant has joined ##crawl-dev 21:35:01 -!- Tarquinn has joined ##crawl-dev 21:36:51 -!- lobf has quit [Quit: lobf] 21:36:57 -!- Hailley has quit [Quit: Petra is closed!] 21:44:28 -!- pelotron_ has quit [Ping timeout: 240 seconds] 21:47:56 -!- crate has quit [Quit: Leaving] 21:51:38 -!- _dd has quit [Remote host closed the connection] 21:54:35 -!- nicolae- has left ##crawl-dev 21:56:36 -!- Fhqwhgads_ has quit [Remote host closed the connection] 22:02:31 -!- dtsund has quit [Quit: dtsund] 22:03:32 -!- Hailley has quit [Client Quit] 22:11:02 -!- ystael has quit [Ping timeout: 264 seconds] 22:16:10 -!- indspenceable has quit [Remote host closed the connection] 22:16:17 -!- JaGGedTK has quit [Quit: KVIrc 4.2.0 Equilibrium http://www.kvirc.net/] 22:20:18 -!- indspenceable has joined ##crawl-dev 22:21:31 -!- geekosaur has quit [Excess Flood] 22:22:20 -!- geekosaur has joined ##crawl-dev 22:30:15 -!- MarvinPA has quit [Ping timeout: 260 seconds] 22:30:28 -!- dtsund has joined ##crawl-dev 22:32:24 -!- indspenceable has quit [Remote host closed the connection] 22:33:34 -!- MarvinPA has joined ##crawl-dev 22:34:43 -!- ystael has quit [Ping timeout: 245 seconds] 22:37:52 -!- magistern has quit [Quit: This computer has gone to sleep] 22:38:03 -!- Somefellow has quit [Read error: Connection reset by peer] 22:40:19 -!- Pisano has quit [Quit: Leaving.] 22:42:55 -!- Valarioth has quit [Quit: Page closed] 22:44:50 -!- indspenceable has joined ##crawl-dev 22:45:20 -!- indspenceable has quit [Remote host closed the connection] 22:49:58 -!- mizu_no_oto has quit [Quit: Computer has gone to sleep.] 22:53:07 -!- bmfx has quit [Ping timeout: 260 seconds] 22:58:02 -!- mikee_ has quit [Read error: Connection reset by peer] 22:59:07 -!- indspenceable has joined ##crawl-dev 22:59:25 -!- indspenceable has quit [Remote host closed the connection] 23:03:10 -!- Kalir has quit [Changing host] 23:04:54 -!- WalkerBoh has quit [Remote host closed the connection] 23:06:15 -!- Xenobreeder has quit [Quit: Page closed] 23:13:10 -!- lobf has quit [Quit: lobf] 23:13:25 -!- indspenceable has joined ##crawl-dev 23:19:34 -!- indspenceable has quit [Remote host closed the connection] 23:25:26 -!- dtsund has quit [Quit: dtsund] 23:35:39 -!- ogaz has quit [Ping timeout: 250 seconds] 23:38:37 -!- indspenceable has joined ##crawl-dev 23:44:34 -!- dtsund has joined ##crawl-dev 23:46:06 -!- eeviac has quit [Quit: ChatZilla 0.9.90.1 [Firefox 23.0.1/20130814063812]] 23:49:31 -!- ParallaxScroll has quit [Ping timeout: 250 seconds] 23:52:26 -!- indspenceable has quit [Remote host closed the connection] 23:52:57 -!- indspenceable has joined ##crawl-dev 23:56:44 -!- MarvinPA_ has joined ##crawl-dev 23:59:26 -!- MarvinPA has quit [Ping timeout: 268 seconds] 23:59:26 -!- MarvinPA_ is now known as MarvinPA 23:59:29 -!- t4nk992 has quit [Ping timeout: 250 seconds]