00:00:12 <|amethyst> it only throws the exception if (!crawl_state.need_save) 00:00:37 <|amethyst> if crawl_state.need_save is true, it dies 00:00:54 it only throws it or it only catches it? 00:01:08 <|amethyst> see _short_read in tags.cc 00:01:22 <|amethyst> if (!crawl_state.need_save) 00:01:22 <|amethyst> throw short_read_exception(); 00:01:26 <|amethyst> die_noline("short read while reading save"); 00:01:39 yeah, I see it now. 00:01:40 <|amethyst> was that the error you got? 00:01:44 yep 00:03:42 <|amethyst> and need_save really means "there's a game" 00:03:50 good name 00:04:01 <|amethyst> well, if you are playing, you need to save 00:04:35 <|amethyst> and if you're dead or haven't started yet, you don't :) 00:04:55 <|amethyst> so there could be another flag for "loading ghosts" 00:05:37 it would be quite a lot simpler just to check the file size in load_ghost, if there was any way to get that information 00:05:48 where's the interface for reader? you mentioned that the file handle is a private field 00:06:06 <|amethyst> tags.h 00:06:31 <|amethyst> reader can read from things other than just a file 00:07:19 <|amethyst> hmm 00:07:35 <|amethyst> I think valid() would be false if you were reading from memory 00:07:47 <|amethyst> because _read_offset < _pbuf->size() is false when they're both zero 00:07:53 <|amethyst> but with a file, it check feof 00:07:55 Unstable branch on crawl.s-z.org updated to: 0.15-a0-890-g6183af8 (34) 00:08:00 <|amethyst> which is only true after you try to read 00:08:09 can we read 0 bytes 00:08:23 <|amethyst> no, but I wonder if there's a good place to read one byte and ungetc 00:09:12 not sure I understand 00:09:24 we can't read any bytes from a 0-byte file, surely? 00:09:54 <|amethyst> if you read past the end of file (including reading from a zero-byte file) you get a EOF 00:10:06 <|amethyst> the problem is, if it wasn't zero-byte, you just read something 00:10:19 <|amethyst> but ungetc can put back one read character and allow it to be read again 00:11:20 so... before or in checking ghost file validity, read one byte, check if it's EOF, then unget if not? 00:11:52 -!- Bamboomancer has quit [Quit: Page closed] 00:12:25 <|amethyst> PleasingFungus: even in reader::valid 00:12:40 <|amethyst> only in the _file case 00:12:56 <|amethyst> since the _pbuf case already returns false on zero-byte buffers 00:13:13 sure. that seems to be the intended behavior 00:13:35 Are artifacts suppose to be able to get one letter names 00:13:53 not unless it's in the list of names, I'd think. don't short names get ploggified? 00:14:04 I think I saw a "Z" a while back 00:14:40 <|amethyst> yes 00:14:47 <|amethyst> that is one of the joke weapon names 00:14:55 it's for zorro 00:15:03 <|amethyst> Z X and Q are possible 00:15:06 ?/bung 00:15:07 Matching entries (1): dieselteamideas[33]: team randart weapon: LEVITICUS BUNG X 00:15:19 <|amethyst> also "With Two Names" 00:15:26 <|amethyst> and "Thing" 00:15:37 -!- Kalir has quit [Changing host] 00:15:43 giant's toothpick 00:15:46 <|amethyst> !source dat/database/rand_wpn.txt:1472 00:15:46 http://s-z.org/neil/git/?p=crawl.git;a=blob;f=crawl-ref/source/dat/database/rand_wpn.txt;hb=HEAD#l1472 00:16:14 wait wait wait wait wait. |amethyst. if we're doing this change in reader::valid.... 00:16:21 <|amethyst> btw, "Skybugg" is one of the possible outputs of the random name generator 00:16:39 there's also "Mud Pie of Death" 00:17:09 |amethyst: then we can just do file_size(_file) 00:17:14 !lg * kaux~~bug s=kaux 00:17:14 One game for * (kaux~~bug): the +9,+4 mace of the Pill Bug {elec, rF- Int+1} 00:17:18 !!!! 00:17:40 surprised that starlight is a joke name 00:17:42 !lg * kaux__bugg s=kaux 00:17:42 No keyword 'kaux__bugg' 00:17:47 !lg * kaux~~bugg s=kaux 00:17:48 No games for * (kaux~~bugg). 00:17:50 noo 00:18:31 Unstable branch on crawl.develz.org updated to: 0.15-a0-890-g6183af8 (34) 00:18:58 <|amethyst> PleasingFungus: I am a little wary of that, because of file-like things like pipes 00:19:16 wait, are pipes _files 00:19:39 :( 00:20:24 -!- mizu_no_oto has quit [Quit: Computer has gone to sleep.] 00:20:29 <|amethyst> I have no idea whether other things would break anyway if you tried 00:20:42 <|amethyst> but, yes, you can open a pipe on a FILE* 00:20:48 <|amethyst> also stdin/stdout are FILE* 00:20:56 -!- omnirizon has quit [Ping timeout: 258 seconds] 00:20:58 I wonder what file_size() would do to them 00:22:33 looks like it probably returns 0 size, which is not ideal 00:22:38 Experimental (weightless) branch on crawl.beRotato.org updated to: 0.15-a0-893-gd45f565 00:22:39 <|amethyst> I think usually zero but I'm not sure if that's required 00:22:49 just the kind of unpredictable behavior I love 00:24:03 Webtiles server restarted. 00:25:15 -!- Markaz has quit [Quit: Page closed] 00:26:31 <|amethyst> PleasingFungus: actually, forget all this 00:26:35 <|amethyst> PleasingFungus: what's even easier 00:27:02 oh. I actually just implemented a solution in reader::valid() 00:27:03 <|amethyst> PleasingFungus: give reader a boolean flag that says "throw short_read_exception instead of dying, even if a game is in progress" 00:27:55 that seems kind of clunky 00:28:17 mainly because it's trying to patch up a mechanism that operates on global state 00:28:50 !learn edit weightless[1] s/cszo/cszo & cbro/ 00:28:50 weightless[1/2]: An experimental branch on cszo & cbro where all items aside from large rocks cause no burden for the player; likely will be modified so that you can carry a fixed number of rocks based on str, with all burden states being removed. 00:29:03 <|amethyst> It's more a way of saying "the thing I'm trying to read isn't mission-critical" 00:29:23 <|amethyst> because right now reader assumes that, if a game is in progress, you must be reading the save and that is mission-critical 00:29:40 sure. it's not a wrong solution 00:30:04 but I think it's also right that valid() should give the right answer when looking at a 0-byte file 00:30:09 <|amethyst> yeah 00:30:13 -!- demiskeleton has quit [Quit: Leaving] 00:30:19 <|amethyst> it will require testing though 00:30:40 yeah :( 00:30:57 <|amethyst> this also affects zero-byte des cache files 00:31:03 <|amethyst> it might be a good thing actually 00:31:11 three rights make a left 00:31:17 <|amethyst> but 00:31:26 <|amethyst> you should see what happens both with and without your patch 00:31:41 <|amethyst> when you truncate a file in the des cache to zero bytes 00:32:21 ok. where's the des cache? 00:32:52 <|amethyst> saves/des/ 00:32:56 <|amethyst> one of the .dsc files 00:33:49 You can also just delete the entire /des/ folder. 00:34:11 <|amethyst> reaverb: we care what happens when it finds a zero-byte file 00:34:11 reaverb: no 00:34:14 yeah 00:34:20 ok. where should I expect it to crash 00:34:23 <|amethyst> reaverb: since that is the behaviour PleasingFungus is changing 00:34:25 PleasingFungus: Oh, oops, sorry. 00:34:27 actually, why don't I test without the patch 00:34:32 first 00:34:40 |amethyst: Yes, ok, that makes sense, wasn't thinking. 00:35:15 -!- Voker57 has quit [Read error: Connection reset by peer] 00:35:31 <|amethyst> You should try truncating a .sec, starting a new game, placing one of the maps that should be in that file, saving, and checking if the file is still zero bytes 00:35:40 <|amethyst> s/\.sec/.dsc/ 00:35:58 wait, .sec or .dsc? 00:36:01 oh 00:36:02 <|amethyst> .dsc 00:36:04 ok 00:36:12 <|amethyst> see the corresponding .des file for a list of vaults 00:36:18 <|amethyst> and &L to place 00:37:07 huh 00:37:31 did that. without patch, the relevant file seems to be still 0 bytes - is that expected? 00:37:39 I'm not sure what behavior I'm looking for here 00:37:44 <|amethyst> was it able to place the map? 00:37:48 yes 00:37:55 <|amethyst> which file was it? 00:38:04 entry_large.dsc 00:38:14 <|amethyst> you're in trunk, right? 00:38:22 yes, but not 100% up to date 00:38:25 give me a sec to rebase 00:38:26 weird. I added 'weightless', did a restart on cbro webtiles, but I can't see wheals's game. rotatell is announcing it, but the watchlink doesn't work when I click it 00:38:37 ^whereis wheals 00:38:37 wheals the Basher (L9 OgAs), a worshipper of Fedhas, is currently on D:7 after 8692 turns. 00:38:41 <|amethyst> PleasingFungus: not pre-0.14 though 00:38:48 no, not quite that old 00:38:49 <|amethyst> PleasingFungus: entry_large doesn't exist anymore 00:38:50 :) 00:38:58 o 00:39:00 <|amethyst> PleasingFungus: it's arrival_large now 00:39:01 ^players 00:39:01 rodrick (L16 @ Spider:5, T:38811), shobalk (L16 @ Shoals:5, T:47039), porpoise (L11 @ D:10, T:9441), tizzy (L11 @ D:10, T:11722), wheals (L9 @ D:7, T:8938), superterranean (L4 @ D (Sprint), T:368) 00:39:12 that would explain why removing the file and replacing it with a 0-byte file didn't do anything 00:39:16 'oops' 00:39:30 both wheals and superterranean aren't showing up in the lobby 00:39:59 <|amethyst> then something like &Lroderic_lyre 00:40:08 ^players 00:40:08 rodrick (L16 @ Spider:5, T:38982), shobalk (L16 @ Shoals:5, T:47074), porpoise (L11 @ D:10, T:9586), tizzy (L11 @ Orc:2, T:12160), wheals (L9 @ D:8, T:9075) 00:40:20 <|amethyst> johnstein: what are they playing? 00:40:31 not sure. how can I tell? 00:40:34 <|amethyst> johnstein: do you need to restart the inotify daemon after adding a new game type? 00:40:37 wheals are you playing console? 00:40:39 I just did 00:40:40 yep 00:40:49 <|amethyst> oh 00:40:56 |amethyst: that is, I just restarted inotify 00:41:08 oh 00:41:09 <|amethyst> did you restart the webserver? 00:41:21 restarting webtiles won't affect console games 00:41:35 yea. to refresh the cbro webtiles page 00:41:36 <|amethyst> yeah, and webtiles doesn't see games that were already running when it started 00:41:44 ok. cool. so this is a known issue 00:42:00 <|amethyst> yeah 00:42:06 <|amethyst> not sure if webtiles-changes addresses that 00:42:17 I could have tried testing it but I hit a brick wall 00:42:26 well. felt like brick to me 00:42:53 ok, placing the vault (without even saving) regenerates the relevant cache. 00:42:54 -!- markas_ has joined ##crawl-dev 00:42:56 checking with patch. 00:43:33 -!- Eonwe1 has quit [Ping timeout: 252 seconds] 00:45:40 with patch... it complains about "short read while reading save" when I attempt to start a new game (with the 0-byte .dsc). which I assume is what you were afraid of? 00:45:57 <|amethyst> PleasingFungus: what's your code for valid()? 00:46:24 -!- Red_Bucket has quit [Quit: Page closed] 00:46:45 http://sprunge.us/eRBN 00:48:18 -!- BlackrayJack has quit [Ping timeout: 240 seconds] 00:48:25 to preserve the single-line semantics, I guess you could pull out the fgetc/ungetc into a small separate function 00:48:51 if (_file && !feof(_file) && !_at_eof(_file)) || ... 00:49:31 I hope this is the appropoate room, but can anyone point me to a complete change log? I'm trying to find recent tile changes and item removal in trunk. Some seem documented while others aren't. 00:49:41 -!- bmfx has quit [Ping timeout: 252 seconds] 00:49:47 markas_: https://gitorious.org/crawl/crawl/commits/master ? 00:49:58 <|amethyst> ??changelog[3] 00:49:58 changelog[3/3]: Current trunk: http://s-z.org/neil/git/?p=crawl.git;a=log CDO's trunk: http://crawl.develz.org/trunk/changes.txt 00:50:03 or that 00:50:09 <|amethyst> it's... exhaustive 00:50:17 oo, that's a nice ui 00:50:17 <|amethyst> %git 00:50:18 07elliptic02 * 0.15-a0-890-g6183af8: Fix magic dart having a tiny chance of being blocked by a shield. 10(66 minutes ago, 1 file, 2+ 1-) 13http://s-z.org/neil/git/?p=crawl.git;a=commitdiff;h=6183af897d75 00:50:35 <|amethyst> markas_: 890 entries since 0.14 release 00:51:08 <|amethyst> PleasingFungus: maybe try it the other way then 00:51:30 <|amethyst> PleasingFungus: with the flag (only set by the ghost code) that says short read shouldn't be fatal 00:51:41 sure 00:52:39 <|amethyst> might be a little kludgy, but it also has fewer repercussions to other code 00:53:32 <|amethyst> it should still throw the exception, since the ghost-loading code catches that 00:53:36 yes 00:53:46 <|amethyst> it seems like the ghost-loading code was expecting it to work that way anyway 00:53:54 Currently looking through the links, PleasingFungus and amethyst. Cursory searches aren't showing it, through my search-fu isn't the greatest. 00:54:05 yeah, the valid() check doesn't really do anything the way the ghost code is/was using it 00:54:11 <|amethyst> markas_: what are you looking for exactly? 00:54:13 markas_: what in particular ar eyou looking for? 00:54:15 haha 00:54:26 |amethyst: what would be the most idiomatic way to add a flag? there are a lot of constructors here... 00:55:12 I guess just add a public field, then add it into the list of things initialized by both constructors? 00:55:54 <|amethyst> three constructors (one is inline in the header) 00:57:36 looks like four 00:57:42 <|amethyst> oh, you're right 00:57:44 <|amethyst> two inline 00:58:15 -!- ontoclasm has quit [Quit: Leaving.] 00:58:23 <|amethyst> I guess an extra optional constructor parameter would be bad since there's already one of those 00:58:53 <|amethyst> and int and bool are easy to accidentally substitute for one another 00:59:52 <|amethyst> so, yeah, I guess a public bool member of reader; or a private with a setter 01:00:17 just gonna make it public 01:00:20 <|amethyst> arguable fail_if_not_eof should respect the flag too, but that can come later 01:00:26 <|amethyst> s/ble/bly/ 01:00:44 <|amethyst> also, these reader changes should definitely be a separate commit from the ghost stuff :) 01:00:48 yes ofc 01:00:58 didn't you notice the one I sent you? 01:01:00 :) 01:01:07 (the one that didn't work, but still!) 01:01:09 <|amethyst> oh yeah 01:01:16 haha 01:01:18 <|amethyst> forgot that it had a header 01:01:32 powerful git strategies 01:01:33 <|amethyst> I was thinking git diff of the working dir 01:03:12 help 01:03:14 ./tags.h:106:28: warning: field '_minorVersion' will be initialized after field 'safe_read' [-Wreorder] 01:03:16 _read_offset(0), _minorVersion(minorVersion), safe_read(false) {} 01:03:36 <|amethyst> PleasingFungus: your initializers should be in the same order as your data members 01:03:52 ah - because it's public... I see 01:04:10 <|amethyst> PleasingFungus: you could either put it first in the initializers 01:04:21 <|amethyst> or add a second public: section after _minorVersion 01:04:28 just gonna use a setter instead 01:04:31 as you suggested earlier 01:04:34 <|amethyst> haha 01:04:39 and stick it into the private section 01:04:39 :) 01:05:07 PleasingFungus / amethyst: I'm trying to find the conversation behind recent changes, if they exist. Specifically, I'm curious as to why rings of sustenence/hunger were replaced, why giant goldfish were removed, summon elemental, etc. 01:05:14 <|amethyst> ¡learn add oo_reasons 01:05:28 markas_: there are explanations on the relevant commits, generally 01:05:32 %git :/goldfish 01:05:33 07wheals02 * 0.15-a0-230-g89cd172: Remove giant goldfish. 10(3 weeks ago, 19 files, 26+ 68-) 13http://s-z.org/neil/git/?p=crawl.git;a=commitdiff;h=89cd17299013 01:05:50 <|amethyst> markas_: search for goldfish then click the "commit" link 01:05:50 markas_: click on that link to see the explanation for goldfish removal, for example 01:06:06 I'm not really involved in the development process, but the assumed discussion behind this game is of interest. 01:06:10 sure 01:06:22 <|amethyst> %git :/hunger 01:06:23 07File26b02 {reaverb} * 0.15-a0-882-g24d5453: New species: Plutonians 10(29 hours ago, 14 files, 247+ 40-) 13http://s-z.org/neil/git/?p=crawl.git;a=commitdiff;h=24d5453f8f84 01:06:31 wait, what 01:06:34 Heh, wow. 01:06:40 PleasingFungus: branch. 01:06:40 <|amethyst> %git :/hunger/sust 01:06:41 07ChrisOelmueller02 {wheals} * 0.15-a0-323-gf3c7235: Replace rings of hunger/sustenance with loudness/stealth in-place 10(3 weeks ago, 12 files, 62+ 51-) 13http://s-z.org/neil/git/?p=crawl.git;a=commitdiff;h=f3c7235ddb14 01:06:54 <|amethyst> that one doesn't provide any reasoning 01:06:55 reaverb: I was wondering! 01:07:11 PleasingFungus: Yes, I'm not about to ninja in a new species. 01:07:27 I thought there was about a 90% chance you wouldn't do that 01:07:28 maybe 80% 01:07:53 -!- Akitten_Homura has quit [Quit: Connection reset by pier.] 01:07:55 <|amethyst> markas_: the main reason for hunger/sust removal is that they didn't do a lot for most races 01:09:19 <|amethyst> well 01:10:03 <|amethyst> I don't know if that's ChrisOelmueller's and wheals' main reason, but it would be mine 01:11:03 reaverb: question about plutonians. "can use !curing and !heal wounds to cure contaim" does that mean they still mutate at high contam like everyone else? 01:11:15 johnstein: Oh sorr, no. 01:11:24 -!- mizu_no_oto has quit [Quit: Computer has gone to sleep.] 01:11:26 I've tried looking, but what happened to Djinn? 01:11:33 I should have mention in the commit message they're special cased to not do that. 01:11:42 reaverb: I was wondering why you'd want to even cure contam if it gives you high mp/hp regen 01:11:45 markas_: Removed, check the changelog changelog for big changes. 01:11:52 |amethyst: _short_read() is static, which means I can't access reader properties in it 01:11:55 %git :/djinn 01:11:56 07wheals02 * 0.15-a0-127-g762d21a: Remove some more djinn code. 10(5 weeks ago, 9 files, 9+ 156-) 13http://s-z.org/neil/git/?p=crawl.git;a=commitdiff;h=762d21af96ae 01:12:02 hm 01:12:35 <|amethyst> markas_: in large part, their implementor and main supporter left the devteam 01:12:40 %git 474977d 01:12:44 07wheals02 * 0.14-a0-2810-g474977d: Remove djinn. 10(3 months ago, 40 files, 355+ 110-) 13http://s-z.org/neil/git/?p=crawl.git;a=commitdiff;h=474977d740c0 01:12:50 %git ff5eb93 01:12:50 07wheals02 * 0.14-a0-3164-gff5eb93: Remove djinn. 10(10 weeks ago, 1 file, 1+ 14-) 13http://s-z.org/neil/git/?p=crawl.git;a=commitdiff;h=ff5eb931cb49 01:12:52 johnstein: It may indeed be the case you never want to cure contam, that might be a problem. 01:13:22 hm. none of those had rationale. must have been because there was a lot of discussion elsewhere 01:13:22 <|amethyst> markas_: lots of the devteam disliked them because they were perceived to be both too complicated (too many different mechanics going on at the same time) and too imbalanced 01:13:41 johnstein: the "demotivator" is you get rot if you explode, it probably isn't enough right now. 01:13:42 reaverb: that's what I was wondering :) 01:13:53 johnstein: Thinking of setting up an experimental? 01:14:06 <|amethyst> markas_: which maybe could have been fixed, but when kilobyte left no one felt like adopting them 01:14:16 oh, yea. maybe. 01:14:30 reaverb: I'm sorry, but where exactly is the "big changes" section? 01:14:32 <|amethyst> markas_: there was discussion about it here, anyway, but the ##crawl-dev archives are kind of big and slow to search 01:14:58 <|amethyst> ??changelog 01:14:58 changelog[1/3]: http://s-z.org/neil/git/?p=crawl.git;a=blob;f=crawl-ref/docs/changelog.txt - often incomplete and/or out of date, see {changelog[3]} for an exhaustive list of changes. 01:15:07 -!- Kenran has quit [Client Quit] 01:15:11 amethyst: Thanks for the history. There's a suprising about of discussion behind this game. It's pretty interesting. 01:15:23 ??logs 01:15:23 logs ~ log ~ morgue[1/1]: Use the !log command to get the morgue for your last splat on any server. (It will be autodetected.) 01:15:24 <|amethyst> the changelog.txt doesn't give any reasons 01:15:29 reaverb: are plutonians immune to mutation period? or just contam mutation? 01:15:30 <|amethyst> commits don't always 01:15:38 -!- raskol has quit [Ping timeout: 240 seconds] 01:15:40 johnstein: Just contam. 01:15:45 Markas_: http://s-z.org/crawl-dev/ 01:15:58 That's the logs for this channel going back for a few years. 01:16:11 <|amethyst> except for the times cheibriados goes down :) 01:16:20 pfft, that never happens. 01:16:24 Oh yes, that's a problem sometimes. 01:16:26 !seen Cheibriados 01:16:26 I last saw Cheibriados at Tue Nov 26 19:21:35 2013 UTC (24w 4d 10h 54m 51s ago) joining the channel. 01:16:32 <|amethyst> I guess there were a few of those the past few days that I could fill in from my personal log 01:16:50 that probably wouldn't have much djinn discussion, though 01:17:09 Was that discussed in the mailing list? 01:17:41 <|amethyst> maybe a little 01:19:06 Yes, a little, basically people before 0.14 saying "this is broken". 01:19:44 20:40:33 djinnfolk, djinnpires, halfdjinngs 01:19:47 that was a good convo 01:21:53 reaverb: I'm reading the tavern thread. I guess the !hw !curing are to help mitigate the contam increase due to traveling and not killing 01:22:11 not sure if that would work well or not 01:22:25 johnstein: I'm not sure about anything about hte species. 01:22:29 -!- ystael has quit [Ping timeout: 264 seconds] 01:22:36 I like the idea 01:22:43 File200 seems to have a lot of ideas a activity though. 01:23:54 johnstein: Ideally the "likes high contam but it gets too much BOOM" idea would work, but if it does not making them gets perks for low contam instead of high would probably remove most of the problems. 01:24:24 haha 01:24:26 !bug 7504 01:24:27 https://crawl.develz.org/mantis/view.php?id=7504 01:27:00 Is that on good mantis? 01:28:19 -!- omnirizo1 has quit [Read error: Connection reset by peer] 01:30:46 not afaik 01:30:50 just found it while searching for djinn 01:30:54 funny bug though 01:31:31 23:31:14 Is there any particular reason Djinni don't have electricity resistance? A recent commit implies they're sufficiently airborn to take less shatter damage. Just balance? 01:32:22 |amethyst: here's a patch that seems to work http://sprunge.us/Abbi . kind of ugly but so it goes 01:32:44 idk maybe that should be a tell. w/e. if need be I can resend it later 01:32:47 -!- PleasingFungus has quit [Quit: ChatZilla 0.9.90.1 [Firefox 32.0a1/20140517030204]] 01:36:14 -!- lobf has joined ##crawl-dev 01:36:33 <|amethyst> !tell PleasingFungus would you mind putting those patches on mantis in case I lose the URL? 01:36:34 |amethyst: OK, I'll let pleasingfungus know. 01:36:46 -!- markas_ has quit [Quit: Page closed] 01:36:57 |amethyst: you'd still have it in your personal logs :D 01:37:23 -!- lobf has quit [Client Quit] 01:37:26 <|amethyst> yeah, but /lastlog sprunge can be a lot to search through :) 01:37:33 <|amethyst> !tell |amethyst 01:37:33 I don't grok. Syntax is !tell PERSON MESSAGE. 01:37:40 <|amethyst> !tell |amethyst 01:37:40 I don't grok. Syntax is !tell PERSON MESSAGE. 01:37:44 <|amethyst> err 01:38:18 <|amethyst> !tell |amethyst http://sprunge.us/EbTL http://sprunge.us/Abbi ( http://sprunge.us/eRBN doesn't seem to work ) 01:38:19 |amethyst: OK, I'll let |amethyst know. 01:38:41 <|amethyst> at some point I need to go through my 10 or however many !messages 01:38:41 |amethyst: You have 10 messages. Use !messages to read them. 01:38:51 <|amethyst> yay I can count 01:39:43 |amethyst: Sorry, I still use a noob GUI IRC client that makes it easy to serach logs. 01:40:12 So I didn't realize the pain. 01:40:20 <|amethyst> well 01:40:31 <|amethyst> if I wanted to go to the log files and use grep it wouldn't be a pain 01:40:42 <|amethyst> grep Pleasing.*spruge 2014-05-* 01:40:59 <|amethyst> but then I have to switch to a different window (or tab in screen) :) 01:41:08 Hmm. 01:41:44 <|amethyst> but anyway 01:41:57 <|amethyst> I might not remember which were the good ones 01:42:08 <|amethyst> hence making the note to myself now 01:42:14 <|amethyst> and having stuff on mantis is better 01:42:18 -!- bonghitz has quit [Quit: Leaving...] 01:42:52 Experimental (plutonians) branch on crawl.beRotato.org updated to: 0.15-a0-882-g24d5453 01:42:53 reaverb: it looked interesting, so it seems worth an experimental for now. 01:43:11 maybe a bit raw for a typical experimental? at least the ones I've done 01:43:37 Webtiles server restarted. 01:43:40 johnstein: It's definetly raw, but I think we should be fine with more raw experimentals. 01:43:52 yea me too 01:44:02 I'm getting FAST at setting them up :P 01:44:14 johnstein: Maybe make a script? 01:44:17 yea 01:44:21 I keep meaning to 01:44:41 I think the bigger issue might be webpage vertical creep 01:44:43 heh 01:45:45 ??plutonians 01:45:46 I don't have a page labeled plutonians in my learndb. 01:45:53 johnstein: Well I would get rid of DCSS 0.11 or whatever before an experimental. 01:46:53 Hmm, another problem with plutonians is it's kind hard to describe all their stuff in a couple sentances. I'm sure they'll ease with development. 01:47:04 Mantis is fine for bug reports of experimental branches, correct? 01:47:38 -!- rast- has joined ##crawl-dev 01:47:55 reaverb: P) Plutonians (New Species Idea. Plays with Contam mechanic) 01:48:01 that's all I said on console. heh 01:48:21 the healing is REALLY fast for D1 01:48:26 !learn add plutonians New Species Idea. Plays with Contam mechanic 01:48:27 plutonians[1/1]: New Species Idea. Plays with Contam mechanic 01:48:47 johnstein: All that's tweakable. Hopefully power will encourage players to use them :D 01:48:49 -!- rast has quit [Ping timeout: 252 seconds] 01:48:58 (I'll fix the learndb entry later btw) 01:49:01 -!- rast- is now known as rast 01:50:02 reaverb: it's still not clear to me what the point of low contam is. sounds like you want to be just high enough contam to get good regen, but not so high you'll explode 01:50:22 seems like it needs a good low contam effect 01:50:34 like maybe at high contam, you are wildly inaccurate 01:50:34 johnstein: I can't say anything except I don't know either. 01:50:52 wild magic and like a -50% to accuracy 01:51:13 But the opprtunity cost always exists, you can get more contaim if you start low. 01:51:20 and at low contam, maybe you get a sort of aug effect 01:51:21 (they do have glow hunger) 01:51:59 johnstein: I'll post those ideas in the Tavern thread if you want, or you can do it under your account. 01:52:30 reaverb: I'll probably sleep on it a bit 01:52:48 johnstein: Sure, that's for setting up the experimental. 01:52:53 I should probably sleep too. 01:53:48 reaverb: someone else in the thread already pointed out that an ideal contam level exists, therefore optimal play would be fiddling with things to get that level. which seems fiddly 01:53:58 I'm trying to come up with something counter to that 01:54:11 johnstein: Well Vp have that problem too with blood level. 01:54:22 Enough varaince makes that not a problem. 01:54:31 Err, that was phrased poorly. 01:54:59 good god 9 ID scrolls on D1 01:55:19 Hmm, wow. 01:55:28 reaverb: probably doesn't help that I've never played much Vp 01:55:36 -!- palacebeast has quit [Quit: Page closed] 01:55:37 or maybe it helps a lot! 01:55:51 johnstein: Vp are still fiddly, just not gamebreakiingly so. 01:55:58 -!- Nethris has quit [Quit: Leaving.] 01:56:43 johnstein: Hmm, could you open up your "A" menu again, I think I saw a bug. 01:56:50 (I'm the Anon" 01:56:55 aw I died 01:57:01 yes, hmm. 01:57:06 too late 01:57:29 what bug? 01:57:37 Mutation shouldn't be blue. 01:57:57 It's probably done weirdly, so it's not intrinsic. 01:58:14 Or wait, are intinrsic mutations blue? 01:58:21 yep 01:58:52 oops. 01:59:09 (I blame that !mutation earlier, threw me off) 01:59:49 johnstin: you have an ability, btw. 02:00:04 johnstein 02:00:10 overload 02:00:19 but not enough MP 02:00:21 :P 02:00:27 oh now I do 02:00:31 Oh, sorry, hmm. 02:00:56 nice explosion 02:01:05 very little dmg to me 02:01:18 johnstein: It boosts contam 02:01:31 I think the power scales up with XL, not sure. 02:01:43 wow another truckload of scrolls 02:01:51 wonder if that's part of his other code 02:01:59 Heh. 02:02:07 or else I'm just wasting all my good start games on testing ;p 02:02:10 (I looked through it and I don't think so) 02:04:19 heh 02:04:43 died. I was trying to abuse overload as much as I could 02:06:21 johnstein: Oh well, maybe buffing overload is something which should happen. 02:06:32 Also, it looks much more impressive in console. 02:07:45 -!- Rotatell has quit [Remote host closed the connection] 02:07:56 -!- Rotatell has joined ##crawl-dev 02:08:04 heh 02:08:35 overload seems really strong 02:08:53 the first 3-4 times I used it I only lost maybe 10% of my HP 02:09:02 and with the regen so high, I got it back really fast 02:09:20 but I think I got my contam too high and maybe that one hurts more 02:09:25 since I lost like 50-60% 02:10:22 [Weightless Experimental Branch] Centaur melee weapon weirdness by tedric 02:10:22 Demigod character feels "a strange surge of divine interest" upon putting on "faith by Sar 02:13:07 -!- rchandra has left ##crawl-dev 02:13:20 -!- reaverb has quit [Quit: Leaving.] 02:17:17 Experimental (new_nemelex) branch on crawl.beRotato.org updated to: 0.15-a0-765-g6cbc3c7 02:18:31 -!- omnirizon has quit [Ping timeout: 252 seconds] 02:22:14 -!- DrinkMachine has joined ##crawl-dev 02:22:14 -!- DrinkMachine has quit [Changing host] 02:22:14 -!- DrinkMachine has joined ##crawl-dev 02:24:25 Unstable branch on crawl.beRotato.org updated to: 0.15-a0-890-g6183af8 (34) 02:25:45 -!- JerseyFresh has quit [Quit: Leaving...] 02:26:48 -!- conted has quit [Ping timeout: 240 seconds] 02:27:44 -!- KurzedMetal has quit [Read error: Connection reset by peer] 02:33:41 -!- Kalir has quit [Quit: CADENZA-CLASS CLOCKWORK KNIGHT--OPERATION TERMINATED] 02:34:35 -!- omnirizo1 has quit [Ping timeout: 255 seconds] 02:36:15 -!- HellTiger has quit [Ping timeout: 258 seconds] 02:37:01 -!- HellTiger__ has quit [Ping timeout: 258 seconds] 02:42:23 -!- omnirizon has quit [Ping timeout: 258 seconds] 02:44:22 -!- omnirizo1 has quit [Ping timeout: 265 seconds] 02:45:01 -!- alefury has joined ##crawl-dev 02:54:03 -!- DrinkMachine has quit [Quit: Leaving] 02:58:54 -!- ussdefiant has quit [Ping timeout: 240 seconds] 03:00:15 -!- minqmay has quit [Quit: Leaving] 03:03:58 -!- radinms has quit [Ping timeout: 240 seconds] 03:14:41 -!- omnirizon has quit [Ping timeout: 276 seconds] 03:17:20 -!- Perryman-phone has quit [Quit: Colloquy for iPhone - http://colloquy.mobi] 03:22:51 !function check_wieldable_size 03:22:53 Couldn't find check_wieldable_size in the Crawl source tree 03:22:58 !function check_weapon_wieldable_size 03:22:59 http://s-z.org/neil/git/?p=crawl.git;a=blob;f=crawl-ref/source/itemprop.cc;hb=HEAD#l1643 03:26:49 -!- simmarine_ has quit [Quit: Leaving] 03:29:05 -!- dtsund has quit [Ping timeout: 264 seconds] 03:47:44 -!- rast has quit [Read error: Connection reset by peer] 03:47:57 -!- rast- has joined ##crawl-dev 03:47:58 -!- rast- is now known as rast 03:51:17 -!- Stelpa has quit [Ping timeout: 264 seconds] 03:51:44 -!- Crehl has quit [Quit: qqqqqqq] 03:51:51 should lava worms be able to move freely on solid ground? 03:52:45 -!- WereVolvo has quit [Ping timeout: 252 seconds] 03:56:19 -!- Roarke has quit [Quit: Page closed] 03:57:38 -!- HellTiger_NB has quit [Ping timeout: 240 seconds] 04:05:02 -!- HellTiger has quit [Ping timeout: 255 seconds] 04:06:02 -!- HellTiger_ has quit [Ping timeout: 276 seconds] 04:11:06 -!- Basil has quit [Ping timeout: 240 seconds] 04:15:29 -!- HellTiger has quit [Ping timeout: 252 seconds] 04:16:35 -!- Alexor has quit [] 04:27:57 -!- omnirizo1 has quit [Ping timeout: 252 seconds] 04:32:53 -!- Kenran has quit [Client Quit] 04:35:48 -!- Spatzist has quit [Ping timeout: 240 seconds] 04:37:59 -!- Quashie has quit [Read error: Connection reset by peer] 04:41:59 -!- Pepe has quit [Ping timeout: 258 seconds] 04:48:57 -!- bonghitz has quit [Remote host closed the connection] 05:06:09 -!- SomeoneAwful has quit [Quit: Leaving] 05:08:18 -!- conted has quit [Ping timeout: 240 seconds] 05:09:50 -!- Nerem has quit [Ping timeout: 255 seconds] 05:11:49 -!- dpeg has joined ##crawl-dev 05:19:29 -!- Moonsilence has quit [Ping timeout: 264 seconds] 05:19:39 -!- bones__ has quit [Ping timeout: 252 seconds] 05:19:59 -!- bones__ has joined ##crawl-dev 05:23:00 -!- edlothiol has joined ##crawl-dev 05:26:29 -!- radinms has quit [Ping timeout: 255 seconds] 05:28:04 -!- nooodl has joined ##crawl-dev 05:29:14 -!- Crisp has quit [Quit: Page closed] 05:32:09 -!- Brannock has joined ##crawl-dev 05:36:23 -!- AtomikKrab has quit [Ping timeout: 276 seconds] 05:37:36 -!- duskhorizon has quit [Client Quit] 05:37:59 -!- st_ has joined ##crawl-dev 05:40:27 -!- bones___ has joined ##crawl-dev 05:42:14 -!- bones__ has quit [Ping timeout: 240 seconds] 05:43:56 -!- bones__ has joined ##crawl-dev 05:45:26 -!- drachereborn has joined ##crawl-dev 05:45:28 -!- bones___ has quit [Ping timeout: 276 seconds] 05:46:02 Siren ally is really weird 05:46:19 The AI still has keep distance despite being friendly 05:46:30 also does nothing during fights 05:47:50 -!- rast has quit [Read error: Connection reset by peer] 05:48:09 -!- rast has joined ##crawl-dev 05:50:01 -!- NearlyNeutral has quit [Quit: leaving] 05:50:46 !tell johnstein it seems DBRO is back to the old version? I don't see anything helpful in the logs, it might be a javascript problem 05:50:46 edlothiol: OK, I'll let johnstein know. 06:11:49 -!- bones___ has joined ##crawl-dev 06:12:27 -!- bones__ has quit [Ping timeout: 252 seconds] 06:17:13 Experimental (weightless) branch on crawl.s-z.org updated to: 0.15-a0-894-ga6bb34b 06:17:31 03gammafunk02 07[weightless] * 0.15-a0-894-ga6bb34b: Fix the wieldable weapon check for skill training purposes 10(4 minutes ago, 1 file, 4+ 5-) 13http://s-z.org/neil/git/?p=crawl.git;a=commitdiff;h=a6bb34bbaf7d 06:17:44 -!- Blazinghand has quit [Read error: Connection reset by peer] 06:19:31 gammafunk: was my itemdestruction reply to elaboratè? 06:19:36 * dpeg is a man of many words. 06:19:50 I don't think so, but I do need to read it over more carefully :) 06:19:58 it's an important issue, so careful thinking is good 06:20:09 -!- Crehl has quit [Quit: qqqqqqq] 06:20:11 not that careful thinking is every bad 06:20:16 s/every/ever/ 06:21:16 gammafunk: when you're chased by lions, then that's not the time for careful consideration! 06:21:40 yes, but if lions were in crawl, then it would be! 06:21:46 that's true 06:22:48 -!- bones___ has quit [Ping timeout: 258 seconds] 06:23:07 -!- bones___ has joined ##crawl-dev 06:23:50 -!- omnirizon has quit [Ping timeout: 276 seconds] 06:25:36 -!- Aryth has quit [Read error: Connection reset by peer] 06:26:40 -!- Fhqwhgads_ has quit [Ping timeout: 240 seconds] 06:26:49 -!- Fhqwhgads__ is now known as Fhqwhgads_ 06:28:52 -!- Fizybubbleh has quit [Quit: http://www.kiwiirc.com/ - A hand crafted IRC client] 06:30:02 -!- bones__ has joined ##crawl-dev 06:32:14 -!- bones___ has quit [Ping timeout: 240 seconds] 06:36:53 -!- bones___ has joined ##crawl-dev 06:39:17 -!- bones__ has quit [Ping timeout: 258 seconds] 06:39:57 -!- bonghitz has quit [Remote host closed the connection] 06:44:12 -!- gammafunk has quit [Quit: Lost terminal] 06:44:37 -!- gammafunk has joined ##crawl-dev 06:45:05 gammafunk: i guess i don't actually know what check_weapon_wieldable_size really does 06:45:19 wheals: it's pretty silly actually 06:45:33 and for the player, there's redundant weapon check code 06:45:45 see can_wield in addition to player::can_wield 06:45:54 and only the latter is used for the skill check 06:46:09 (and the latter calls player::could_wield, but that's an actor thing anyhow) 06:46:29 the idea of that function is to see if the actor's size prevents it from wielding the weapon 06:46:44 but from what i could see, since monsters use it and we don't want them downgrading 06:46:58 the code is set up so that e.g. an ogre won't try to wield a cutlass 06:47:18 hence the player needs to perform that check only when they have a smaller size to begin with 06:47:18 mm, yeah 06:47:40 i could have spent time to clean all that up, but I opted for the easy fix :) 06:48:15 it looks to me that can_wield and player::can_wield likely should be merged 06:48:27 and then that size stuff could be made a bit more sane 06:48:36 kind of two seperate issues, but still 06:48:49 how about could_wield? 06:49:00 oh well that's part of actor 06:49:17 I think the idea there is ok: could the actor ever wield this, versus can it wield it currently? 06:49:28 of course, I think even the player could_wield method 06:49:35 has a thing about transforms :p 06:49:45 so it's just all sort of wonky 06:50:09 ah, i feel like they could be merged with a bool flag perm or something 06:50:15 maybe 06:50:17 yeah, likely so 06:50:24 if you'd like to clean up all that, that's great, but you'll have to test both player weapon wielding as well as monster wielding 06:50:35 since both use that interface 06:50:50 // Anybody can wield missiles to enchant, item_mass permitting 06:50:54 good comment 06:51:05 heh, what does that even mean? 06:51:12 ...wield missiles to enchant 06:51:15 you could enchant missiles 06:51:18 -!- HDA_ has quit [Ping timeout: 240 seconds] 06:51:18 -!- HDA has quit [Ping timeout: 240 seconds] 06:51:18 oh, back when 06:51:20 as recently as 0.10 i think 06:51:23 but didn't it prompt? 06:51:30 I don't ever recall wielding missiles to do that 06:51:42 no, i added ?ew having a prompt recently 06:51:46 haha 06:51:49 nice 06:52:08 very nethack; a great strategy for late game in nethack is to take all the darts or daggers you've found 06:52:15 and make a stack of like 50 (100+ for darts) 06:52:25 and then use ?cancellation to unenchant 06:52:30 to get to +0 06:52:36 and then stack them all, and enchant to +7 06:52:46 i think my tourist win had some pretty lethal darts 06:52:56 yeah 06:52:56 i was actually playing nethack just now 06:53:05 +7 darts can take down mind flayers no problem 06:53:17 and they can die to poison too, if you dip the darts in poison 06:53:18 though i read a random scroll and that destroyed my +3 shield of reflection so i stopped 06:53:35 hrm, destroyed your silver shield? 06:53:51 wonder what does that; it's been a while since I've nethacked 06:53:58 scroll of destroy armour 06:54:00 i think 06:54:07 oh wow, forgot it existed 06:54:21 -!- rossi has quit [Quit: WeeChat 0.4.3] 06:54:22 tourist was my favorite role 06:54:26 I've only one three though 06:54:35 three roles that is 06:54:40 * dpeg ponders sending wheals to the psychatrist. 06:54:52 dpeg: now, about adding quests to crawl... 06:55:22 i tried a little unnethack, the interface was definitely better 06:55:29 cool to have autoexplore, too :) 06:55:33 dpeg has great ideas for quests! 06:55:56 my only wins are with vanilla 06:55:59 oh and sporkhack 06:56:04 which was a great derivative 06:57:00 yes, but it had serious PR issues 06:57:53 with lorimer treating players even worse than dpeg :) 06:58:00 -!- Bloax has joined ##crawl-dev 06:59:32 yeah, I had only a few interactions with him on a forum, and he was fine, but it always seemed like a small-scale set of tweaks 06:59:37 good tweaks though 07:00:16 -!- bones___ has quit [Ping timeout: 240 seconds] 07:00:18 -!- bones__ has joined ##crawl-dev 07:01:10 but tweaks at crucial points. most of his abrasive behavior was because he had lots and lots of discussion with the conservative RGRN people and he had been through most arguments before. so you had to bring something new to the table, otherwise you would be ridiculed or ignored 07:01:41 -!- kryft has quit [Remote host closed the connection] 07:01:41 -!- tw_ has quit [Remote host closed the connection] 07:02:31 funny to think that nethack dev would have people very conservative and resistant to change, given how inherently unbalanced nethack is 07:03:23 not that crawl is truly balanced either, but we do value balance over cuteness 07:04:07 crawl has some huge imbalances in the form of cheibladehands, (recently) lcsrocks and things like that 07:04:27 but that's okay because those can only truly be imbalanced with very specific builds 07:04:58 crawl didn't have a decade of mostly no changes (even when the devteam was still releasing, the last versions were mostly bugfixes and not serious changes). if your player base gets used to the unbalances, they start to get stockholm syndrome and fight to keep their well-known and "loved" unbalance. 07:04:58 i don't think those things are really thatmuch worse than the alternatives 07:05:27 -!- bones___ has joined ##crawl-dev 07:05:54 -!- bones__ has quit [Ping timeout: 240 seconds] 07:07:01 bhaak: yeah, that stands to reason. I feel the negative reaction to nem removal falls basically on those lines; we've just had this weird god for so long that people become sad to see it leave 07:07:28 At least nem is getting an overhaul to remove the worst offenses 07:08:15 huh, so /lightning is not a source of light to dith? 07:08:48 I guess it's only "brief light" 07:08:49 the shadows are more harshly illuminated after the bright flash 07:09:02 s/illuminated/endarkened/? 07:09:37 enubelighted 07:09:45 *enunbelighted 07:10:02 -!- Ququman has joined ##crawl-dev 07:10:13 wheals: a +9 claymore of speed at 28 str/16 dex at 27 fighting and 27 long blades does 57.2 AvEffDam against a yak 07:10:14 undelightizefied 07:10:36 cheibladehands at 43 str/31 dex at 27 fighting (laziness) and 15 unarmed does 83 07:10:58 except the only way you're gonna be using that is by rolling a transmuter 07:11:13 -!- bones__ has joined ##crawl-dev 07:11:13 Bloax: you're putting numbers over substance; you still have to play with chei that entire game to get to those numbers, and you have to deal with the positioning nerf and the speed nerf 07:11:26 try multiplying 57.2 x 1.5, for instance 07:11:50 I can use a claymore with any god, I can't use cheibh with anyone except chei 07:11:54 -!- bones___ has quit [Ping timeout: 240 seconds] 07:11:58 gammafunk: but that's okay because those can only truly be imbalanced with very specific builds 07:11:59 that as well 07:12:14 that doesn't address any of what I said at all 07:12:23 unless you meant to reply to Kvaak 07:12:44 huh, cool, looks like dynahack doesn't punish you for gaining xl 07:12:58 that's the reply to you bringing up "substance" 07:13:15 in which case it's very relevant that >this only happens with very specific builds< 07:13:20 it's not imbalanced in those builds though 07:13:26 you have a lot of tradeoffs with that build 07:13:38 so no, it's not relevant 07:13:44 namely the fact you can't walk while monsters are in los :p 07:13:45 because it's pretty specific that you are playing with chei and using blade hands while pumping str/dex to do more damage with blade hands 07:14:07 I don't get this cheibh thing anyway because BH deals insane damage even without chei 07:14:11 it doesn't matter that it's specific when the premise that it's very imbalanced is wrong 07:15:03 gammafunk: well at 27 unarmed that becomes 155.5 against 88.2 hasted +9 claymore of speed 07:15:22 and if you're hasted 07:15:25 with this claymore of speed 07:15:27 you can run! 07:15:32 you can do anything! 07:15:46 because it's hard to be hasted with chei I hear 07:15:47 with cheibladehands you can attempt to reposition and not use wands 07:15:54 if anything using chei to boost BH sounds like the most pointless thing you can ever do in crawl 07:16:11 it's still ridiculous damage early on if you get it rolling 07:16:23 yes, BH is ridiculous damage 07:16:51 many players value minimizing risk over higher damage numbers 07:17:00 the fact is you don't need "cheidamage" to minimize risk 07:17:17 and chei is actually about increasing risk pretty inherently 07:17:30 not to say it's not fun, but I think that's really the design 07:18:05 well arguably enough an ability to pull in enemies while being able to oneshot hill giants at d:8 doesn't make for all that much of a risky game ;) 07:18:24 but enough of silliness 07:18:45 -!- bones__ has quit [Read error: Connection reset by peer] 07:18:48 there are well and truly a lot of scenarious where having the slow move is great risk indeed, regardless of damage 07:19:00 see: vaults:5 post-entry party 07:19:12 I'll gladly trade the ability to one shot things in exchange for the ability to walk away from things while I'm still able to 2-shot things 07:19:14 well I mean in early game 07:19:28 especially when I can hit those twings thice before they can hit me once anyway 07:19:32 *twice 07:21:06 -!- bones__ has joined ##crawl-dev 07:21:47 also here's a revolutionary idea: using haste WITH blade hands 07:23:34 in fact a quick sim will probably show you it leaves both the +9 claymore of speed and cheibladehands to dust! 07:28:08 Kvaak: it's about 50% better than the claymore, but a bit less annihilating than cheibladehands 07:28:19 no it isn't because you attack faster 07:29:08 with the numbers you used it fell 13 damage or so short of cheiBH's 83 07:29:22 now add in to that the fact you attack 50% faster and there's just no comparison 07:29:48 cheibladehands at 27 unarmed/fighting is 155.5, mind 07:30:00 hasted-nonchei is about 144 07:30:20 enormous damage 07:30:30 -!- conted has quit [Quit: Page closed] 07:30:49 difference of 11 damage on average is meaningless when damage is that high anyhow 07:31:09 especially considering that not-chei gives you better positioning options 07:31:22 don't forget that hasted benefits more from slaying 07:32:02 -!- bones__ has quit [Ping timeout: 255 seconds] 07:32:17 yes 07:32:24 now imagine FINESSE BLADEHANDS 07:32:38 or Fineese DRAGONFORM 07:32:51 WITH 72 STRENGTH 07:33:08 haste also has less trouble with overkill 07:34:06 anyway the fsim numbers I get fluctuate a bit although cheibh comes on top more often than not 07:34:24 it will come on top against high-AC monsters 07:35:01 like Tiamat 07:35:04 test it on Tiamat 07:35:26 the point is chei isn't unbalanced, since the difference can't be considered in isolation; it's not relevant to ignore all of the tradeoffs you get with that very slow movement 07:35:41 -!- sd1989 has joined ##crawl-dev 07:35:46 yeah 07:35:46 !messages 07:35:47 No messages for sd1989. 07:35:51 an in increase in even 20 damage on average isn't important when you're doing over 100 damage on average 07:35:56 for starters, you can't walk away 07:36:11 also what the fuck 100 damage on average is kind of ridiculous 07:36:16 ??lcs 07:36:16 lehudib's crystal spear[1/1]: AKA: Lehudib's Crystal Spear or just crystal spear. Level 8 Conjurations/Earth spell, found only in Book of Annihilations and randart Sif gifts. 10d22.3 at max power, theoretically, and unresistable. The strongest single target conjuration, but its range is one square less than that of Iron Shot. 07:36:34 111.4 for cheibh, 91.05 for hastebh 07:36:41 (against tiamat) 07:36:42 oh 07:36:45 gammafunk: we have some kinds of quests in Crawl already, and I think there could be a little more. As usual: we learn how to not to do it from Nethack :) 07:37:22 dpeg: yeah, it was a joke of course :) I do kind of miss the drama of the large, nethack style quest, but most of them did play poorly 07:37:33 those numbers are still ridiculous though and most monsters in crawl have poor AC anyway 07:37:55 and frankly that difference isn't worth the crippling movespeed 07:38:00 yeah 07:38:28 03elliptic02 07* 0.15-a0-891-g4815abf: Make Qazlal's Upheaval AUTOMATIC_HIT and reduce damage slightly at low power. 10(10 minutes ago, 1 file, 2+ 2-) 13http://s-z.org/neil/git/?p=crawl.git;a=commitdiff;h=4815abfa3393 07:49:19 -!- rast-- has joined ##crawl-dev 07:51:49 -!- rast has quit [Ping timeout: 252 seconds] 07:51:55 -!- rast-- is now known as rast 07:52:53 -!- CKyle has joined ##crawl-dev 07:52:55 -!- rast- has quit [Ping timeout: 252 seconds] 08:07:59 -!- absolutego has joined ##crawl-dev 08:09:10 -!- Fhqwhgads_ has quit [Ping timeout: 265 seconds] 08:09:22 -!- Fhqwhgads__ is now known as Fhqwhgads_ 08:21:37 -!- scummos| has quit [Remote host closed the connection] 08:28:34 -!- MaxFrost has quit [Ping timeout: 240 seconds] 08:42:27 -!- Lasty1 has joined ##crawl-dev 08:47:52 -!- Moonsilence has quit [Ping timeout: 240 seconds] 08:49:17 -!- Fhqwhgads_ has quit [Ping timeout: 265 seconds] 08:49:20 -!- Fhqwhgads__ is now known as Fhqwhgads_ 08:51:48 -!- Roarke has quit [Ping timeout: 240 seconds] 08:56:18 -!- kekekela has quit [Ping timeout: 240 seconds] 08:58:53 -!- Moonsilence has quit [Ping timeout: 255 seconds] 08:59:32 -!- Moonsilence_de has quit [Client Quit] 09:05:19 -!- Brannock has quit [Quit: Leaving] 09:09:17 -!- FourHTwoA has quit [] 09:10:33 -!- sd1989 has left ##crawl-dev 09:20:26 Strat (L22 HODK) ASSERT(blood.sub_type == POT_BLOOD_COAGULATED) in 'misc.cc' at line 591 failed. (Depths:1) 09:23:32 -!- ontoclasm has joined ##crawl-dev 09:28:37 !crashlog strat 09:28:37 4. Strat, XL22 HODK, T:60360 (milestone): http://dobrazupa.org/morgue/Strat/crash-Strat-20140518-142023.txt 09:29:09 -!- bones__ has joined ##crawl-dev 09:29:56 blood= 09:31:38 <|amethyst> just picked up two potions of blood 09:31:56 <|amethyst> rot_limit = 60360 09:31:59 <|amethyst> coag_limit = 60860 09:32:24 -!- TAS-2012v has quit [Read error: Connection reset by peer] 09:32:37 <|amethyst> current = 43773 09:33:13 <|amethyst> as though the blood went directly from fresh to rotted; but I don't know why it wouldn't have coagulated on the ground first 09:33:16 -!- tw_ has quit [Quit: Lost terminal] 09:33:40 -!- tw_ has quit [Client Quit] 09:36:07 -!- bones___ has joined ##crawl-dev 09:38:09 -!- bones__ has quit [Ping timeout: 252 seconds] 09:38:18 -!- Patashu_ has quit [Ping timeout: 258 seconds] 09:38:20 -!- notcluie is now known as notbcadren 09:38:47 -!- notbcadren is now known as notcluie 09:41:05 -!- bones___ has quit [Ping timeout: 264 seconds] 09:49:09 -!- rast has quit [Read error: Connection reset by peer] 09:49:22 -!- rast has joined ##crawl-dev 09:52:30 -!- PleasingFungus has joined ##crawl-dev 09:55:45 -!- omnirizo1 has quit [Ping timeout: 252 seconds] 09:56:39 PleasingFungus: funny meta talk about dpeg on SA. 09:56:53 "nice person", hehe :) 09:57:06 -!- ystael has quit [Ping timeout: 240 seconds] 09:57:15 I think most devs are nice! 09:57:20 except for that one guy. he's a real jerk. 09:57:26 boy, I hate that guy. 09:57:45 -!- nooodl_ has joined ##crawl-dev 09:57:51 dude, i'm right here 09:58:03 :P 09:58:57 PleasingFungus: but anyway, so much nonsense is spouted that I don't feel like explaining myself to players much. (Not that that'd affect SA anyhow.) 09:59:34 sure. 09:59:46 -!- ussdefiant has joined ##crawl-dev 09:59:56 the conversation seems to have moved on from spidergod pretty quickly, which is just as well, I think. 10:00:02 Oh here's a good bug: 10:00:08 Going berserk while autoexploring does not stop autoexploring. 10:00:22 rrrr, must explore dungeon 10:00:23 (Possibly only caused by BATTLELUST.) 10:00:59 maybe xom giving a potion to you might? or do all xom actions stop autoexplore 10:01:04 -!- nooodl has quit [Ping timeout: 240 seconds] 10:01:23 PleasingFungus: yes. I wouldn't put much weight on "nothing happened there for 1.5 year" -- the gold god design is much golder; randgods are about as old, and I hope they're not dead. 10:02:03 gold god is _much_ golder 10:02:09 ^ 10:02:41 <|amethyst> Grunt: what about autoexplore attacking monsters that you runrest_ignore_monsters on, while you're *Berserk 10:02:44 <|amethyst> ? 10:03:30 or if you have runrest_ignore_monster on moth of wrath? 10:03:48 <|amethyst> even better :) 10:04:36 dpeg: well. I don't have anything against the idea of a cool spider god, it's just the spidersex theeing which I think wasn't a good idea. (largely for reasons that were covered in the 1.5 year-old thread, I think.) 10:04:38 *theming 10:05:01 <|amethyst> And I think the mechanic could be fine with different flavour 10:05:15 <|amethyst> oh, that's what you meant by "theming" 10:05:19 yes exactly 10:05:21 <|amethyst> I read it as "thing" :) 10:05:27 -!- Moonsilence has quit [] 10:05:30 typos 10:07:01 <|amethyst> FR: Ichneumoid Wasp god 10:07:38 <|amethyst> you sting monsters in the brain, then they follow you to your stash where you implant them with eggs and they are slowly eaten from the inside out by your children 10:07:54 <|amethyst> while alive the whole time, for maximum freshness 10:08:27 <|amethyst> s/oid/onid/ 10:09:36 <|amethyst> And there's a great quote for it: 10:09:40 <|amethyst> "I cannot persuade myself that a beneficent and omnipotent God would have designedly created the Ichneumonidae with the express intention of their feeding within the living bodies of Caterpillars, or that a cat should play with mice." 10:09:40 does this mean we can bring back ABIL_SHUGGOTH_SEED 10:09:45 <|amethyst> -C. Darwin 10:09:57 -!- DrinkMachine has joined ##crawl-dev 10:10:18 Ghost fixes by PleasingFungus 10:10:18 <|amethyst> (hm, maybe add that as a quote for felids now :) 10:10:39 or red/yellow wasps 10:11:35 |amethyst: ^ that's for you 10:11:45 <|amethyst> PleasingFungus: thanks 10:11:50 np 10:12:00 probably I should use mantis more 10:12:08 <|amethyst> yes 10:12:23 <|amethyst> and probably we should use some code review tools that work better than mantis 10:12:45 <|amethyst> I mean, it's good for bug reports, but not the best for code submissions 10:20:29 -!- Roarke has quit [Quit: Page closed] 10:21:25 -!- ystael has quit [Ping timeout: 252 seconds] 10:35:30 -!- PleasingFungus has quit [Ping timeout: 240 seconds] 10:38:46 -!- ais523_ has joined ##crawl-dev 10:45:54 -!- oberstein has quit [Ping timeout: 240 seconds] 10:48:00 -!- WereVolvo1 has quit [Quit: Leaving.] 10:52:18 -!- zeia has quit [Ping timeout: 240 seconds] 10:53:06 -!- oberstein has joined ##crawl-dev 10:53:58 -!- Sativa has quit [Quit: Page closed] 10:55:34 -!- WereVolvo has quit [Ping timeout: 240 seconds] 10:56:15 -!- mizu_no_oto has quit [Quit: Computer has gone to sleep.] 10:57:49 -!- radinms has quit [] 11:14:58 -!- Kacy has quit [Read error: Connection reset by peer] 11:25:14 -!- ussdefiant has quit [Ping timeout: 240 seconds] 11:25:16 -!- us17 has quit [Quit: ZNC - http://znc.in] 11:28:23 -!- Eonwe1 has quit [Read error: Connection reset by peer] 11:32:20 -!- ystael has quit [Ping timeout: 255 seconds] 11:32:21 -!- simmarine has joined ##crawl-dev 11:34:03 -!- HDA has joined ##crawl-dev 11:34:25 -!- nooodl_ is now known as nooodl 11:41:20 -!- MgDark has quit [Quit: ChatZilla 0.9.90.1 [Firefox 27.0/20131216183647]] 11:50:33 -!- soundlust|2 is now known as soundlust 11:54:48 -!- Hambone has quit [Ping timeout: 240 seconds] 12:03:48 -!- Fizybubbleh has quit [Quit: http://www.kiwiirc.com/ - A hand crafted IRC client] 12:10:47 -!- Vaporware has joined ##crawl-dev 12:10:47 -!- Vaporware has quit [Changing host] 12:10:47 -!- Vaporware has joined ##crawl-dev 12:10:52 -!- us17 has quit [Ping timeout: 258 seconds] 12:11:52 -!- DrinkMachine has quit [Ping timeout: 240 seconds] 12:13:14 -!- UncertainKitten has joined ##crawl-dev 12:15:17 -!- Aryth has quit [Read error: Connection reset by peer] 12:15:38 -!- Eonwe1 has quit [Read error: Connection reset by peer] 12:15:51 Unstable branch on crawl.akrasiac.org updated to: 0.15-a0-891-g4815abf (34) 12:17:41 -!- blockh34d has quit [Ping timeout: 264 seconds] 12:20:24 -!- MgDark has quit [Quit: ChatZilla 0.9.90.1 [Firefox 27.0/20131216183647]] 12:27:10 -!- johlstei has joined ##crawl-dev 12:28:42 -!- mizu_no_oto has quit [Quit: Computer has gone to sleep.] 12:29:07 -!- johlstei_ has quit [Ping timeout: 276 seconds] 12:29:15 <|amethyst> should Mo^Gozag get a refund of their sign-up-fee? 12:29:18 -!- johlstei_ has joined ##crawl-dev 12:29:59 <|amethyst> trying to thing of what else would be similar to starting piety 12:30:14 <|amethyst> s/thing/think/ 12:30:26 they get it halved, i think 12:30:30 <|amethyst> ah 12:30:30 |amethyst: oh, I sort of expected that they already had something like that 12:30:33 <|amethyst> I see 12:30:39 <|amethyst> halved is probably fine 12:30:41 a refund might be better 12:30:47 since we already lowered the cost for everyone 12:30:52 <|amethyst> hm 12:31:10 (so halving is less significant) 12:31:21 ** piety is pretty significant for most gods, so I think we can be generous 12:31:54 also speaking of gozag, i bisected and i think he might be the cause of my cdo save crashing on load 12:32:05 -!- johlstei has quit [Ping timeout: 264 seconds] 12:32:35 hm, I thought you weren't able to reproduce the crash locally though? 12:32:43 it seems to be loading every level in the game and applying dactions when i load it locally, and gozag added a bunch of dactions 12:32:50 it doesn't crash but it does take like a full minute to load 12:33:47 and that behaviour seems to start with the addition of gozag 12:37:17 <|amethyst> Is "You pay a service fee of %d gold. Gozag refunds your service fee." adequate, or should it somehow indicate that it's because you're a monk 12:37:20 <|amethyst> ? 12:37:50 <|amethyst> and should the fee still count towards ATTR_GOZAG_GOLD_USED ? 12:38:08 <|amethyst> (AFAICT that's only used in char dumps, not for calculating any costs) 12:38:57 I'd like to say that crawl has reached a major milestone: ugly thing packs are no longer awful to fight 12:39:24 they weren't awful to fight in 0.1 either! 12:39:49 well, yes 12:40:27 wow i wonder what its like to play with new ugly things now 12:42:00 -!- Kalir has quit [Changing host] 12:42:24 !tell edlothiol I was messing around with dbro last night and screwed some things up. it's using the new webtiles again. here's a recent log trying to play. http://pastebin.com/PqK1khCK here's the json file http://pastebin.com/n9Zr3xtK 12:42:24 johnstein: You have 1 message. Use !messages to read it. 12:42:24 johnstein: OK, I'll let edlothiol know. 12:44:45 -!- rast has quit [Remote host closed the connection] 12:45:14 -!- dracflamloc has quit [Quit: WeeChat 0.4.2] 12:45:16 -!- rast has joined ##crawl-dev 12:45:31 johnstein: I don't see anything wrong in the logs or config 12:45:31 edlothiol: You have 1 message. Use !messages to read it. 12:45:48 elliptic: gotta go, but yes to more generous effect for MonksGozag 12:46:56 <|amethyst> compiling to test it now 12:47:14 |amethyst: I sort of feel like it would be clearer (but less flavorful I guess) to just waive the fee instead of refunding it 12:47:23 -!- Hambone has quit [Quit: Page closed] 12:47:27 <|amethyst> elliptic: and let you join for free? 12:47:30 so that ctrl-o could just list the fee as $0 12:47:33 <|amethyst> elliptic: ah 12:47:40 |amethyst: if it is your first god as a monk, yeah 12:48:01 <|amethyst> Yeah, that would probably be easier to understand 12:48:06 +1 12:48:21 -!- dpeg has quit [Quit: gotta play Go now] 12:49:53 johnstein: this is really weird 12:50:22 <|amethyst> elliptic: also, that "you pay a service fee" message should probably be in Gozag's colour right? 12:50:29 <|amethyst> MSGCH_GOD 12:51:10 sounds right, yes 12:53:29 edlothiol: yea. weird I can watch myself play console http://dev.berotato.org:8081/watch/dbrotest 12:54:02 makes me think I have something hosed up in the dgamelaunch related stuff. I'll go through it with a finer comb later 12:54:32 edlothiol: it's not a perfect clone of the cbro setup, but it's really close. so maybe I goofed up something 13:03:38 johnstein: I think it's my fault... I'm working on it 13:05:03 -!- rast has quit [Read error: Connection reset by peer] 13:05:15 -!- rast has joined ##crawl-dev 13:06:46 throwing nets seem kind of inappropriate in shoals now that player flight prevents them from working 13:07:43 johnstein: hmm... maybe not 13:08:10 players never fell when getting hit by nets 13:08:21 or at least, not recently 13:08:24 no, but they could still get caught in them IIRC 13:08:46 -!- notcluie has quit [Quit: Page closed] 13:09:05 looks like you still can 13:09:33 !source player_caught_in_net 13:09:33 http://s-z.org/neil/git/?p=crawl.git;a=blob;f=crawl-ref/source/traps.cc;hb=HEAD#l370 13:09:54 oh, well in that case never mind 13:09:56 a 1/3rd chance of not getting caught 13:09:57 -!- Amnesiac has quit [Quit: KVIrc 4.2.0 Equilibrium http://www.kvirc.net/] 13:10:40 okay that's really weird 13:10:58 since flying monsters get a 100% chance of not getting caught, don't they 13:11:24 ??plutonians 13:11:25 plutonians[1/1]: New Species Idea. Plays with Contam mechanic 13:11:41 -!- caleba has quit [Quit: caleba] 13:11:57 %git 45c03679f2dcb 13:11:58 07DracoOmega02 * 0.14-a0-2068-g45c0367: Don't making flying creatures/monsters completely immune to being netted 10(4 months ago, 1 file, 2+ 2-) 13http://s-z.org/neil/git/?p=crawl.git;a=commitdiff;h=45c03679f2dc 13:12:00 monsters have the same 2/3 chance of escaping if they're flying 13:15:16 johnstein: it wasn't what I thought apparently... so I still have no idea 13:15:52 edlothiol: ok. I will go through my setup 13:16:24 edlothiol: ok. I will go through my setup 13:17:37 johnstein: though I notice that editing the RC doesn't work either because the server doesn't reply... can I see the logs again? 13:18:26 johnstein: also, could I see the DGL config? 13:19:19 edlothiol: log: http://pastebin.com/tdUsDhpn 13:20:36 edlothiol: you mean the dgl-manage.conf? http://pastebin.com/F92RXQde 13:21:05 -!- Vaporware has quit [Ping timeout: 252 seconds] 13:22:05 edlothiol: and again, there's a really good chance that the error is on my side based on what I thought I had to do to get dbro set up. I didn't really know how to handle 'experimental' like builds at the time, so I invented my own way. which is more complex than it needs to be 13:22:15 edlothiol: that's probably the source of the rc file issue 13:22:41 edlothiol: since in my previous setup, each experimental had its own rc file. whereas on cszo and cbro, they all use the crawl-git rc 13:23:34 johnstein: usually /bin/init-webtiles.sh (in the chroot) should init the rc file and copy the default if it isn't there 13:28:27 edlothiol: yea, previously it was using the rc file for each branch. I changed init-webtiles.sh to match cbro experimentals and only use the git version. 13:29:07 edlothiol: gotta head out for family boardgame day. I'll be back later tonight to dig in some more... thanks for the help so far. sorry for the confusion 13:29:51 johnstein: better to have the confusion now than after it's merged into master ;) have fun 13:30:56 edlothiol: yea. I'm seriously considering just redoing dbro from scrach and exactly following the cbro structure (which should be the same as cszo and clan since we are using the same process). 13:31:20 edlothiol: but this current mess at least potentially exercises some edge cases maybe :) 13:34:19 johnstein: it's already found two legitimate problems :) 13:34:52 woo! 13:34:57 -!- dtsund has joined ##crawl-dev 13:36:18 03|amethyst02 07* 0.15-a0-892-gf75a032: Completely waive Gozag's fee for first-god Monks (elliptic) 10(52 minutes ago, 1 file, 25+ 12-) 13http://s-z.org/neil/git/?p=crawl.git;a=commitdiff;h=f75a032ec99e 13:37:08 %git ffe63d8 13:37:08 07Grunt02 * 0.15-a0-485-gffe63d8: Gozag: charge a service fee for joining. 10(7 weeks ago, 4 files, 80+ 0-) 13http://s-z.org/neil/git/?p=crawl.git;a=commitdiff;h=ffe63d874a0e 13:37:16 that's the commit i narrowed it down to when bisecting 13:37:39 i think it is visiting every level to count gold generated when i load the save 13:37:42 -!- notcluie is now known as notbcadren 13:38:09 -!- notbcadren is now known as notcluie 13:39:03 and the save has generated "every level" so that's a bunch of levels 13:40:21 -!- Laraso has quit [Quit: Laraso falls through a shaft! The shaft crumbles and collapses.] 13:41:26 03edlothiol02 07[webtiles-changes] * 0.15-a0-744-gc42e00b: Webtiles: Remove some console.logs. 10(41 minutes ago, 1 file, 0+ 2-) 13http://s-z.org/neil/git/?p=crawl.git;a=commitdiff;h=c42e00b48000 13:51:17 -!- rast has quit [Read error: Connection reset by peer] 13:51:35 -!- rast has joined ##crawl-dev 13:55:04 -!- rast- has joined ##crawl-dev 13:56:17 -!- rast has quit [Ping timeout: 252 seconds] 13:56:29 -!- rast- is now known as rast 13:59:41 -!- Bcadren has quit [Ping timeout: 264 seconds] 14:02:30 -!- Frank2368 has quit [Quit: Page closed] 14:06:31 Hey devs, I could use some advice if you have a moment. I'm seeing the game crash after I wizmode a character to worship the new god I'm working on, but the crash logs don't seem to have any info. 14:07:01 I see this in the crashlog: "Unable to get stack trace on this platform." I'm on Windows 7. Is there anything I can do to get a stack trace? 14:07:05 -!- Blazinghand has quit [Read error: Connection reset by peer] 14:08:01 <|amethyst> Lasty1: are you building with mingw or Visual Studio? 14:08:17 mingw 14:08:19 <|amethyst> Lasty1: do you have the mingw version of gdb? 14:08:42 <|amethyst> gdb crawl.exe (or whatever the binary is called) then type run when you get the prompt 14:08:51 I don't know. How do I check? 14:08:53 -!- jservo has quit [] 14:08:53 oh 14:08:56 <|amethyst> when it crashes, type bt at the prompt to get a backtrace 14:09:13 <|amethyst> or bt full to get one that includes all the local variables 14:09:22 <|amethyst> you can walk up and down the stack with up and down 14:10:14 <|amethyst> and evaluate expressions with p you.worship(GOD_FOOBAR) 14:10:51 When I do gdb crawl.exe I get dropped into the gdb prompt. What do I need to do to launch crawl.exe from there? 14:10:55 <|amethyst> run 14:11:09 <|amethyst> you can give command-line option after "run" if you want 14:11:14 <|amethyst> run -name lasty 14:11:24 <|amethyst> s/option/options/ 14:12:03 -!- Bcadren has quit [Ping timeout: 252 seconds] 14:12:18 -!- Bron has quit [Ping timeout: 240 seconds] 14:12:52 <|amethyst> Lasty1: if the information is limited it might help to rebuild crawl with make DEBUG=y NO_OPTIMIZE=y tiles 14:13:13 <|amethyst> (DEBUG=y is different from 'make debug', as it doesn't turn on diagnostics etc) 14:13:32 -!- Arkaniad has quit [Remote host closed the connection] 14:13:44 thanks! TRying that out. Right now it looks like it's crashed and it's hanging . . . 14:14:01 <|amethyst> do you have a prompt back at gdb? 14:14:09 yes 14:14:15 <|amethyst> type bt 14:14:24 Ah -- and there's a seg fault 14:14:38 -!- bonghitz has quit [Quit: Leaving...] 14:14:57 if I force Crawl to die, will I lose the trace? 14:15:09 It's blocking me from using mouse clicks anywhere, including in the scroll window 14:15:15 <|amethyst> hm 14:15:33 <|amethyst> not sure, I haven't used gdb on Windows 14:15:37 awright 14:16:16 you have the trace in the cmd window, if you "kill" in gdb that should terminate crawl but leave gdb running and the backtrace in the window 14:16:30 excellent 14:16:35 dang, crawl doesn't want to die! 14:16:42 may need to "cont" 14:16:49 <|amethyst> but if it dies you probably can't evaluate expressions anymore 14:16:50 yes 14:17:06 but if it's blocking proper interaction there may not be much choice 14:17:08 ah, got mouse control back somehow 14:17:11 (unix reasons) 14:17:14 but crawl hasn't died 14:17:17 yeah, I know 14:17:47 I don't know details for windows, but on a unixlike you need to "cont" the program before it will process a signal or otherwise exit 14:17:57 right now it's in suspended animation 14:17:59 ah 14:18:28 and in that state gdb can examine or modify its memory etc. 14:19:05 #2 in get_god_abilities(include_unusable=true, ignore_piety=true) at ability.cc:3849 14:19:56 -!- Arkaniad has quit [Remote host closed the connection] 14:20:31 #2 in std:vector(ability_type, std::allocator(ability_type) )::push_back (this=0x28f8a4, __x=@0x0) at c:/msysgit/mingw/bin/../lib/gcc/mingw32/4.4.0/include/c++/bits/stl_vector.h:741 14:20:39 er, that first one was #3 14:21:17 -!- markaq has quit [Quit: Page closed] 14:21:20 -!- Basil has joined ##crawl-dev 14:21:25 ah, yes 14:21:53 else if (you_worship(GOD_IASHOL)) 14:21:53 { 14:21:53 int num_sacrifices = sizeof(you.available_sacrifices); 14:21:53 for (int i = 0; i < num_sacrifices; ++i) 14:21:53 { 14:21:53 abilities.push_back(you.available_sacrifices[i]); 14:21:53 } 14:21:53 } 14:22:02 <|amethyst> err 14:22:08 <|amethyst> that's not how sizeof works 14:22:10 that looks dubious 14:22:12 yeh 14:22:23 <|amethyst> what is you.available_sacrifices? 14:22:27 where you.available_sacrifices is a vector with a few abilities pushed to it 14:22:31 <|amethyst> exactly how is it decalred/defined 14:22:59 vector available_sacrifices; in player.h 14:23:08 <|amethyst> then you want int num_sacrifices = your.available_sacrifices.size(); 14:23:24 Thanks! 14:23:41 And now you really know what a c++ scrub I am :D 14:23:55 <|amethyst> if we had C++11 it would be much simpler 14:24:13 <|amethyst> for (auto abil : you.available_sacrifices) abilities.push_back(abil); 14:24:21 much cleaner 14:24:55 s/your.available_sacrifices/you.available_sacrifices/ right? 14:25:01 <|amethyst> err, yes :) 14:25:05 Thanks! 14:26:08 <|amethyst> (but can't do C++11 in Crawl until we decide what to do about universal mac builds) 14:26:20 They don't support C++ 11? 14:26:32 <|amethyst> they require a quite old version of gcc 14:26:38 <|amethyst> that doesn't have much C++11 support 14:27:01 <|amethyst> otherwise we could just require, say, gcc 4.6 14:27:06 <|amethyst> or whatever 14:27:09 Gotcha 14:28:16 -!- nooodl_ has joined ##crawl-dev 14:29:46 woo! I can worship Iashol now. Assuming I didn't create any other bugs, it's a barely functional playable god. 14:30:43 -!- nicolae- has joined ##crawl-dev 14:31:14 -!- WalkerBoh has quit [Remote host closed the connection] 14:31:29 -!- nooodl has quit [Ping timeout: 265 seconds] 14:31:41 -!- zxc232 has quit [Quit: Leaving.] 14:32:00 -!- Arkaniad has quit [Remote host closed the connection] 14:33:36 -!- Arkaniad has quit [Remote host closed the connection] 14:38:39 -!- Arkaniad has quit [Remote host closed the connection] 14:44:58 -!- Bcadren has quit [Ping timeout: 276 seconds] 14:46:51 -!- notcluie is now known as notbcadren 14:46:55 -!- Oxybeles has quit [Ping timeout: 276 seconds] 14:47:05 -!- notbcadren is now known as notcluie 14:48:15 -!- Arkaniad has quit [Remote host closed the connection] 14:48:15 -!- Arkaniad|Away has quit [Remote host closed the connection] 14:48:15 -!- Arkaniad|Laptop has quit [Remote host closed the connection] 14:52:33 -!- geedmat has quit [Quit: Page closed] 15:00:54 -!- nicolae- has quit [Ping timeout: 240 seconds] 15:01:35 -!- nicolae- has joined ##crawl-dev 15:03:14 -!- Bcadren_ has quit [Ping timeout: 240 seconds] 15:09:15 if (abil.ability == ABIL_CONVERT_TO_BEOGH) 15:09:15 first_slot = 'Y' - 'A' + 26; 15:09:41 -!- rchandra has joined ##crawl-dev 15:10:41 What's with that assignment? It seems needlessly complex, but maybe I just understand it. 15:11:31 <|amethyst> 0-25 are a-z 15:11:41 <|amethyst> and 26-51 are A-Z 15:11:44 yeah 15:12:05 -!- Arkaniad has quit [Read error: Connection reset by peer] 15:12:09 <|amethyst> so that's a way to write 50 that shows that it's the letter 'Y' 15:12:14 oh, all 15:12:18 er 15:12:19 ah 15:12:29 -!- nooodl_ is now known as nooodl 15:12:33 Why not just use a comment? haha 15:12:58 especially since right above it raw numbers are used 15:13:06 yup 15:13:26 <|amethyst> I'd rather use static int char_to_slot(char c) 15:13:34 <|amethyst> err, _char_to_slot 15:13:35 better still! 15:13:38 <|amethyst> or even a #define 15:13:59 <|amethyst> (but function would be better) 15:15:53 I don't have a vote, but I still vote function 15:17:15 -!- Marq_ has quit [Quit: Page closed] 15:20:09 -!- Arkaniad|Laptop has quit [Remote host closed the connection] 15:21:35 I'm seeing a weird AC/EV ui update bug 15:21:38 on the weightless branch 15:21:57 |amethyst: the function already exists, even 15:22:13 !source letter_to_index 15:22:14 http://s-z.org/neil/git/?p=crawl.git;a=blob;f=crawl-ref/source/stuff.cc;hb=HEAD#l784 15:22:15 I am playing zigsprint and I can put on dex rings 15:22:20 and see an AC/EV value 15:22:26 put in stuff.cc where nobody will find it 15:22:32 -!- Bcadren_ has quit [Ping timeout: 258 seconds] 15:22:37 then do P again, select a +6 str ring, and the values update in the ui before I choose a ring 15:22:38 and they stick 15:22:51 (the value for EV that is) 15:22:56 <|amethyst> wheals: haha 15:23:24 possibly not worth doing it since i want to ditch a lot of what's there and add an option like spell_slot 15:26:05 03|amethyst02 07* 0.15-a0-893-gdddc889: Use a function (Lasty, wheals) 10(24 seconds ago, 1 file, 5+ 5-) 13http://s-z.org/neil/git/?p=crawl.git;a=commitdiff;h=dddc889b75f8 15:26:27 <|amethyst> (letter_to_index could probably stand to be made constexprable) 15:26:48 <|amethyst> (but I guess then you can't die) 15:32:38 -!- Fhqwhgads_ has quit [Ping timeout: 240 seconds] 15:32:40 -!- Fhqwhgads__ is now known as Fhqwhgads_ 15:41:53 -!- Bcadren_ has quit [Ping timeout: 252 seconds] 15:44:47 -!- absolutego has quit [Quit: leaving] 15:49:13 -!- MaxFrost has quit [Ping timeout: 252 seconds] 15:52:58 -!- Crehl has quit [Quit: qqqqqqq] 15:55:14 -!- Keanan has joined ##crawl-dev 15:56:50 -!- elliptic has quit [Quit: Leaving] 15:57:53 -!- elliptic has joined ##crawl-dev 15:59:40 -!- rast has quit [Read error: Connection reset by peer] 15:59:51 -!- rast- has joined ##crawl-dev 15:59:52 -!- rast- is now known as rast 16:01:14 -!- Patashu has joined ##crawl-dev 16:02:36 hey |amethyst you do a certain amount of admin-ing on CAO right? 16:02:57 how come the "ongoing game" thing doesn't seem to update much or be accurate? 16:04:40 -!- nicolae- has quit [Ping timeout: 240 seconds] 16:04:53 -!- nicolae- has joined ##crawl-dev 16:05:19 <|amethyst> hm 16:06:00 <|amethyst> just restarted the inotify daemon in case that's it 16:06:05 <|amethyst> oh 16:06:09 <|amethyst> you mean in the scores? 16:06:32 Unlinked item report by golthoon 16:11:54 -!- KurzedMetal has quit [Ping timeout: 240 seconds] 16:13:13 -!- eb has joined ##crawl-dev 16:13:55 -!- PleasingFungus has joined ##crawl-dev 16:16:04 -!- Patashu has quit [Disconnected by services] 16:16:04 -!- Patashu_ has joined ##crawl-dev 16:17:07 is it a bug that draconians do not keep their innate skin colour trait while in other forms, but still get affected by cold? 16:17:56 !bug 8496 16:17:56 https://crawl.develz.org/mantis/view.php?id=8496 16:18:00 ^ it's that bug 16:18:30 okay. 16:18:43 ??is this a bug[$ 16:18:44 is this a bug[2/2]: pfft, it's not a bug unless we admit it by fixing it 16:18:57 -!- Hambone has quit [Quit: Page closed] 16:21:47 03reaverb02 07* 0.15-a0-894-g95380fa: Rename percent_chance() decimal_chance() (|amethyst) 10(5 minutes ago, 4 files, 4+ 4-) 13http://s-z.org/neil/git/?p=crawl.git;a=commitdiff;h=95380fa57b86 16:21:56 -!- dRbiG has quit [Ping timeout: 252 seconds] 16:25:43 -!- Patashu_ has quit [Ping timeout: 276 seconds] 16:26:20 oh crap 16:26:21 oops 16:26:29 pl freature request: let curing remove status effects like it does with VS 16:30:40 03wheals02 07[weightless] * 0.15-a0-895-gd77aa5a: Don't give red draconians two fire breath abilites (#8323). 10(6 minutes ago, 1 file, 4+ 4-) 13http://s-z.org/neil/git/?p=crawl.git;a=commitdiff;h=d77aa5ac5687 16:30:44 -!- reaverb has joined ##crawl-dev 16:30:44 Lightli: Ha, that doesn't work? (I think I know why, I don't want to change it because File200 is still working on them) 16:30:44 -!- Bcadren_ has quit [Ping timeout: 264 seconds] 16:30:44 So how do Pl play? 16:30:44 i forgot i was on weightless and pushed a (trunk) bug fix commit 16:30:44 what should i do 16:30:44 wheals: Cherrypick it to Trunk. 16:30:44 -!- LarsH has quit [Ping timeout: 252 seconds] 16:30:44 that works, i guess :) 16:30:44 merge/rebase will handle it automatically if you leave it in weightless, or you could revert it. 16:30:44 ah, ok, good 16:30:44 (Which is the point of using SHAs instead of numbers) 16:30:44 -!- Cheibriados has quit [Ping timeout: 240 seconds] 16:32:11 -!- Cheibriados has joined ##crawl-dev 16:32:11 -!- The topic of ##crawl-dev is: Crawl Development | Logs: http://s-z.org/crawl-dev/ | People with +v have commit access. | Please keep general Crawl-related chit-chat to ##crawl. | Dev wiki: http://crawl.develz.org/wiki | Long stuff to pastebin.ca please | Immortal Warwalrus and Crazy Yiuf forever. 16:32:11 -!- The topic of ##crawl is: Check out new European server at ??clan! | Play Crawl online now: type ??cao, ??cdo, ??cszo, ??clan, or ??webtiles for instructions | http://crawl.develz.org | FooTV: termcast.develz.org | ##crawl-offtopic: You got your gender in my peanut butter! Xom thinks this is hilarious. 16:32:18 -!- palacebeast has quit [Ping timeout: 240 seconds] 16:33:23 -!- blockh34d has quit [Read error: Connection reset by peer] 16:33:24 also they don't heal at all from curing and heal wounds, even though the mutation screen says they should get at least half benefit 16:34:55 Lightli: Hmm, yes, there's some oddities in the plutonian code. 16:35:39 yeah 16:35:50 Lightli: Those are all things which can easily be fixed though :D. How do they play differantly from other species? 16:35:56 Did you use Overload? 16:35:59 not yet 16:36:05 -!- PleasingFungus has quit [Ping timeout: 255 seconds] 16:36:24 it's like Mu having no hunger except there's incentive to still keep diving deeper 16:36:57 -!- AtomikKrab has quit [Read error: Connection reset by peer] 16:37:06 ??mr 16:37:07 magic resistance[1/5]: Magic resistance is your or a monster's ability to ignore hostile enchantments or some other magic. Player MR comes from XL, Trog's Hand, and items. The most important hostile monster enchantments are confuse, slow, deep elf sorcerer/wizard/ogre mage/Erolcha/Louise banishment, lich/orc sorcerer/great orb of eyes/sphinx paralysis. 16:37:21 Lightli: That's a good thing. I imagine adding heal wounds and curing back would differantate them from mummies a bit more. 16:37:30 yeah 16:37:50 Seems like you're running a lot of big spells. How much of a problem has handling contam been 16:38:03 I haven't had meltdown once 16:38:18 A few times i was even able to have the contam disappear completely 16:39:05 -!- Fhqwhgads_ has quit [Ping timeout: 265 seconds] 16:39:07 -!- Fhqwhgads__ is now known as Fhqwhgads_ 16:39:36 -!- MgDark has quit [Quit: ChatZilla 0.9.90.1 [Firefox 27.0/20131216183647]] 16:39:36 Lightli: Hmm, yes moving the safe level down was suggested by File200. I thought it might be good to try it as-is once, apparenlty that didn't really work. 16:41:56 one thing I noticed is how Pl is disincentived from using Haste 16:43:28 -!- Quashie has quit [Ping timeout: 240 seconds] 16:43:59 -!- PleasingFungus has joined ##crawl-dev 16:46:52 -!- reaverb has quit [Ping timeout: 258 seconds] 16:48:24 -!- Kellhus has quit [Quit: Page closed] 16:48:36 -!- Stendarr has quit [Quit: KVIrc 4.2.0 Equilibrium http://www.kvirc.net/] 16:51:31 -!- home has quit [Changing host] 16:52:29 -!- nicolae- has quit [Ping timeout: 264 seconds] 16:52:54 -!- nicolae- has joined ##crawl-dev 16:54:18 -!- notcluie has quit [Ping timeout: 240 seconds] 16:54:49 -!- ais523_ has quit [Quit: Page closed] 16:56:18 -!- Moonsilence has quit [Ping timeout: 240 seconds] 16:57:06 I mean, the core concept is definitely good 16:59:03 -!- Tux[Qyou] has quit [Read error: Connection reset by peer] 17:00:17 -!- Fizybubbleh has quit [Quit: http://www.kiwiirc.com/ - A hand crafted IRC client] 17:11:29 -!- eb has quit [] 17:13:43 -!- rast has quit [*.net *.split] 17:13:43 -!- fufumann has quit [*.net *.split] 17:13:43 -!- caleba has quit [*.net *.split] 17:13:43 -!- BlackrayJack has quit [*.net *.split] 17:13:43 -!- CKyle has quit [*.net *.split] 17:13:43 -!- predator217 has quit [*.net *.split] 17:13:43 -!- vede has quit [*.net *.split] 17:13:43 -!- alefury has quit [*.net *.split] 17:13:43 -!- ChanServ has quit [*.net *.split] 17:13:43 -!- Elsi has quit [*.net *.split] 17:13:43 -!- Bcadren_ has quit [*.net *.split] 17:13:43 -!- omnirizon has quit [*.net *.split] 17:13:43 -!- johlstei_ has quit [*.net *.split] 17:13:43 -!- us17 has quit [*.net *.split] 17:13:43 -!- HellTiger_NB has quit [*.net *.split] 17:13:44 -!- tensorpudding has quit [*.net *.split] 17:13:44 -!- Makrond|Dead has quit [*.net *.split] 17:13:44 -!- crate has quit [*.net *.split] 17:13:44 -!- fooobarrr has quit [*.net *.split] 17:13:44 -!- netkitten has quit [*.net *.split] 17:13:44 -!- neunon has quit [*.net *.split] 17:13:44 -!- Fortescue has quit [*.net *.split] 17:13:44 -!- codehero has quit [*.net *.split] 17:13:44 -!- cdepatie has quit [*.net *.split] 17:13:44 -!- Deathawk has quit [*.net *.split] 17:13:44 -!- jbenedetto has quit [*.net *.split] 17:13:44 -!- mee has quit [*.net *.split] 17:13:44 -!- djanatyn has quit [*.net *.split] 17:13:45 -!- PleasingFungus has quit [*.net *.split] 17:13:45 -!- Eonwe1 has quit [*.net *.split] 17:13:45 -!- LarsH_ has quit [*.net *.split] 17:13:45 -!- oxens has quit [*.net *.split] 17:13:45 -!- Eracar has quit [*.net *.split] 17:13:45 -!- omnirizo1 has quit [*.net *.split] 17:13:45 -!- rchandra has quit [*.net *.split] 17:13:45 -!- Daekdroom has quit [*.net *.split] 17:13:45 -!- HellTiger has quit [*.net *.split] 17:13:45 -!- Zermako has quit [*.net *.split] 17:13:45 -!- Adder_ has quit [*.net *.split] 17:13:45 -!- Xiberia has quit [*.net *.split] 17:13:45 -!- Vizer has quit [*.net *.split] 17:13:45 -!- Kaput has quit [*.net *.split] 17:13:45 -!- Eronarn has quit [*.net *.split] 17:13:45 -!- iFurril has quit [*.net *.split] 17:13:45 -!- flowsnake has quit [*.net *.split] 17:13:45 -!- hhkb has quit [*.net *.split] 17:13:45 -!- tbuck has quit [*.net *.split] 17:13:45 -!- ekix has quit [*.net *.split] 17:13:45 -!- Moredrea1 has quit [*.net *.split] 17:13:45 -!- broquaint has quit [*.net *.split] 17:13:45 -!- squimmy has quit [*.net *.split] 17:13:45 -!- rossi has quit [*.net *.split] 17:13:45 -!- bmfx has quit [*.net *.split] 17:13:46 -!- ldierk has quit [*.net *.split] 17:13:46 -!- the_glow has quit [*.net *.split] 17:13:46 -!- horsik has quit [*.net *.split] 17:13:46 -!- Gobbo has quit [*.net *.split] 17:13:46 -!- EriktheRed has quit [*.net *.split] 17:13:46 -!- buki has quit [*.net *.split] 17:13:46 -!- johnstein has quit [*.net *.split] 17:13:46 -!- Lantell has quit [*.net *.split] 17:13:46 -!- Grunt has quit [*.net *.split] 17:13:46 -!- Napkin has quit [*.net *.split] 17:13:46 -!- Adeon has quit [*.net *.split] 17:13:46 -!- tupper has quit [*.net *.split] 17:13:46 -!- Gretell has quit [*.net *.split] 17:13:46 -!- ToBeFree has quit [*.net *.split] 17:13:47 -!- phyphor has quit [*.net *.split] 17:13:47 -!- palacebeast has quit [*.net *.split] 17:13:47 -!- Bron has quit [*.net *.split] 17:13:47 -!- robertk has quit [*.net *.split] 17:13:47 -!- Moanerette has quit [*.net *.split] 17:13:47 -!- Frank2368 has quit [*.net *.split] 17:13:47 -!- crispkringle has quit [*.net *.split] 17:13:47 -!- kekekela has quit [*.net *.split] 17:13:47 -!- HDA_ has quit [*.net *.split] 17:13:47 -!- HDA has quit [*.net *.split] 17:13:47 -!- Spatzist has quit [*.net *.split] 17:13:47 -!- Yermak has quit [*.net *.split] 17:13:47 -!- zeia has quit [*.net *.split] 17:13:47 -!- Ankalagon has quit [*.net *.split] 17:13:47 -!- drachereborn has quit [*.net *.split] 17:13:47 -!- Quazifuji has quit [*.net *.split] 17:13:47 -!- Lightli has quit [*.net *.split] 17:13:47 -!- fearitself has quit [*.net *.split] 17:13:47 -!- N78291 has quit [*.net *.split] 17:13:47 -!- edlothiol has quit [*.net *.split] 17:13:47 -!- Rjs has quit [*.net *.split] 17:13:47 -!- nicolae- has quit [*.net *.split] 17:13:47 -!- Fhqwhgads_ has quit [*.net *.split] 17:13:47 -!- AtomikKrab has quit [*.net *.split] 17:13:47 -!- raskol has quit [*.net *.split] 17:13:47 -!- tw_ has quit [*.net *.split] 17:13:47 -!- Annabella has quit [*.net *.split] 17:13:47 -!- denstark has quit [*.net *.split] 17:13:47 -!- MakMorn has quit [*.net *.split] 17:13:48 -!- odiv has quit [*.net *.split] 17:13:48 -!- PsyMar has quit [*.net *.split] 17:13:48 -!- Lasty has quit [*.net *.split] 17:13:48 -!- kunwon1 has quit [*.net *.split] 17:13:48 -!- varmin has quit [*.net *.split] 17:13:48 -!- namad8 has quit [*.net *.split] 17:13:48 -!- Guest15880 has quit [*.net *.split] 17:13:48 -!- paxed has quit [*.net *.split] 17:13:48 -!- yokelz has quit [*.net *.split] 17:13:48 -!- zkyp has quit [*.net *.split] 17:13:48 -!- Henzell has quit [*.net *.split] 17:13:48 -!- Keanan has quit [*.net *.split] 17:13:48 -!- Basil has quit [*.net *.split] 17:13:48 -!- minqmay has quit [*.net *.split] 17:13:48 -!- gammafunk has quit [*.net *.split] 17:13:48 -!- debo has quit [*.net *.split] 17:13:48 -!- Medar has quit [*.net *.split] 17:13:48 -!- edilaic has quit [*.net *.split] 17:13:48 -!- asema has quit [*.net *.split] 17:13:48 -!- Mister_Fox has quit [*.net *.split] 17:13:48 -!- ZombieChicken has quit [*.net *.split] 17:13:48 -!- Schwer-Muta has quit [*.net *.split] 17:13:48 -!- _miek has quit [*.net *.split] 17:13:49 -!- ldlework has quit [*.net *.split] 17:13:49 -!- Chousuke_ has quit [*.net *.split] 17:13:49 -!- aparent_ has quit [*.net *.split] 17:13:49 -!- Kvaak has quit [*.net *.split] 17:13:49 -!- yxhuvud has quit [*.net *.split] 17:13:49 -!- Azzkikr has quit [*.net *.split] 17:13:49 -!- KurzedMetal has quit [*.net *.split] 17:13:49 -!- Watball has quit [*.net *.split] 17:13:49 -!- ontoclasm has quit [*.net *.split] 17:13:49 -!- scummos| has quit [*.net *.split] 17:13:49 -!- fungee has quit [*.net *.split] 17:13:49 -!- Ququman has quit [*.net *.split] 17:13:49 -!- jeffro has quit [*.net *.split] 17:13:49 -!- Yllodra has quit [*.net *.split] 17:13:49 -!- planet_ has quit [*.net *.split] 17:13:49 -!- OCTOTROG has quit [*.net *.split] 17:13:49 -!- cptwinky has quit [*.net *.split] 17:13:49 -!- floatingatoll has quit [*.net *.split] 17:13:50 -!- Sizzell has quit [*.net *.split] 17:13:50 -!- |amethyst has quit [*.net *.split] 17:13:50 -!- yuastnav has quit [*.net *.split] 17:13:50 -!- Goncyn has quit [*.net *.split] 17:13:50 -!- herself has quit [*.net *.split] 17:13:50 -!- Xjs|moonshine has quit [*.net *.split] 17:13:50 -!- Lprsti99___ has quit [*.net *.split] 17:13:50 -!- SamB has quit [*.net *.split] 17:13:50 -!- johnny0 has quit [*.net *.split] 17:13:51 -!- G-Flex has quit [*.net *.split] 17:13:51 -!- nimtz has quit [*.net *.split] 17:13:51 -!- fiyawerx has quit [*.net *.split] 17:13:51 -!- unpaidbill has quit [*.net *.split] 17:13:51 -!- Ragnor has quit [*.net *.split] 17:13:51 -!- luukano has quit [*.net *.split] 17:13:51 -!- Keskitalo has quit [*.net *.split] 17:13:51 -!- tholmes has quit [*.net *.split] 17:13:51 -!- bhaak has quit [*.net *.split] 17:13:51 -!- Mattias has quit [*.net *.split] 17:13:51 -!- elliptic has quit [*.net *.split] 17:13:51 -!- UncertainKitten has quit [*.net *.split] 17:13:52 -!- tcsc has quit [*.net *.split] 17:13:52 -!- Lasty1 has quit [*.net *.split] 17:13:52 -!- Bloax has quit [*.net *.split] 17:13:52 -!- Rotatell has quit [*.net *.split] 17:13:52 -!- Senjai has quit [*.net *.split] 17:13:52 -!- jameyd has quit [*.net *.split] 17:13:52 -!- Wah has quit [*.net *.split] 17:13:52 -!- CampinSam has quit [*.net *.split] 17:13:52 -!- Kintak has quit [*.net *.split] 17:13:52 -!- bencryption has quit [*.net *.split] 17:13:52 -!- RiotInferno has quit [*.net *.split] 17:13:52 -!- Notipsum has quit [*.net *.split] 17:13:52 -!- Perryman has quit [*.net *.split] 17:13:52 -!- pythonsnake has quit [*.net *.split] 17:13:52 -!- rax has quit [*.net *.split] 17:19:50 -!- eb_ has joined ##crawl-dev 17:19:50 -!- reaverb has joined ##crawl-dev 17:19:50 -!- nicolae- has joined ##crawl-dev 17:19:50 -!- PleasingFungus has joined ##crawl-dev 17:19:50 -!- rast has joined ##crawl-dev 17:19:50 -!- elliptic has joined ##crawl-dev 17:19:50 -!- Keanan has joined ##crawl-dev 17:19:50 -!- rchandra has joined ##crawl-dev 17:19:50 -!- Basil has joined ##crawl-dev 17:19:50 -!- johlstei_ has joined ##crawl-dev 17:19:50 -!- UncertainKitten has joined ##crawl-dev 17:19:50 -!- HDA has joined ##crawl-dev 17:19:50 -!- ontoclasm has joined ##crawl-dev 17:19:50 -!- Lasty1 has joined ##crawl-dev 17:19:50 -!- CKyle has joined ##crawl-dev 17:19:50 -!- Ququman has joined ##crawl-dev 17:19:50 -!- Bloax has joined ##crawl-dev 17:19:50 -!- gammafunk has joined ##crawl-dev 17:19:50 -!- drachereborn has joined ##crawl-dev 17:19:50 -!- edlothiol has joined ##crawl-dev 17:19:50 -!- alefury has joined ##crawl-dev 17:19:50 -!- Rotatell has joined ##crawl-dev 17:19:50 -!- jeffro has joined ##crawl-dev 17:19:50 -!- Lightli has joined ##crawl-dev 17:19:50 -!- debo has joined ##crawl-dev 17:19:50 -!- ldierk has joined ##crawl-dev 17:19:50 -!- Medar has joined ##crawl-dev 17:19:50 -!- Eronarn has joined ##crawl-dev 17:19:50 -!- MakMorn has joined ##crawl-dev 17:19:50 -!- neunon has joined ##crawl-dev 17:19:50 -!- flowsnake has joined ##crawl-dev 17:19:50 -!- SamB has joined ##crawl-dev 17:19:50 -!- Fortescue has joined ##crawl-dev 17:19:50 -!- johnny0 has joined ##crawl-dev 17:19:50 -!- Lasty has joined ##crawl-dev 17:19:50 -!- kunwon1 has joined ##crawl-dev 17:19:50 -!- hhkb has joined ##crawl-dev 17:19:50 -!- varmin has joined ##crawl-dev 17:19:50 -!- Guest15880 has joined ##crawl-dev 17:19:50 -!- Elsi has joined ##crawl-dev 17:19:50 -!- G-Flex has joined ##crawl-dev 17:19:50 -!- Chousuke_ has joined ##crawl-dev 17:19:50 -!- floatingatoll has joined ##crawl-dev 17:19:50 -!- Kvaak has joined ##crawl-dev 17:19:50 -!- Sizzell has joined ##crawl-dev 17:19:50 -!- |amethyst has joined ##crawl-dev 17:19:50 -!- johnstein has joined ##crawl-dev 17:19:50 -!- Lantell has joined ##crawl-dev 17:19:50 -!- Henzell has joined ##crawl-dev 17:19:50 -!- Grunt has joined ##crawl-dev 17:19:50 -!- Napkin has joined ##crawl-dev 17:19:50 -!- Adeon has joined ##crawl-dev 17:19:50 -!- broquaint has joined ##crawl-dev 17:19:50 -!- ToBeFree has joined ##crawl-dev 17:19:50 -!- Gretell has joined ##crawl-dev 17:19:50 -!- Mattias has joined ##crawl-dev 17:19:50 -!- bhaak has joined ##crawl-dev 17:19:50 -!- rax has joined ##crawl-dev 17:19:50 -!- Keskitalo has joined ##crawl-dev 17:20:14 oh, so that's why it was so quiet in here 17:20:15 Any flavour texts on them [plutonians] yet? 17:20:16 post net-unsplit repost 17:20:16 -!- BlastHardcheese has quit [Max SendQ exceeded] 17:20:17 -!- myp has quit [Write error: Broken pipe] 17:20:21 -!- ChongLi has quit [Write error: Broken pipe] 17:20:44 -!- BlastHardcheese has joined ##crawl-dev 17:20:46 -!- wHATEver is now known as Guest55294 17:22:26 greater naga (13N) | Spd: 10 (move: 140%) | HD: 15 | HP: 67-102 | AC/EV: 6/10 | Dam: 27, 703(constrict) | 10weapons, 10items, 10doors, fighter, spellcaster, see invisible | Res: 13magic(immune), 03poison | Chunks: 09poison | XP: 1815 | Sp: b.venom (3d19), mystic blast (3d19), haste, poison arrow (3d22), teleport other, 04esc:teleport self | Sz: Large | Int: high. 17:22:26 %??greater naga 17:23:29 naga warrior (02N) | Spd: 10 (move: 140%) | HD: 10 | HP: 93-108 | AC/EV: 6/10 | Dam: 28, 603(constrict) | 10weapons, 10items, 10doors, fighter, see invisible, !sil | Res: 06magic(80), 03poison | Chunks: 09poison | XP: 977 | Sp: spit poison (d16) | Sz: Large | Int: normal. 17:23:29 %??naga warrior 17:24:23 can they please not be crazy radiation people 17:24:49 you mean weird sky blue crystal people? 17:25:02 -!- Bron has quit [Quit: Page closed] 17:25:11 sky blue crystal radiation people 17:25:20 well, radiation is magic, so clearly they just like magic way too much 17:25:23 or perhaps you were thinking green people with an aura 17:25:32 -!- johlstei has joined ##crawl-dev 17:25:32 nom nom nom. gotta eat all this magic. I love magic!!!!! 17:25:45 they could be some sort of fey 17:25:52 Fair Folk 17:26:02 fair folk, known for occasionally exploding 17:26:15 they sort of are 17:26:27 -!- reaverb has quit [Ping timeout: 265 seconds] 17:26:28 i mean, they don't explode 17:26:40 they don't? 17:26:46 I guess I'm out of date 17:26:49 http://static.comicvine.com/uploads/original/12/123441/3079965-doomguy+comic+10.jpg a man made of radiation 17:26:50 but there are lots of versions of fair folk where they'r ereckless with magic and cause bizarre things 17:27:01 oh you meant the fey don't explode 17:27:02 no, plutonians do, fair folk generally don't 17:27:19 but it's not -that- much of a strecth 17:27:29 ~ 17:27:46 Bloax: I was thinking the Plutonian Experiment 17:28:09 -!- johlstei has quit [Client Quit] 17:28:23 -!- DrinkMachine has joined ##crawl-dev 17:28:23 -!- johlstei_ has quit [Ping timeout: 265 seconds] 17:28:56 Bloax: so, you're saying they should be sludge dwarves 17:29:00 -!- BlastHardcheese has quit [Read error: No route to host] 17:29:09 -!- BlastHardcheese has joined ##crawl-dev 17:29:15 PleasingFungus: does doomguy look like a dwarf to you 17:29:22 very tall dwarf 17:33:26 God description revamp by PleasingFungus 17:43:33 -!- Thrkk has quit [Quit: Page closed] 17:43:58 one thing of note 17:46:42 -!- Frank2368 has quit [Quit: Page closed] 17:46:44 -!- surprisetrex has quit [Ping timeout: 255 seconds] 17:50:15 -!- johlstei has joined ##crawl-dev 17:50:48 -!- johlstei has quit [Client Quit] 17:51:18 -!- HDA_ has quit [Ping timeout: 240 seconds] 17:52:55 -!- reaverb has joined ##crawl-dev 17:53:12 -!- Keanan has quit [Quit: Leaving.] 17:53:18 -!- HDA has quit [Ping timeout: 240 seconds] 17:54:00 -!- Antem has quit [Quit: Page closed] 17:54:54 -!- nicolae- has quit [Ping timeout: 240 seconds] 17:55:39 -!- nicolae- has joined ##crawl-dev 17:55:48 -!- ungratefuldead has quit [Ping timeout: 240 seconds] 17:56:39 !learn s plutonians A new experimental species. Gets contam instead of hunger but loses contam on killing things. Their MP and HP regeneration faster the higher their contam is. 17:56:40 plutonians[1/1]: A new experimental species. Gets contam instead of hunger but loses contam on killing things. Their MP and HP regeneration faster the higher their contam is. 17:57:04 plutonians could be some kind of genie. 17:57:11 !learn add plutonians[2] Instead of mutating at high contam, they get an extra large explosion. 17:57:11 plutonians[2/2]: Instead of mutating at high contam, they get an extra large explosion. 17:57:22 ??Plutonian 17:57:22 Plutonian ~ plutonians[1/2]: A new experimental species. Gets contam instead of hunger but loses contam on killing things. Their MP and HP regeneration faster the higher their contam is. 17:57:33 !learn mv plutonians plutonian 17:57:33 plutonians -> plutonian[1/2]: A new experimental species. Gets contam instead of hunger but loses contam on killing things. Their MP and HP regeneration faster the higher their contam is. 17:57:34 wheals: That might fit the flavor better, but at this point I want to iron out the mechanics first. 17:57:38 ??spriggan 17:57:39 spriggan[1/4]: Spriggans move two-thirds faster than most and have seven magic resistance per level (not three), but can't wear most armour and have the second-lowest natural HP of any race. They have bad aptitudes for melee skills (except short blades), but have enormous EV and are good at stealth, stabbing and related magics. 17:57:45 !learn e plutonian[1 s/faster/is faster 17:57:46 plutonian[1/2]: A new experimental species. Gets contam instead of hunger but loses contam on killing things. Their MP and HP regeneration is faster the higher their contam is. 17:58:09 !learn edit plutonians[1] s/HP regeneration/HP regeneration get 17:58:10 I don't have a page labeled plutonians[1] in my learndb. 17:58:11 Pleasingfungus: Thank you for your editing. 17:58:14 !learn edit plutonian[1] s/HP regeneration/HP regeneration get 17:58:15 plutonian[1/2]: A new experimental species. Gets contam instead of hunger but loses contam on killing things. Their MP and HP regeneration get is faster the higher their contam is. 17:58:15 np 17:58:23 oh god damn it 17:58:24 Ha. 17:58:25 haha 17:58:27 rip 17:58:44 !learn edit plutonian[1] s/HP regeneration get/HP regeneration/ 17:58:45 plutonian[1/2]: A new experimental species. Gets contam instead of hunger but loses contam on killing things. Their MP and HP regeneration is faster the higher their contam is. 17:58:58 Oh, well that is should be "are" 17:59:03 yes 17:59:12 !learn edit plutonian s/is/are/ 17:59:12 Use: !learn edit plutonian[NUM] s/// 17:59:24 !learn edit plutonian[1] s/is/are/ 17:59:24 plutonian[1/2]: A new experimental species. Gets contam instead of hunger but loses contam on killing things. Their MP and HP regeneration are faster the higher their contam is. 17:59:37 ??plutonian 17:59:37 plutonian[1/2]: A new experimental species. Gets contam instead of hunger but loses contam on killing things. Their MP and HP regeneration are faster the higher their contam is. 17:59:43 ??plutonian[2 17:59:43 plutonian[2/2]: Instead of mutating at high contam, they get an extra large explosion. 18:00:59 -!- Kar has quit [Quit: Page closed] 18:01:33 -!- Keanan has joined ##crawl-dev 18:02:05 -!- nooodl has quit [Ping timeout: 264 seconds] 18:03:13 -!- Bcadren_ has quit [Ping timeout: 265 seconds] 18:04:09 -!- mee has quit [Ping timeout: 265 seconds] 18:05:20 -!- mee is now known as Guest77917 18:05:20 -!- scummos| has quit [Quit: Konversation terminated!] 18:07:27 -!- Ququman has quit [Read error: Connection reset by peer] 18:07:42 -!- Ququman has joined ##crawl-dev 18:10:08 you know what's quality 18:10:23 dying to adders because curing doesn't cure your poison 18:13:02 -!- Guest77917 is now known as mee 18:13:07 ? 18:13:29 re: plutonians 18:13:31 o 18:14:25 -!- rast has quit [Ping timeout: 252 seconds] 18:14:48 -!- robertk has quit [Ping timeout: 240 seconds] 18:15:16 -!- reaverb has quit [Ping timeout: 265 seconds] 18:17:40 -!- rast has joined ##crawl-dev 18:17:44 -!- rast- has quit [Ping timeout: 252 seconds] 18:17:49 -!- simmarine has quit [Read error: Connection reset by peer] 18:18:11 -!- simmarine has joined ##crawl-dev 18:18:49 -!- rast-- has quit [Ping timeout: 252 seconds] 18:21:45 -!- SomeoneAwful has quit [Quit: Leaving] 18:22:00 -!- Keanan has quit [Quit: Leaving.] 18:23:05 -!- ystael has quit [Ping timeout: 258 seconds] 18:24:33 -!- DrinkMachine has quit [Quit: Leaving] 18:24:54 -!- Guest15880 has quit [Ping timeout: 240 seconds] 18:25:27 -!- reaverb has joined ##crawl-dev 18:25:42 Chantix (L24 DsMo) ASSERT(!cell_is_solid(p)) in 'cloud.cc' at line 171 failed. (Abyss:3) 18:25:52 -!- hypermatt has joined ##crawl-dev 18:26:16 -!- hypermatt is now known as Guest26764 18:27:16 -!- Eracar has quit [Ping timeout: 276 seconds] 18:27:21 -!- edlothiol has quit [Ping timeout: 252 seconds] 18:28:08 -!- Moanerette has quit [Quit: Page closed] 18:28:09 -!- lobf has joined ##crawl-dev 18:29:13 -!- scummos^ has quit [Ping timeout: 276 seconds] 18:30:34 -!- Fhqwhgads_ has quit [Ping timeout: 240 seconds] 18:30:40 -!- Fhqwhgads__ is now known as Fhqwhgads_ 18:35:39 -!- Yermak has quit [Quit: Page closed] 18:35:52 uh 18:35:54 bigger problem 18:36:03 -!- predator217 has quit [Ping timeout: 252 seconds] 18:36:15 the incapabilty for heal wounds or curing to do anything also means you can't get rid of rot from meltdown 18:37:17 Lightli: I'm completley removing the no device heal thing. 18:37:26 Right now, since File200 just signed off on it on the Tavern. 18:37:30 oh 18:37:33 that's good then 18:37:35 The I'll rebuild the experimental. 18:37:43 will they still reduce contam? 18:37:48 Lightli: Yes. 18:37:54 great 18:38:39 -!- WalkerBoh has quit [Remote host closed the connection] 18:39:04 now to not play until that happens so I can then use my heal wounds wand to remove all the damage 18:39:10 (also meltdown is kind of ridiculous) 18:39:30 ridiculous in what way? 18:40:25 it's ridiculous in a good way 18:40:33 a massive screen covering explosion is cool 18:40:35 Lightli: So it just does a ton of damage? 18:40:44 (Yes I like that and the Overload ability 18:40:54 which is the same thing except less damage? Not sure. 18:41:15 -!- home has quit [Read error: Connection reset by peer] 18:41:40 overload is I believe less damage, not AOE covering, and activatable 18:41:48 meltdown is when contam gets too high 18:43:24 Hmm, does changing apts need a minor tag? 18:43:41 (Does anybody know the last aptitude change? Don't want to break pluto saves) 18:46:36 Gr? 18:46:50 +3/-3 earth and air->+2/-2 18:47:29 Basil: Thanks, no minor tag needed. 18:47:53 -!- rchandra has left ##crawl-dev 18:48:12 -!- drachereborn has quit [Quit: Page closed] 18:50:36 how come gr is getting only +2 earth 18:51:22 got 18:51:24 -!- Keanan has joined ##crawl-dev 18:51:57 oh 18:51:59 ok 18:52:35 ...wait, safe level 2 means meltdowns abound at light red, right? 18:52:43 ...uh oh 18:54:03 03wheals02 07* 0.15-a0-896-gddce047: Make cold-bloodedness go away in transformations (#8496). 10(4 minutes ago, 5 files, 21+ 10-) 13http://s-z.org/neil/git/?p=crawl.git;a=commitdiff;h=ddce04797bb7 18:54:17 Lightli: Yeah. 18:54:20 Heh. 18:54:23 uh oh 18:54:41 thank god I have a wand of heal wounds 18:55:08 but yeah, as it stands Plutonians do something even spriggans don't quite manage to pull off 18:55:15 They make you actually care about spell hunger 18:55:52 -!- omnirizon has quit [Ping timeout: 265 seconds] 18:55:52 -!- omnirizo1 has quit [Ping timeout: 276 seconds] 18:56:15 (... are they somehow related to djinn?) 18:56:30 spell hunger = contam 18:56:52 Yes, they share that mechanic. Not sure if File200 took inpiration from them. 18:57:01 but since contam goes up rather than down over time, and since contam is harder to get rid of than hunger... 18:58:52 Lightli: Let me see what I can do about wiping extremely large contam amounts on load. 19:00:18 -!- tabstorm has quit [Ping timeout: 240 seconds] 19:02:45 -!- crispkringle has quit [Quit: Page closed] 19:02:52 -!- Keanan has quit [Quit: Leaving.] 19:03:18 -!- conted has quit [Ping timeout: 240 seconds] 19:08:40 -!- Snuva is now known as Surr 19:09:18 03MarvinPA02 07* 0.15-a0-897-g19692ce: Ignore gold from transferred saves when calculating Gozag's fee (#8567) 10(36 minutes ago, 1 file, 0+ 42-) 13http://s-z.org/neil/git/?p=crawl.git;a=commitdiff;h=19692ce2669c 19:12:13 -!- caleba has quit [Quit: caleba] 19:15:49 Lightli: Sorry, I got a crash when trying to remove excess contam and I can't really justify debugging that for one or two saves, good luck! 19:16:13 -!- Ahrin has quit [] 19:18:13 -!- KurzedMetal has quit [Ping timeout: 252 seconds] 19:18:18 -!- KurzedMetal1 is now known as KurzedMetal 19:20:39 -!- johlstei has joined ##crawl-dev 19:23:57 %git :/new species 19:23:58 07Grunt02 * 0.14-a0-2948-g7514cc0: Update a couple of vaults for new species and minor issues. 10(3 months ago, 6 files, 26+ 13-) 13http://s-z.org/neil/git/?p=crawl.git;a=commitdiff;h=7514cc06760e 19:24:05 %git :/new 19:24:05 07wheals02 * 0.15-a0-896-gddce047: Make cold-bloodedness go away in transformations (#8496). 10(34 minutes ago, 5 files, 21+ 10-) 13http://s-z.org/neil/git/?p=crawl.git;a=commitdiff;h=ddce04797bb7 19:24:13 %git :/new sp 19:24:13 07DracoOmega02 * 0.14-a0-3395-g5871f7d: Spice up Josephine 10(9 weeks ago, 2 files, 15+ 4-) 13http://s-z.org/neil/git/?p=crawl.git;a=commitdiff;h=5871f7d3d396 19:24:23 %git :/Pluto 19:24:23 07File26b02 {reaverb} * 0.15-a0-882-g24d5453: New species: Plutonians 10(2 days ago, 14 files, 247+ 40-) 13http://s-z.org/neil/git/?p=crawl.git;a=commitdiff;h=24d5453f8f84 19:25:49 03reaverb02 07[plutonians] * 0.15-a0-883-g8dfb77a: Reduce the contamination of overload from 3000 to 1000 (File200) 10(41 minutes ago, 1 file, 5+ 5-) 13http://s-z.org/neil/git/?p=crawl.git;a=commitdiff;h=8dfb77a188b4 19:25:49 03reaverb02 07[plutonians] * 0.15-a0-884-gf5bb153: Change plutonian necromancy apt to -1 (File200) 10(38 minutes ago, 1 file, 1+ 1-) 13http://s-z.org/neil/git/?p=crawl.git;a=commitdiff;h=f5bb1537c51d 19:25:49 03reaverb02 07[plutonians] * 0.15-a0-885-g461a94a: Remove Plutonian healing oddities (Lightli, File200) 10(9 minutes ago, 4 files, 21+ 20-) 13http://s-z.org/neil/git/?p=crawl.git;a=commitdiff;h=461a94a35905 19:25:49 03reaverb02 07[plutonians] * 0.15-a0-886-g6a6afdc: Make it easier for Plutonians to Overload 10(8 minutes ago, 1 file, 1+ 1-) 13http://s-z.org/neil/git/?p=crawl.git;a=commitdiff;h=6a6afdc5c49e 19:27:21 %git :/Draco 19:27:22 07Grunt02 * 0.14-a0-3578-gdd85812: Don't treat storm clouds as harmless for many purposes (DracoOmega). 10(7 weeks ago, 1 file, 10+ 1-) 13http://s-z.org/neil/git/?p=crawl.git;a=commitdiff;h=dd8581276a9a 19:27:35 !seen dracoomega 19:27:35 I last saw DracoOmega at Sat Mar 29 13:02:49 2014 UTC (7w 1d 11h 24m 46s ago) quitting, saying 'Quit: Leaving'. 19:29:24 -!- HellTiger has quit [Quit: KVIrc 4.2.0 Equilibrium http://www.kvirc.net/] 19:30:20 PleasingFungus: : ( 19:30:33 Lightli: How where Pl's power curve? 19:30:41 err, were 19:31:35 felt fine by my standards 19:31:54 -!- Zermako has quit [] 19:32:06 Lightli: As compared to Op, Hu, and Tr 19:32:11 which one was it closest to. 19:32:14 oh 19:32:19 probably Hu 19:32:43 Lightli: Hmm. 19:33:35 honestly, a bit closer to Tr than Hu 19:34:31 Heh, because regen? 19:34:51 Early game is fine thanks to increased regen, but later on contam starts becoming a big problem and the additional regen becomes less relevant 19:36:05 anyways, just waiting on the branch to update before I go back to playing 19:36:30 what if it was a regeneration multiplier (with an addition thrown in) instead of a plain addition 19:36:48 Bloax: that's been proposed for Troll regen too :D 19:37:00 and it seems like something which will happen eventually. 19:37:06 reaverb: well trolls don't need it 19:37:20 if anything VS and these are the only thing i can think of that could use something like that 19:37:26 Hmm. 19:37:36 and even then they get normal healing now too 19:37:49 but i haven't really gotten to play them so maybe they blow a lot of health on exploding 19:38:29 meltdown does take a good chunk of HP out 19:38:33 both in terms of damage and i nrot 19:40:23 File26b...or File200 19:40:29 now I'm confused 19:40:31 -!- alefury has quit [] 19:40:36 gammafunk: Another double nick person. 19:40:50 * Grunt files gammafunk away. 19:41:11 03reaverb02 07[plutonians] * 0.15-a0-887-g00e504d: Make Plutonian Meltdown always rot 4 hp (File200) 10(11 minutes ago, 1 file, 1+ 3-) 13http://s-z.org/neil/git/?p=crawl.git;a=commitdiff;h=00e504d3f4e7 19:41:11 03reaverb02 07[plutonians] * 0.15-a0-888-g8724508: Reduce starting Pl contam (File200) 10(10 minutes ago, 1 file, 1+ 1-) 13http://s-z.org/neil/git/?p=crawl.git;a=commitdiff;h=87245085b761 19:41:24 * gammafunk sets Grunts mass to 0 19:41:37 * Grunt pushes gammafunk. 19:42:03 just to check, at what contam does meltdown begin happening now? 19:42:20 (i.e. what number does it switch from yellow to light red?) 19:42:20 the level after yellow. 19:42:25 Oh, 5000 19:42:33 oh 19:42:42 -!- fufumann has quit [Quit: und weg...] 19:42:48 -!- ahahaha has quit [Ping timeout: 240 seconds] 19:42:53 I haven't rebuild yet, because apparenlty there's another bit of code which prevents plutonians from healing. 19:43:14 -!- HellTiger_NB has quit [Ping timeout: 265 seconds] 19:45:40 Hmm, it only effects old saves apparenlty. 19:46:18 oh dear 19:46:24 * Lightli sweatdrops 19:46:54 -!- nicolae- has quit [Ping timeout: 240 seconds] 19:47:30 -!- nicolae- has joined ##crawl-dev 19:47:54 !send nicolae- vaults 19:47:54 Sending vaults to nicolae-. 19:48:13 Hmm, it's also failing to give MUT_NO_DEVICE_HEAL to these old saves. 19:48:17 oh 19:48:31 Even though it's behaving like has them. 19:48:33 Grunt: that reminds me, I should put that temple map of mine on mantis 19:50:15 -!- Ququman has quit [Read error: Connection reset by peer] 19:55:01 -!- Arkaniad has quit [Remote host closed the connection] 19:59:02 green drac seems pretty sad now that yellow drac breath was buffed 19:59:17 how was yellow drac breath buffe-oh yeah corr changes 19:59:38 clearly give it pcloud breath 19:59:43 maybe green drac breath should be regular poison now? 19:59:46 s/give it/bring back/ 19:59:52 oh 19:59:55 hahaha 20:00:03 I bet that wasn't overpowered at all!!! 20:00:06 or clearly give it a cloud that is both mephetic and regular poison 20:00:21 so they wander around and then die from hitting themselves while poisoned 20:00:43 we're talking about player draconians, right? 20:00:52 yeah 20:01:11 enemy yellow dracs are no longer the most agonizing to deal with 20:01:11 %git b45f3dca 20:01:12 07N7829102 {due} * 0.8.0-a0-1967-gb45f3dc: Properly apply N78291's Draconian patch. 10(3 years, 7 months ago, 22 files, 226+ 89-) 13http://s-z.org/neil/git/?p=crawl.git;a=commitdiff;h=b45f3dca40ce 20:02:00 give green dracs pcloud breath but with black drac targeting 20:02:29 OTR breath 20:02:53 or venom cocktail breath 20:03:00 poison arrow cloud breath!!! 20:03:09 (no I have no idea how that would work) 20:03:20 (it would also be unbalanced beyond belief) 20:04:04 (imo make OTR parrow on impact) 20:06:13 OTR cone breath 20:06:46 dang, apparently minmay_river can spawn spectral krakens, and it's *still* never gotten a kill (with its spectral mons)? sad :( 20:06:56 spectral kraken (03Z) | Spd: 14 | HD: 16 | HP: 77-114 | AC/EV: 22/0 | Dam: 4613(drain) | 07undead, evil, see invisible, lev | Res: 13magic(immune), 02cold, 09poison+++, 12drown, 04rot+++, 13neg+++, 13torm, 04napalm | Vul: 08holy++ | XP: 1060 | Sz: Huge | Int: plant. 20:06:56 %??spectral kraken 20:07:01 how does that even work 20:07:02 well I dont see why a spectral kraken would ever kill anyone 20:07:10 well 20:07:14 https://www.youtube.com/watch?v=iIOHfGhpXq4 basically just this 20:07:16 it's more threatening than the spectral sharks 20:07:20 maybe give them the noxious cloud breath at xl 7 and upgrade it to actual poison at xl 14? 20:07:21 and the spectral big fish 20:07:29 -!- tcsc has quit [Read error: Connection reset by peer] 20:07:35 god water monsters are all laughing stocks 20:07:41 fr bring back elemental wellsprings 20:07:45 !send Lightli hellectric eels 20:07:46 Sending hellectric eels to Lightli. 20:07:47 no don't! 20:07:48 normal krakens are harmless enough, one with half the hp that appears hours later is unlikely to kill anyone 20:07:55 admittedly 20:07:56 There was no : I wasn't being serious 20:08:00 crawl should have terlen 20:08:20 are spectral sharks remotely dangerous in depths? probably not 20:08:34 spectral sharks are water monsters so they arent dangerous anywhere 20:08:50 abbott is just an idiot 20:08:54 abbott? 20:10:11 hey, water elementals can be dangerous 20:10:19 those arent water monsters 20:10:25 wait no they can leave the water nevermind 20:10:36 (they also aren't dangerous imo) 20:10:49 electric eels have probably killed me at least once 20:10:52 however, I am bad 20:11:18 dying to electric eels is perfectly reasonable since they are so annoying that dying to them is easier than anything else 20:11:40 -!- Watball has quit [Quit: Leaving] 20:12:18 -!- conted has quit [Ping timeout: 240 seconds] 20:17:44 are krakens banishable? 20:18:03 johnstein: Why wouldn't they be. 20:18:23 johnstein: By the way, I'm trying to debug the plutonian branch, I would not recomment rebuilding yet. 20:18:24 -!- rast- has joined ##crawl-dev 20:18:37 -!- rast has quit [Read error: Connection reset by peer] 20:18:51 -!- rast- is now known as rast 20:20:12 reaverb: I couldn't think of a reason they wouldn't be except if they get sent to the abyss, will they only appear in water there? or is it only uniques who appear in the abyss after you banish them? (this may be the wrong room to discuss) 20:20:57 johnstein: It probably is, I think just strong monsters can also appear after a banishment, not sure. 20:21:23 sounds like a job for wizmode 20:23:02 (or cheating, and looking at the code) 20:24:18 fr: togglable wizmode command to let you see damage numbers 20:25:35 Lightli: Compile with debug mode and you can see the dmg numbers. 20:25:46 oh 20:25:57 Wow check this out: 20:26:00 is there a way to do that without getting all the message spam debug mode brings? 20:26:08 if (th.getMinorVersion() < TAG_MINOR_PLUTO_NO_DEVICE_HEAL 20:26:09 && you.species == SP_PLUTONIAN) 20:26:11 Spot the bug. 20:26:30 Lightli: There might be a special compile mode which only gives some messages. 20:26:34 oh 20:26:57 channel.diagnostic = mute 20:27:08 oh, thanks 20:27:21 Heh, or an rc option. 20:29:35 -!- KurzedMetal has quit [Ping timeout: 258 seconds] 20:43:06 Hah, got it, wow a one semicolon bug. 20:43:12 (The Plutonian thing.) 20:43:28 The thing abvoe was actually wrong... 20:45:58 -!- nicolae- has quit [Ping timeout: 240 seconds] 20:46:54 -!- nicolae- has joined ##crawl-dev 20:46:58 -!- Lasty1 has quit [Quit: Leaving.] 20:51:51 reaverb: I have all the experimentals rebuilding every night. maybe I'll take off plutonians since it's more of a prototype 20:52:28 johnstein: I wouldn't take off plutonians. I'm about to push a bug fix which will correct the problem I mentioned. 20:52:33 ah ok 20:52:49 happens around midnight PST 20:55:01 -!- BlackrayJack has quit [Ping timeout: 252 seconds] 20:55:46 johnstein: Ok, the fix will be up by then. 21:01:05 -!- Bcadren_ has joined ##crawl-dev 21:01:14 You cannot move closer to DEAD MONSTER! is that a glitch? 21:01:21 Bcadren_: Yes. 21:02:21 Got pulled to another region of the Abyss same turn as killing an eidolon that had me afraid, remained afraid of nothing for about 5 turns. 21:03:48 Bcadren_: Report it on mantis. 21:03:51 ??mantis 21:03:51 mantis[1/1]: To report bugs or submit new content like vaults, patches or tiles, go to: http://crawl.develz.org/mantis/main_page.php 21:08:58 -!- Bloax has quit [Ping timeout: 240 seconds] 21:13:18 -!- Lasty1 has joined ##crawl-dev 21:13:18 -!- Lasty1 has quit [Client Quit] 21:13:27 -!- Nethris has quit [Quit: Leaving.] 21:15:53 Ok, finally got everything on Plutonians down. 21:16:00 Rebuilding cbro now. 21:16:40 nice 21:16:49 reaverb: what is new? 21:17:05 johnstein: MUT_NO_DEVICE heal has been removed. 21:17:18 03reaverb02 07[plutonians] * 0.15-a0-889-g68046b1: Fix Plutonians getting free contam healing from a corner case 10(57 minutes ago, 1 file, 8+ 7-) 13http://s-z.org/neil/git/?p=crawl.git;a=commitdiff;h=68046b138b06 21:17:18 03reaverb02 07[plutonians] * 0.15-a0-890-g337b859: Fix Plutonians getting negative levels of MUT_NO_DEVICE_HEAL 10(23 minutes ago, 1 file, 1+ 1-) 13http://s-z.org/neil/git/?p=crawl.git;a=commitdiff;h=337b85988d2c 21:17:26 Fixed a bug which meant you could never use !curing. 21:17:46 It's much easier to meltdown. 21:18:07 Minor tweaks like less overload contam and −1 Necro apt instead of -2 21:23:00 Experimental (plutonians) branch on crawl.beRotato.org updated to: 0.15-a0-890-g337b859 21:28:18 -!- reaverb has quit [Ping timeout: 240 seconds] 21:28:18 -!- palacebeast has quit [Ping timeout: 240 seconds] 21:28:50 back to plutonianing! 21:32:47 -!- reaverb has joined ##crawl-dev 21:32:48 -!- conted has quit [Ping timeout: 240 seconds] 21:34:13 -!- Fhqwhgads_ has quit [Remote host closed the connection] 21:34:27 -!- category has quit [Quit: Page closed] 21:42:22 -!- nicolae- has left ##crawl-dev 21:44:16 -!- markq has quit [Quit: Page closed] 21:50:04 -!- Daekdroom has quit [Quit: Saindo] 21:52:10 -!- clouded_ has joined ##crawl-dev 21:52:21 -!- st_ has quit [Read error: Connection reset by peer] 21:53:31 -!- Keanan has joined ##crawl-dev 22:04:27 -!- Tenda has quit [Read error: Connection reset by peer] 22:06:22 ok now that I died, maybe meltdown should burn away a little more contam 22:08:01 Lightli: From chain meltdowns? 22:08:11 yeah 22:08:15 how much dmg does a meltdown do to the player? 22:08:17 Oh, hmm. 22:08:27 and is it identical to the intentional ability? 22:08:30 not that much, it's more the 4 HP rot that's a concern 22:08:56 Lightli: So did you die directly from the meltdowns or the rot? 22:09:09 neither, I died from a unrelated cause 22:09:45 Lightli: Reread the last few messages :D 22:09:51 !log 22:09:51 2672. darkli, XL27 HOBe, T:58345: http://dobrazupa.org/morgue/darkli/morgue-darkli-20140514-202959.txt 22:10:09 oh yeah experimental 22:10:09 !log Lightli plutonians 22:10:10 No keyword 'plutonians' 22:10:14 !log Lightli plutonian 22:10:14 No keyword 'plutonian' 22:10:23 !log Lighlti cbro 22:10:23 No games for Lighlti (cbro). 22:10:52 greensnark probably hasn't added the milestones/log files 22:10:59 (i.e. accidentally going into V:$ fleeing from something or another, can't remember what and then when I decided to try and at least make a getaway from what I was running away from via an escape hatch, the ONE move I made had a vault warden lock the stairs) 22:11:21 dunno what the threshold on getting them added for an experimental branch 22:11:30 -!- ussdefiant has joined ##crawl-dev 22:11:32 I know for nostalgia and gods it got added 22:12:45 Might be able to access it directly if we somehow get ahold of the exact url 22:13:01 Anybody have a link to cbro's morgue's folder? 22:13:44 it had nothing to do with meltdowns 22:13:59 it was mostly the fact that a completely uncleared V:$ has absolutely NO safe spots to teleport to 22:14:42 Lightli: Ok, good to know it wasn't meltdowns. 22:14:45 which is something not even Hells, Tomb, and Zot have 22:15:23 Yes removing those corners sure was a Fo buff. :D 22:15:33 crawl.berotato.org/crawl/morgue 22:15:48 well 22:15:53 &morgue lightli 22:16:01 ? 22:16:03 hm 22:16:09 &log lightli 22:16:14 dump 22:16:18 guess that's not a think 22:16:22 &dump lightli 22:16:23 http://dobrazupa.org/morgue/darkli/darkli.txt 22:16:30 no 22:16:33 or !log 22:16:42 &log darkli 22:16:46 &log lightli 22:16:48 Hmm, can anybody show me the nostaglia/gods morgues on cbro? 22:16:59 !lg . won nostalgia log 22:17:00 1. darkli, XL27 HDBe, T:72183: http://dobrazupa.org/morgue/darkli/morgue-darkli-20140402-163242.txt 22:17:07 reaverb it was on stable and offline...not sure I could...already moved on too far from the occurance 22:17:16 so you people really liked that pl thing 22:17:23 reaverb: should be the same folder 22:17:33 johnstein: Thanks. 22:17:53 http://crawl.berotato.org/crawl/morgue/Lightli/morgue-Lightli-20140519-030527.txt 22:17:53 http://crawl.berotato.org/crawl/morgue/cbrotest/morgue-cbrotest-20140518-070413.txt 22:17:59 Is the Pl morgue. 22:18:27 -!- rast has quit [Read error: Connection reset by peer] 22:18:38 oh yeah I was running from Jory 22:18:42 -!- rast has joined ##crawl-dev 22:18:53 because no mp 22:19:16 Lightli: "OVERLOAD TIME (probably followed by meltdown right after)" was your note, correct? 22:19:24 yeah 22:19:37 by that point I was poking into deep red no matter what so I wanted to see if overload would do damage 22:19:38 Hmm, melting down should probably be in the notes. 22:19:41 it doesn't do that much 22:19:55 !learn add reaverb see {plutonains_todo} 22:19:55 reaverb[1/1]: see {plutonains_todo} 22:20:13 ??plutonians todo 22:20:14 I don't have a page labeled plutonians_todo in my learndb. 22:20:17 your own entry is a redirect, interesting 22:20:19 ??plutonains todo 22:20:20 I don't have a page labeled plutonains_todo in my learndb. 22:20:26 !learn add plutonians_todo Make meltdown give a not in the morgue/logs 22:20:26 plutonians todo[1/1]: Make meltdown give a not in the morgue/logs 22:20:29 ??reaverb 22:20:29 reaverb[1/1]: see {plutonains_todo} 22:20:59 !learn s reaverb[1] see {plutonains todo} 22:20:59 reaverb[1/1]: see {plutonains todo} 22:21:02 ??reaverb 22:21:02 reaverb[1/1]: see {plutonains todo} 22:21:07 Hmm. 22:21:19 you mean 1learn edit reaverb 22:21:26 gammafunk: Ha 22:21:34 !learn edit reaverb s/plutonains/plutonians/ 22:21:35 reaverb[1/1]: see {plutonians todo} 22:21:43 ??reaverb 22:21:43 plutonians todo[1/1]: Make meltdown give a not in the morgue/logs 22:22:03 !learn edit plutonian_todo s/not/note/ 22:22:03 I don't have a page labeled plutonian_todo[1] in my learndb. 22:22:11 !learn edit plutonians_todo s/not/note/ 22:22:11 plutonians todo[1/1]: Make meltdown give a note in the morgue/logs 22:22:23 Ok, anyway, any other comment Lightli? 22:25:34 who why? 22:26:24 Bcadren_: ?? 22:28:23 don't get the big deal with Plutonians....odd, but just for weirdnesses' sake. 22:33:09 -!- home has quit [Changing host] 22:36:48 -!- zeia has quit [Ping timeout: 240 seconds] 22:40:08 -!- Arkaniad|Laptop has quit [Ping timeout: 265 seconds] 22:40:08 -!- Arkaniad has quit [Ping timeout: 265 seconds] 22:40:16 -!- Nethris has quit [Ping timeout: 240 seconds] 22:40:37 -!- lobf has quit [Quit: lobf] 22:45:59 huh. what were the balance issues with lightli's geh? 22:47:33 PleasingFungus: What is "lightli's geh" 22:47:42 !vault lightli_geh 22:47:43 http://s-z.org/neil/git/?p=crawl.git;a=blob;f=crawl-ref/source/dat/des/branches/geh.des;hb=HEAD#l748 22:48:23 PleasingFungus: git blame 22:48:42 -!- Guest55294 is now known as myp 22:48:48 %git 53ee0573 22:48:49 07Grunt02 * 0.14-a0-3523-g53ee057: Disable a vault (possibly pending rebalancing). 10(8 weeks ago, 1 file, 2+ 0-) 13http://s-z.org/neil/git/?p=crawl.git;a=commitdiff;h=53ee057314f8 22:48:58 nonspecific. alas 22:49:30 then look up the ##crawl-dev logs for that day :D 22:50:05 tbh I was hoping lightli would remember, since he was around a minute ago 22:50:07 but I can do that 22:50:15 oh 22:50:31 My idea to fix it would be to turn it into a depths encompass vault 22:51:06 Lightli: Well what were the problems :D 22:51:09 ? 22:51:22 I don't remember 22:51:29 haha 22:51:31 probably too many smiters or something 22:51:36 Well you're going to have a tough time fixing them then. 22:51:42 oh, nice cacodemons 22:51:54 also one of these days I should put this up to mantis 22:51:55 http://pastebin.com/raw.php?i=sTuViXv4 22:51:56 -!- clouded_ has quit [] 22:52:04 make that day... today 22:52:08 I'd do it now but I'm too sick and incapable of thinking 22:52:29 PleasingFungus: Oh, and your were there when the commit happened. 22:52:59 I was there when the commit was written, but not when it occurred 22:53:01 judging by the logs 22:53:08 at least, I can't find it in the logs 22:53:31 20:52:51 20140326 22:54:15 -!- mizu_no_oto has quit [Quit: ["Textual IRC Client: www.textualapp.com"]] 22:54:17 that's... the day before the date on git 22:54:46 PleasngFungus: time zones. 22:55:27 terrible, terrible time zones 22:55:49 anyway, unsurprisingly, any discussion of the balance issues occurred either earlier or in a different channel of communication. 22:55:56 Yes. 22:57:48 -!- kekekela has quit [Ping timeout: 240 seconds] 23:04:49 -!- ystael has quit [Ping timeout: 276 seconds] 23:11:48 -!- fearitself has quit [Ping timeout: 240 seconds] 23:11:52 -!- MaxFrost has quit [Ping timeout: 240 seconds] 23:15:21 -!- CKyle has quit [Quit: CKyle] 23:24:23 -!- DrinkMachine has joined ##crawl-dev 23:29:39 -!- omnirizo2 has quit [Read error: Connection reset by peer] 23:29:39 -!- omnirizo3 has quit [Read error: Connection reset by peer] 23:30:49 -!- Bron has quit [Quit: Page closed] 23:35:34 since crawl's been adding all these new spells and god abilities i'd like to suggest getting rid of one: confusing touch 23:35:44 what does that do again? 23:35:53 confuses everything in the game 23:35:54 gives your unarmed attack confusion. 23:35:59 and is level 1 somehow 23:36:01 (the point is I forgot it existed) 23:36:06 (It has an HD check) 23:36:07 ??confusing touch 23:36:07 confusing touch[1/3]: This spell enchants the caster's hands with magical energy. This energy is released when the caster touches a monster with their hands (bare or gloved), and may induce a state of confusion in the monster. Can be stacked for duration, "extremely bright" red in '@' indicates near-max. A random amount discharges upon hitting. 23:36:21 -!- dtsund has quit [Quit: dtsund] 23:37:30 how would we cheese feck wins 23:37:48 basically you cast it before every fight and then win every fight because it confuses everything and did i mention it is level 1 23:37:56 nooo, why do you hate fun :( 23:38:45 1learn add confusing touch 23:38:58 if you think confusing touch is fun, you have probably never used confusing touch 23:39:37 It sounds nice in theory, but maybe fungus form is enough of that. (and yes I know buffs are awful as implemented) 23:39:58 point is, a level 1 hex that has the effect of a level 3 hex and is generally more likely to work and requires no spellpower and also has all the problems of duration-based charms 23:40:07 is not really something that should be in the game imo 23:40:29 yeah, I can't think of a very good reason against removing it 23:40:35 not sure how it affects any starts 23:40:39 it doesn't 23:40:43 because it isn't in any starting books 23:41:08 well just what books is it in gosh darnit 23:41:14 ?/confusing touch 23:41:14 Matching entries (9): accuracy[3] | book_of_cantrips[1] | book_of_hinderance[1] | confusing_touch[2] | fungus_form[1] | hd[1] | hexes[2] | spacet[5] | touch[1] 23:41:26 hinderance and cantrips 23:41:27 cantrips, really 23:41:28 oh 23:41:30 you beat me 23:41:42 ??book_of_hindrence 23:41:43 book of hindrence ~ book of hinderance[1/1]: Confusing Touch, Slow, Confuse, Petrify, Leda's Liquefaction, Metabolic Englaciation 23:41:54 confusing touch AND confuse 23:42:12 hindrence, as promised 23:42:12 ??cantrips 23:42:12 cantrips ~ cantrip[1/4]: A do-nothing spell, used to water down especially nasty early spellcasters. Note that deep elf soldiers, fighters, and knights, as well as many early uniques, use the orc wizard books. 23:42:13 so what spell should replace it in cantrips if it's removed 23:42:19 ??book of cantrips 23:42:19 book of cantrips[1/1]: Confusing Touch, Animate Skeleton, Summon Small Mammal, Apportation 23:42:26 well it looks like pretty much any level 1 spell 23:42:37 how about corona or magic dart 23:42:43 corona 23:42:46 corona would fit well 23:42:51 they're both hexy, right? 23:42:57 yeah 23:43:04 ?/corona 23:43:04 Matching terms (1): corona; entries (12): bolt_of_inaccuracy[1] | book_of_debilitation[1] | book_of_maledictions[1] | dithmenos[2] | dowan[1] | enchantment_miscast[1] | faun[1] | ghost_spells[1] | ghost_spells[3] | hexes[2] | list_of_spells_by_school[7] | unseen_horror[2] 23:43:18 i'd say replace it with corona in hinderance too, but then you have 3 books with the same first 2 spells :/ 23:43:21 I officially declare this Basil's job, since he's into fungus 23:43:33 since he's what 23:43:34 -!- AtomikKrab has quit [Ping timeout: 240 seconds] 23:43:56 he's into fungus AND he's smart and fun to be around, unlike other fungus 23:44:30 oh I guess it's only 2 books actually, so probably fine 23:44:52 hm 23:45:09 I feel like some rudeness is going on here. 23:45:48 maybe give hinderance some other hex spell? 23:46:03 And come to think of it, why is Fulminating Prism hexes/conj anyways 23:47:35 Lightli: Mechanical reasons. Old Cj proved having elemental spells in the Cj books was bad. 23:47:47 And Charms/Hexes are basically what's left there. 23:48:23 hmm 23:48:26 -!- Arkaniad has quit [Remote host closed the connection] 23:48:26 -!- Arkaniad|Laptop has quit [Remote host closed the connection] 23:48:27 conj/tlocs 23:48:48 Yes, that would be the other possibliltiy I guess. 23:48:57 For something like Singulairy :D 23:48:58 -!- N78291 has quit [Quit: null] 23:48:58 ??force lance 23:48:59 force lance[1/1]: Level 5 range 4 conjuration. Deals modest damage. If it injures a target, it attempts to knock them back, which fails if random2(2500) is less than their body weight. There is a 50% chance of a second knockback attempt (so if both succeed they will be knocked back two spaces). 23:49:10 you could make this a two-school spell, if you wanted to make it even worse 23:49:38 isn't it's damage still worse than IMB 23:49:46 In any case yes we should remove problematic buffs, I don't think confusing touch is alone in this group. 23:50:15 remove or improve 23:50:17 :) 23:50:25 yeah, like what happened with swiftness 23:51:01 is there any reason that confusing touch couldn't be a melee-range cast HD-checking version of confuse, rather than a weird stacking layering effect? 23:51:08 that would make it easier to fix, at least 23:51:38 PleasingFungus: I don't really like adding well designed spells to badly designed schools because that development effort could be spend in ways which do not lock us in to badly designed schools. 23:51:52 what 23:52:05 Pleasingfungus: that's probably phrased poorly. 23:52:35 -!- omnirizo1 has quit [Ping timeout: 255 seconds] 23:52:35 -!- omnirizon has quit [Ping timeout: 255 seconds] 23:52:43 I have no idea what you're talking about, tbh. unless you're talking about my joking "make force lance conj/tloc" suggestion 23:54:23 PleasingFungus: Never mind then, I need to leave soon anyway. 23:54:34 ok 23:54:37 no rush on any of this 23:56:48 -!- palacebeast has quit [Ping timeout: 240 seconds] 23:59:23 -!- Keanan has quit [Quit: Leaving.]