04:24 -!- mode/Beholder [+Zi] by Beholder 04:24 -!- cherryh.freenode.net changed the topic on #hardfought to: Welcome to Hardfought - https://www.hardfought.org/ - public irc logs available on website ¤ Public NetHack server - ssh nethack@hardfought.org ¤ SporkHack updated to 0.6.5, includes dungeon overview patch. GruntHack to receive the same patch soon. dNetHack 3.15.1 is now live 04:24 -!- mode/#hardfought [+v Beholder] by ChanServ 04:25 !ping 04:25 K2: Pong! 04:28 -!- firemonkey has joined #hardfought 04:29 !ping 04:29 loli: Pong! 04:29 Pong! 04:29 lame 04:31 awww 04:55 -!- Tomthetom has joined #hardfought 04:56 Pong! 04:56 Tangles: Message from LarienTelrunya at 2017-08-10 01:53 EDT: the curses interface in slex seems still very crashy, it randomly gives segfaults with this backtrace: Program terminated with signal SIGSEGV, Segmentation fault. #0 xname2 (obj=0x19f4ee0) at objnam.c:4980 4980 register int nn = ocl->oc_name_known; - and the real bad thing is that the savegame corrupts upon trying to autorecover it; apparently it's the old objnam error again, where the game someh 04:56 Yes Beholder I know. 04:57 K2: Any chance you could sprunge a full backtrace of that one? 04:57 sure 04:58 Thanks :) 04:58 * K2 walks over to our dev channel 04:59 heh 04:59 Also, why are you still awake? 05:05 well 05:05 i would normally be at work 05:05 so i am still in that mode 05:05 i will prob sleep here soon 05:16 [slex] dolores (Cam Ang Fem Cha), 3525 points, T:3828, killed by an arrow 05:18 LarienTelrunya 05:18 yes? 05:18 https://pastebin.com/EBTZSD7w - backtrace of core dump 05:18 *this* is what you need 05:18 Tangles says this is not curses related at all 05:19 okay, so apparently it's an issue with timed objects 05:19 Yeah 05:19 I can go back to curses safely then? 05:20 not sure 05:20 I vaguely recall a few weeks back there was some issue with one of the variants with egg timers. 05:20 I can't really tell; this might be the old (dreaded) obj_is_local bug 05:21 It looks like it's happening during a level transition (going upstairs maybe?) 05:21 only the first time 05:21 the second time 05:21 I was just walking around 05:21 and seg fault 05:22 hmm... that could also be a timer thing though. 05:22 #3 0x0000000000afcc85 in obj_is_local (obj=) at timeout.c:7388 05:22 "optimized out"? does that mean it was undefined? 05:22 no 05:22 that's not the same 05:23 LarienTelrunya: no, it means the compiler optimised that value out. 05:23 ^ 05:23 Usuallly when tracing a running process, you can step through and eventually get a sane value. 05:23 but it's a bit harder with a coredump. 05:24 ah. 05:24 well but it crashed at register int nn = ocl->oc_name_known 05:24 if obj were indeed undefined, cxname would most probably have crashed, or maybe even obj_is_local 05:25 and the curses interface used to have a ocl->oc_name_known crash before 05:25 let me get the commit that "fixed" it 05:27 wtf I can't find it 05:29 [slex] dolores (Con Lol Fem Cha), 233 points, T:675, killed by a monster (giant mimic) 05:32 -!- Tomthetom has quit [Ping timeout: 240 seconds] 05:33 Tangles: this https://github.com/SLASHEM-Extended/SLASHEM-Extended/commit/3a447584b4693399f91b96b73a01671f4ebdaf70 - I guess that is what's causing the crash 05:35 looking... 05:35 the problem there is that the dn = "???" is needed for curses, since it calls xname2 at weird times, but simply doing it unconditionally causes items to display ??? as their name, which is certainly not intended 05:36 if there was a simple check to see whether the curses interface is on, this would be easier 05:37 then we could make it say if (!dn && cursesinterface) dn = "???"; 05:37 and everything would be fine 05:37 but there is no such "cursesinterface" variable, or is there? 05:37 if there was a simple check, you could fix the character select sheet really easily 05:38 LarienTelrunya: what do you mean "at weird times?" 05:39 well, e.g. when loading the game, which is where it used to crash at the same line 05:39 weird because the tty interface does not do that 05:39 Yeah ok, so this is probably to do with the inventory display. 05:39 why is curses calling xname2 so often? :D (because of the permanent inventory?) 05:39 -!- K2-irccloud has quit [Quit: Connection closed for inactivity] 05:39 Yes probably. 05:40 removing the if (!dn && restoring) dn = "???"; line entirely causes the game to crash on loading a savegame with curses, but with tty it's stable 05:41 but removing the restoring clause causes mirrors, daggers and certain other items to actually show ??? in-game 05:41 Yeah... so that particular issue is probably to do with equiping armor and weapons when restoring the game. 05:41 We ran into something similar with dnethack. 05:41 Let me dig out the commit that fixed that. 05:45 https://github.com/NHTangles/dNAO/commit/0d806f2eb5d823214bd07e6803bebb199b5a7277 05:46 Just the parts in wield.c and worn.c 05:46 ah, also with the restoring check 05:47 Essentially anywhere you call update_inventory() from the mainline code that might happen during the restoring process... 05:47 ok 05:48 but apparently in curses-slex, it can also happen upon changing levels or doing other things that cause the game to save, and then "restoring" would be FALSE 05:48 ah ok 05:49 [slex] dolores (Con Lol Fem Cha), 1019 points, T:806, drowned in a pool of water by a giant eel 05:50 so what things do you do in slex that cause a save? 05:50 changing levels will cause the game to save, and the game also autosaves every once in a while 05:50 I can check loli's crashed game to see whether it happened on a turn that a save would occur on 05:52 hmm, does not look like it 05:53 I think the loli crash (at least the one K2 posted the trace for) is unrelated to the "???" change since the point of the crash is before that anyway. 05:54 well the one from the backtrace happened when changing levels via stair 05:54 and the "restoring" one that you tried to work around with the "????" is a separate issue. 05:55 oh, right, it happened in obj_typename() 05:56 I would start by reverting the "???" change, and maybe catch the restoring flag in update_inventory(), by starting it with if (restoring) return; 05:57 see if that's stable with perm_invent, then start looking for the other problem. 05:57 oh wait it was in xname2() 05:57 the nn = ocl->oc_name_known line is in both functions 05:57 so register struct objclass *ocl = &objects[typ]; must have returned a bogus ocl 05:57 oh right... maybe I'm wrong. I closed the tab. 05:58 this might actually be related to the weird hallucination crash I got a few times 05:59 loli: when you got that crash, was your char hallucinating? 05:59 no 05:59 I don't believe so 05:59 I could be remembering wrong 06:00 anyway what I probably really ought to do, is to add a safety check to xname2() that tries to make sure obj, obj->otyp and all those other parameters actually exist instead of blindly assuming that they do, and probably give a message if not 06:07 Yeah a message might be good. Maybe even an impossible(), with some info that might help track it down. 06:08 noted :) 06:08 Anyway I'm heading out again for a while. Good luck! ;) 06:08 see you! 06:30 -!- Tomthetom has joined #hardfought 06:31 I cant seem to delete a save 06:31 its in "replay mode" 06:31 move the save file? 06:32 How ? 06:33 probably only a server admin can do that 06:34 [slex] dolores (Tra Lol Mal Cha), 9474 points, T:1480, killed by a kick in the nuts 06:35 !lastgame 06:35 loli: https://www.hardfought.org/userdata/d/dolores/slex/dumplog/1502358859.slex.txt 06:36 -!- Tomthetom00 has joined #hardfought 06:37 My internet keeps crashing tonight wtf 06:38 -!- Tomthetom has quit [Ping timeout: 240 seconds] 06:51 [fh] Cpt Volaille (Tomthetom) (Sam Hum Mal Law) killed the ghost of Fisting Hard, the former Novice, on T:693 06:53 [fh] Cpt Volaille (Tomthetom) (Sam Hum Mal Law), 30759 points, T:775, killed by a blue jelly 06:54 FIQ: evil patch idea: new monster, castalia. Singular form of castalias. Will cast arcane and clerical spells every turn without cooldown. 06:54 yasd 07:06 -!- Tomthetom00 has quit [Read error: Connection reset by peer] 07:07 -!- Tomthetom has joined #hardfought 07:23 -!- Tomthetom has quit [Quit: Went Away...] 07:35 [fh] Cpt Volaille (Tomthetom) (Sam Hum Mal Law), 39182 points, T:2783, killed by a Woodland-elf 07:58 [dyn] groovejumper (Tou Hum Fem Neu), 3629 points, T:9379, killed by a fire ant 08:05 [dyn] groovejumper (Tou Hum Fem Neu), 503 points, T:1320, killed by a homunculus, while reading a book 08:07 -!- LarienTelrunya has quit [Quit: Page closed] 08:10 [dyn] groovejumper (Tou Hum Fem Neu), 100 points, T:900, killed by a wand 08:46 [dyn] groovejumper (Tou Hum Fem Cha), 729 points, T:1046, killed by a giant bat 09:00 [nd] elenmirie (Mon Hum Fem Neu), 9813 points, T:4609, killed by a shattered potion 09:39 -!- Tomthetom has joined #hardfought 10:01 -!- Tomthetom has quit [Ping timeout: 240 seconds] 10:02 -!- Tomthetom has joined #hardfought 10:07 !tell LarienTelrunya castalias is a bit awkward to use, but it's "hidden" behind keymap config so it's OK 10:07 Will do, FIQ! 10:38 [fh] Hiroshima (Tomthetom) (Sam Hum Mal Law), 34196 points, T:1882, killed by a gnomish wizard's force bolt 10:43 [fh] Linda (Tomthetom) (Val Dwa Fem Law), 21484 points, T:930, killed by a giant bat 10:52 EPI: Monsters spawnin on top of other monsters if there's nowhere for them to spawn. When there's a monster on top of something, it drops down to fight you when you kill what it's standing on. 10:53 Nice patch idea: letting the player fly over most monsters 11:00 [nd] Tangles (Sam Hum Fem Law), 3257 points, T:2752, killed by a leocrotta 11:02 [un] Tangles (Con Orc Fem Cha), 188 points, T:258, killed by a fox 11:03 [un] Tangles (Con Orc Mal Cha), 38 points, T:89, killed by a fox 11:04 !setmintc 500 11:04 Tangles: Min reported turncount for tangles set to 500 11:05 Ive been running after quantum mecanic for 5 levels lol 11:05 He keeps using wand of digging and going down D: 11:10 [fh] Tom (Tomthetom) (Mon Hum Mal Cha), 43253 points, T:5539, killed by a vampire lord 11:10 Damn it 11:11 Tomthetom: Yes, when an item-using monster escapes with a wand of digging, the strategically correct response is usually to let it go for now. 11:11 [un] Tangles (Con Orc Mal Cha), 264 points, T:887, killed by a jackal 11:12 !setmintc 1500 11:12 Tomthetom: Min reported turncount for tomthetom set to 1500 11:12 jonadab, Agreed 11:19 * Tomthetom is away: Im away, dont talk to me :D 11:19 isn't there an /away command for this purpose, not that it ever gets used 11:21 or you could change nick to Tomthetom|away or something, some people like that 11:24 [un] Tangles (Con Orc Mal Cha), 202 points, T:553, killed by a magic missile 11:25 !setmintc 1500 11:25 Tangles: Min reported turncount for tangles set to 1500 11:25 aosdict: Or use something like screen_away to automatically mark you away any time you detach from your screen session :-) 11:26 -!- Tomthetom has quit [Ping timeout: 260 seconds] 11:30 Huh. I should look into that for tmux 11:34 !tell Tomthetom please remove these, they're very obnoxious: * Tomthetom is away: Im away, dont talk to me :D 11:34 Will do, FIQ! 11:38 aosdict: It almost certainly exists; tmux is if anything _more_ popular than screen these days. 11:38 Probably because it's easier to search for. 11:39 -!- firemonkey has quit [Ping timeout: 255 seconds] 11:40 [dyn] groovejumper (Tou Hum Fem Neu), 1247 points, T:1954, killed by a rothe 11:43 jonadab: it also has features screen lacks that people has been asking for since forever 11:43 and a much more straightforward configuration system 11:43 that doesn't look like line noise 11:46 -!- firemonkey has joined #hardfought 11:54 l - a blessed +1 thirsty long sword of stealth 11:54 Yay! 12:00 what does the thirsty prefix mean? 12:00 drains levels when it hits things, I believe 12:01 yani dipping a thirsty sword into water should give you a satisfied sword 12:17 YASI: hitting things with a satisfied sword makes them not hungry. 12:17 Or doesn't do any damage. 12:17 Or both. 12:18 jonadab: I've found tmux away irssi scripts, yeah, though seeing as how /away only affects private messages it might not be that useful 12:18 Unless I wanted to change my nick to aosdict|away, but I don't 12:18 aosdict: away status can also be seen in /whois. 12:19 Actually, I kind of want my IRC client to notify me when I nickping somebody who's away, for the first time since they went away. 12:21 FIQ: it's intentional that dipping a magical long sword for excalibur doesn't result in a magical excalibur, isn't it? 12:22 [dyn] groovejumper (Tou Hum Fem Neu), 4857 points, T:3134, killed by a bugbear 12:23 [fh] NeroOneTrueKing (Wiz Elf Fem Law) wished for "uncursed magic marker named The Wand of Orcus", on T:38209 12:34 [nd] elenmirie (Mon Hum Fem Neu) changed form for the first time, becoming a horned devil, on T:4292 12:50 NeroOneTrueKing: yes 12:50 also I like how you name your markers after dnethack artifacts :P 12:52 What should my odds be of getting a sacrifice gift? (Crowned, no sac gifts yet, no artifact wishes) 13:01 you still haven't gotten any? 13:01 none 13:02 !tell K2 can you give me NeroOneTrueKing's save so I can verify that the artigift counter is working correctly in older saves? 13:02 Will do, FIQ! 13:02 Although I don't really need one anymore since I dipped for Excalibur (my poor, poor thirsty long sword of searching) 13:03 well 13:03 you satiated its thirst 13:03 I bet it's happy :) 13:03 and Excalibur does have the searching component already 13:04 it does not 13:04 not in fiqhack 13:04 oh okay 13:04 because I buffed searching 13:04 and figured excal did *not* need that buff 13:04 with all the other stuff it has 13:06 [nd] elenmirie (Mon Hum Fem Neu), 14268 points, T:7682, killed by a horse 13:23 !tell K2 I pushed a display improvement for dnethack 3.15.1. It doesn't break save compatibility. 13:23 Will do, Chris_ANG! 13:39 [fh] NeroOneTrueKing (Wiz Elf Fem Law) wished for "the blessed Magic Mirror of Merlin", on T:42303 13:39 FIQ: I got a message "Debug: 1" after wishing for the magic mirror of merlin 13:40 hm 13:40 I forgot to remove that, oops 13:41 (usually they're wizmode-only, but since wizmode wishing is special I had that in ordinary play) 13:41 !tell K2 pushed a fix 13:41 Will do, FIQ! 13:52 -!- noty has joined #hardfought 13:55 [slex] dolores (Cha Ang Fem Cha), 75 points, T:192, killed by a monster (ultimate twen) 13:55 !lastgame 13:55 loli: https://www.hardfought.org/userdata/d/dolores/slex/dumplog/1502387539.slex.txt 14:00 [slex] dolores (Cha Ang Mal Cha), 49 points, T:187, killed by an orcish dagger 14:18 -!- hf_guest_76626 has joined #hardfought 14:18 -!- hf_guest_76626 is now known as jonathanhanes 14:18 !role nd 14:18 jonathanhanes: barbarian 14:21 morning/afternoon/evening! 14:21 K2: Message from FIQ at 2017-08-10 13:02 EDT: can you give me NeroOneTrueKing's save so I can verify that the artigift counter is working correctly in older saves? 14:21 K2: Message from Chris_ANG at 2017-08-10 13:23 EDT: I pushed a display improvement for dnethack 3.15.1. It doesn't break save compatibility. 14:21 K2: Message from FIQ at 2017-08-10 13:41 EDT: pushed a fix 14:21 good morning 14:21 it is afternoon here, but i just woke up 14:21 * K2 hates night shift 14:22 bleh, couldn't imagine 14:22 ok lets see... 14:22 Chris_ANG I think I already pulled that last night, but lemme dbl check 14:23 ah this is new 14:26 dnetHack is updated 14:26 damn 14:26 why did that have to be conflict 14:26 [nd] jonathanhanes (Bar Hum Mal Neu), 888 points, T:1166, killed by Ms. Sarangan; the shopkeeper 14:26 doh 14:27 !role nd 14:27 jonathanhanes: priest 14:28 FIQhack updated 14:30 K2: fiqhack fix is unrelated to NeroOneTrueKing's issue 14:30 k 14:32 [dnh] Tarmunora (Brd Hlf Fem Cha) wished for "blessed figurine of a surya deva", on T:40228 14:33 [slex] dolores (Cha Ang Fem Cha) killed The Greater Hell-Lichen, on T:2225 14:33 huh 14:33 that's note worthy/ 14:35 sweet 14:35 my bones file with 2 boh's 14:36 oh yah and "oR 14:36 and I'm a priest 14:37 now lets see how I can screw this up 14:38 Also, to hell with you soko :D 14:39 [dnh] Tarmunora (Brd Hlf Fem Cha) wished for "blessed figurine of a furious whirlwind", on T:40261 14:41 [nd] jonathanhanes (Pri Hum Mal Neu), 1922 points, T:1548, killed by a gnome lord 14:41 [dnh] Tarmunora (Brd Hlf Fem Cha) wished for "blessed figurine of a surya deva", on T:40289 14:52 [dnh] Tarmunora (Brd Hlf Fem Cha) wished for "blessed ring of free action", on T:40403 14:54 [dnh] Tarmunora (Brd Hlf Fem Cha) wished for "blessed +2 cloak of magic resistance", on T:40408 15:01 [dnh] Tarmunora (Brd Hlf Fem Cha) became the Glory of Arioch, on T:40541 15:05 [dnh] ChrisANG (Brd Hlf Fem Neu), 36694 points, T:16560, escaped 15:15 And now 15:15 For the fun game of finding the candalabrum 15:15 As I have forgotten where my stash was 15:17 neat! so on facebook you can now change your gender to 'custom' and put in basically whatever you want 15:18 I now self-identify on facebook as a 'toaster oven' 15:18 \o/ 15:18 meat popsicle 15:18 hah 15:18 yesssssss 15:18 one of my all time favourite movies 15:18 someone here should change theirs to something like a gelatenous cube 15:18 multipass! 15:20 are you prepared for being part of the statistics in the several articles that will inevitably come out in a couple weeks? 15:20 absolutely 15:21 however, that info can only be seen by friends per my facebook settings 15:24 hothraxxa - https://media.giphy.com/media/KUBtckMKh3AKk/giphy.gif 15:25 heh 15:28 [slex] dolores (Cha Ang Fem Cha), 10263 points, T:4127, killed by a bullet 15:41 [slex] dolores (Cha Ang Fem Cha), 434 points, T:588, killed by a monster (dire wolf) 15:41 [dnh] ChrisANG (Ana Dro Fem Cha) entered Minetown for the first time, on T:1411 15:48 The candelabrum is still missing. What have I done? 15:52 [nd] simplejim (Wiz Gno Mal Neu), 350 points, T:1044, killed by a coyote 15:53 Oh good. Found it 15:55 \o/ 15:55 even a +8 helmet can't save a chaos sorcerer from the their starting pet 15:55 .......... 15:56 [slex] dolores (Cha Ang Fem Cha), 910 points, T:797, killed by a monster (dull unicorn), while flinching 15:57 Tarmunora_: Always #annotate your stash level :P 15:57 It was buried in a corner of the castle 15:57 how do you see what levels are annoated 15:57 Under an inconspicuous stack of soldier equipment 15:57 after you #annotate? 15:58 crtl-o 15:58 C-o doesn't do anything 16:01 I don't think it exists in slex 16:02 :( 16:03 [dnh] Tarmunora (Brd Hlf Fem Cha) killed the Wizard of Yendor, on T:43220 16:04 HUh 16:04 -!- Yasdorian\Splat has quit [Ping timeout: 260 seconds] 16:04 -!- Yasdorian\Splat has joined #hardfought 16:04 He got aggro on me for some reason. Early Book of the Dead though 16:08 loli: Try #overview 16:08 thanks 16:08 wonder why it's not bound to C-o by default 16:10 C-o is wizmode dungeon overview by default, at least in 3.4.3 16:15 Chris_ANG: any thoughts on how flanking mechanics could work as a to-hit effect? 16:15 I have most of a system fleshed out, but I'm having some difficulty getting walls into a good place 16:16 [dnh] Tarmunora (Brd Hlf Fem Cha) killed Dagon, on T:43943 16:17 Thoughts, though since I don't know the details of your system they may not be useful 16:17 #1 thought is "Don't do anything with player facing, it's an interface nightmare" 16:17 Agreed 16:17 dnh has a few things where relative positions of monsters matter. 16:18 (dnh *also* has a mechanic where rogues can get their sneak attack damage by attacking monsters from behind :/) 16:18 the system for monsters is basically examining the 8 directions of attack and determining the maximum number of adjacent directions that don't have monsters in them 16:19 so if you're fighting two monsters next to each other it's not so bad as two monsters on opposite sides 16:20 Ok, that seems good. That's similar to the dnh system for weeping angels. Two weeping angels next to each other are easy to keep in view, 16:20 two weeping angels on opposite sides are hard, and so move much faster. 16:20 The problem I'm struggling with is walls 16:21 or other inaccessible terrain 16:21 because backing the player into a corner should give the attacker advantage because the walls don't let them dodge 16:21 but, in a straight corridor where there are lots of walls, the defender should have a pretty easy time defending 16:22 Chris_ANG: why not change it? 16:22 Ah, ok. Just check for walls directly across from the monster, then? 16:22 to #wizoverview or whatever 16:22 and make ^O #overview 16:23 loli's playing slex. dnh does that. 16:23 hmm. maybe a wall next to both the attacker and defender doesn't count 16:23 er, I think it's slex. 16:24 but then ranged attacks in corridors have the original problem still 16:25 [dnh] ChrisANG (Ana Dro Fem Cha), 9950 points, T:2344, killed by a wand 16:27 [dnh] Tarmunora (Brd Hlf Fem Cha) killed the Chromatic Dragon, on T:44311 16:31 [dnh] Tarmunora (Brd Hlf Fem Cha) destroyed Orcus, on T:44388 16:35 [dnh] Tarmunora (Brd Hlf Fem Cha) killed the creature in the ice, on T:44546 16:35 [dnh] Tarmunora (Brd Hlf Fem Cha) killed Kostchtchie, on T:44556 16:41 [dnh] ChrisANG (Ana Dro Fem Cha) entered Minetown for the first time, on T:694 16:46 [dnh] Tarmunora (Brd Hlf Fem Cha) killed the invisible Leviathan, on T:44819 16:47 [dnh] Tarmunora (Brd Hlf Fem Cha) killed the invisible Mephistopheles, on T:44836 16:48 [dnh] Tarmunora (Brd Hlf Fem Cha) killed Asmodeus, on T:44840 16:48 Good riddance 16:48 [dnh] Tarmunora (Brd Hlf Fem Cha) killed the invisible Dispater, on T:44843 16:51 [slex] dolores (Cha Ang Fem Cha), 16086 points, T:2676, killed by a monster (six-footed snake) 16:54 [dnh] Tarmunora (Brd Hlf Fem Cha) killed the invisible Daemon, on T:45186 17:04 [dnh] Tarmunora (Brd Hlf Fem Cha) killed Oona, on T:45669 17:11 [dnh] Tarmunora (Brd Hlf Fem Cha) performed the invocation, on T:45852 17:15 [dnh] Tarmunora (Brd Hlf Fem Cha) killed the elder priestess of Moloch, on T:45988 17:21 -!- Tomthetom has joined #hardfought 17:25 -!- Tomthetom has quit [Ping timeout: 240 seconds] 17:28 [nd] Rx (Hea Gno Fem Neu), 1571 points, T:2958, killed by brainlessness 17:32 yani: a monster that knocks you back. I don't think anything like that exists in vanilla. 17:35 what should I wish for? 17:40 https://nethackwiki.com/wiki/Wish#What_to_wish_for 17:41 however 17:41 this is slex 17:41 lkol 17:41 slex is an entirely different beast 17:41 I'm guessing it's different 17:41 yup... 17:41 yeah 17:41 I know amy goes for +3 17:41 but I don't see logs on irc of what she wished for 17:41 amy should update this wiki page 17:42 i have no idea what to tell you in regards to slex 17:42 I'm just looking at the incomplete item list 17:42 maybe something with magic resistance 17:42 anything else besdies blessed and greased? 17:42 any other preterms I should add? 17:43 fixed 17:43 what does fixed do? 17:43 fixed makes it fooproof 17:43 fooproof? 17:43 [slex] dolores (Cha Ang Fem Cha) wished for "", on T:1414 17:43 shiiit 17:44 NOOOOOOOOOOOOOOOOOOO 17:44 rust/fire/corrosion proof 17:44 hah wtf happened? 17:44 I tried to use my emacs/bash key commands 17:44 you hit escape or an arrow key? 17:44 C-b 17:44 I then hit my capslock ie esc by accident 17:44 Q_Q 17:44 ugh 17:44 :( 17:45 ...why have I not seen Q_Q before, that's far better than things like :'( 17:45 I tend to use it a lot 17:46 I was going to become super OP 17:46 should Beholder say someone wished for "", or should it say some YAFMy thing? 17:46 but I guess not... 17:46 play a variant with a better input interface 17:46 or just use curses UI 17:46 curses crashes 17:46 on slex 17:46 shouldn't happen anymore 17:46 dolores (Cha Ang Fem Cha) wasted a wish, on T:1414 17:46 does curses use bash/emacs key bindings? 17:46 and was the server patched? 17:47 because it would be rather annoying to just see all my progress go 17:47 no but it will only abort a wish if you actually press esc 17:47 the last patch i did for slex was the one concerning that monster bug 17:47 so it would still crash, yes 17:47 I rather like the look of curses 17:47 It's annoying to pick a race, however 17:47 since I have to go to tty 17:47 slex is too much for curses to handle 17:47 rip 17:47 I think they are going to fix it soon 17:48 .... I hope 17:48 it was oddly enough the default in the 2.0.0 and 2.0.1 build 17:48 yeah amy hated it 17:48 so she got rid of the default 17:49 well that's not why 17:49 I complained about the crashes 17:49 I think Elronnd sneaked in that change lol 17:49 and she was like 17:49 good point 17:49 aaaaaah 17:49 no she was against it all the way 17:49 it's a nice interface 17:49 why was she? 17:49 but would rather Elronnd not remove it from the server I guess 17:49 K2: I have a new emotional problem 17:49 you can ask larientelrunya 17:49 I'm invested in how much sun shows up today 17:50 cloudy days make me sad, not because of clouds, but because of lower electricity generation 17:50 K2: if you had to tie bitcoin mining to the presence of the sun, you'd be sad on cloudy days too 17:50 that is rather sad 17:51 I don't think it is healthy to have a financial reason to be sad on cloudy days, in addition to just having a cloudy day. 17:51 lol 17:51 oh this is classic 17:51 dtype: it will be OK 17:51 a cloudy day like.... actually costs me $5 17:52 hahahahah 17:52 if you had a battery backup bank, it wouldnt matter 17:52 if you're the sort of person who likes clouds and rainy days though, getting solar panels is a win-win 17:52 dtype: Technically, the cloudy day doesn't cost you $5. It makes you $5 less than a sunny day, perhaps. Not the same. 17:52 either you're generating power, or you get a cloudy day 17:53 aosdict: What if I mostly like snow? 17:53 and technically you're still generating power right? just not as much 17:53 ^ That. 17:53 dtype: Also, maybe don't move to northeastern Ohio. 17:53 yeah is a lot less than cloud-optimists want to say. Reasonable clouds cut me to 25% production 17:54 the "90% of the sun's power actually makes it through on cloudy days" are all full of BS 17:54 I can measure otherwise 17:54 dtype: use your mind and skills to develop a panel that can utilize the full spectrum of electtomagnetic radiation that the sun produces that makes its way to earths surface 17:54 * jonadab grew up thinking a sunny day was one where the sky was _light_ slate gray. 17:54 dtype: Depends on the clouds. 17:54 jonadab: if you're in northeastern Ohio, I think you should be all set? 17:54 lake effect snow and all that? 17:54 aosdict: I'm in central OHio now. 17:54 a big part of that 90% is not within the visible spectrum 17:54 Too far south to get any lake effect. 17:55 K2: also turns out to be false in any spectrum 17:55 We're like an hour and fifteen minutes south of the west end of the lake. 17:55 But yes, where I grew up we got rather more snow. 17:55 well, we are talking about california clouds 17:55 I don't particularly like western New York, but I could move there just to get all the snow 17:55 those are special 17:55 aosdict: Oooh, Buffalo? 17:55 Now _there_ is some lake-effect country. 17:56 My favorite snow story ever is what happened in Buffalo in, umm, I think it was '79 or so. 17:56 fun fact: buffalo is a major solar panel manufacturing hub 17:56 THe year the lake froze over early. 17:56 K2: Manufacturing, maybe. I assume they ship 'em elsewhere for deployment. 17:56 ask elon musk 17:56 he owns it now 17:57 Temporary. He never holds onto anything very long. 17:57 He relies on the fact that the news media covers everything he buys, which raises its price, and then he sells. 17:57 Not sure how he got the media to treat him that way in the first place, but it's a real racket. 17:58 i have musk panels 17:59 well panasonic panels, musk installed and maintained 17:59 FIQ - Your zombifying disease wears off. 17:59 i'm ok right? 17:59 If it wears off, that's good. 18:00 just making sure 18:00 I see my own ghost... 18:00 i'm having grunthack flashbacks 18:00 loli: in vanilla at least, your own ghost is encountered quite a lot 18:01 I hope I drop my old items 18:05 Jonadab: there was actually a board game made in commemoration of that blizzard in '79 18:05 My mom had it 18:07 Wikipedia seems to think it was in 1977 18:08 Ah yes, you are right. Can't trust this old brain to remember nuffin 18:10 http://imgur.com/a/yPPGG 18:10 Ah, '77 is possible. 18:10 Board game pretty much confirms it 18:10 My parents always said '79 was the really super cold year, but we were in northern Indiana at the time, so it could've been slightly different. 18:11 ('78 was the big snow.) 18:12 according to Wikipedia that blizzard didn't even contain lake effect snow due to Lake Erie being frozen over, it was just a really big blizzard. 18:12 aosdict: Actually, no, it was the lake being frozen over that _caused_ the one I'm talking about. 18:12 And no, it wasn't lake effect. 18:12 Well, not the _usual_ lake effect. 18:12 What happened was, the lake froze over real early. 18:13 And then after that, every time it snowed, snow accumulated on the lake. 18:13 Then what happened was essentially a wind storm strong enough to blow all that accumulated snow off the whole surface of the lake, right down to the eastern end. 18:14 Some roads in the Buffalo area went from clear to ten feet of snow in _minutes_. 18:14 Yeah I meant not the standard lake effect mechanism 18:14 I wonder how many kicks a ghost can take! 18:14 aosdict: right, but it also wasn't mostly new snowfall. 18:14 It was basically just really severe drifting. 18:15 A drift big enough to bury a metropolitan area _thoroughly_. 18:15 Weather can be a heck of a thing. 18:16 not much weather in the Dungeons though 18:16 EPI: until now. 18:17 I mean, just imagine, dungeon blizzards, dungeon hurricanes, dungeon sandstorms, ... 18:17 rain filling up pits and making pools of water 18:18 dust storms killing visibility to 0 tiles 18:18 snow leaving a light dusting the will show footprints and also make you stumble 18:18 we have ice terrain, why not snow? 18:18 heavy winds blowing all of the scrolls out of your inventory 18:19 good stuff indeed 18:19 also if snow terrain was added the Valk quest should use it instead of ice 18:20 EPI: the Valk quest should have actual volcanos, which erupt, creating growing rivers of lava where previously there was other terrain. 18:20 there was also that one Dudley strip about a hostile cloud that followed him around raining on him 18:21 Dust from the dust storm gets into your potions! They look rather muddy now. 18:21 s - 20 brown potions. 18:22 a - a dusty spellbook. x - a dusty spellbook. F - a dusty spellbook. 18:23 http://imgur.com/a/fgKeq 18:23 jonathanhanes: I think "muddy potion" is actually an appearance in some variants. 18:24 Murky is in vanilla 18:24 Yeah, I think "muddy potion" is in Slash'em and also Fourk. 18:25 I think there was one where if you were phasing through walls your potions would become muddy 18:25 [slex] dolores (Cha Ang Fem Cha) killed the ghost of dolores, the former Dirty Camper, on T:3414 18:25 But that may have just been an EPI 18:25 finally 18:25 I forget how good my inventory was on that character 18:26 -!- jonathanhanes has quit [Quit: *poof*] 18:26 -!- jonathanhanes has joined #hardfought 18:27 EPI: each object that's generated has a 1/50 chance to be "worthless", which is not apparent until you try to do anything with it (other than pick it up, which works as normal), at which point "You can't. It's worthless", and the item is identified as worthless (so it'll appear in inventory as such). 18:27 Of course, drop counts as an action other than pick-up, so once acquired you can't get rid of these objects directly. 18:33 * aosdict rates this Pretty Darn Evil 18:35 jonadab: make an Evil Patch Idea Database, where users can rate EPIs on how evil they are 18:36 Heh. 18:37 I actually had something sort of kind of like that at one point, for the list of uses for peanut butter (except instead of how evil, it was for rating how useful/interesting they were). 18:39 ...you have a list of uses for peanut butter? 18:39 I need to see this 18:39 Let me see if I can dig up a copy. 18:41 Hmm, I found a really old copy from when we only had about 500 uses. That's... probably enough. http://jonadab.jumpingcrab.com/pastebin/831.txt 18:42 This is from way before we started rating them and stuff. That all came later. 18:43 11. Drop it from a plane over Ethiopia to feed all the starving children. 18:43 Starving children in Ethiopia used to be a fairly major meme, back in the pre-internet days. 18:45 and, apparently, hating Barney the Purple Dinosaur? 18:45 That was contemporary when the list was written. (Barney was in his first or second season.) 18:46 There was a Doom mod that turned one of the more common enemies into Barney so you could shoot him. 18:46 http://imgur.com/a/YJQ16 18:46 And nethack has him too! 18:47 K2: it's basically grunthack zombification except it has 2 stages 18:48 at first it can wear off naturally if no zombies are nearby 18:48 only if it builds up enough does it turn terminal 18:48 (the game will tell you) 18:49 -!- jonathanhanes has quit [Quit: *poof*] 18:50 -!- greqrg has joined #hardfought 18:57 how do I butcher vampires as a vampire 18:57 they keep coming back to life 19:04 fuck 19:04 I mistyped 19:04 and pressed n to stop eating 19:05 [slex] dolores (Cha Ang Fem Cha), 45265 points, T:5366, choked on a flying troll corpse 19:30 Ahh... choked on a misleading "Stop eating" prompt. Not the first time that's happened. 19:30 -!- Jonathanhanes has joined #hardfought 19:31 I just wanted to get rid of the trolls 19:31 they kept resapwning 19:31 and I was a vampire for a while 19:31 !role nd 19:31 Jonathanhanes: caveman 19:34 [slex] dolores (Psi Ang Fem Cha), 253 points, T:118, killed by a monster (varying-colored jelly) 19:34 Tangles: is there any other way to destroy corpses? 19:34 troll corpses. 19:34 yes 19:35 I was going to write a song about that at one point... 19:35 polymorph or a tinning kit 19:35 I think i had a tinning kit 19:35 never knew what they were used for 19:35 "choked on a flying troll corpse" makes it sound like the corpse was flying through the air and you caught it in your moutn 19:35 lock them in a chest, throw them in a moat or lava. 19:35 mouth* 19:36 bury them maybe? less practical as you need boulders. 19:36 locking them in a closet would work too. 19:37 [dnh] Tarmunora (Brd Hlf Fem Cha) entered the Planes, on T:47474 19:38 Tangles: EPI: burying a troll corpse will make it rise out of the ground as a troll zombie, which is even harder to stop reanimating 19:38 heh 19:39 EPI: throwing it into water turns it into a water troll; lava -> rock troll, etc. 19:39 Surely throwing a troll corpse in lava should result in a lava troll. 19:40 Well, yes. if those existed.... EPI: lava trolls 19:41 And locking one in a box results in a freedom fighter troll and a destroyed box 19:41 And putting one in an icebox results in an ice troll? 19:42 freedom fighter trolls go around liberating all the other trolls from their boxes 19:42 heh 19:43 EPI: arch-troll. Like an arch-lich, except it doesn't stay dead. 19:43 Non-genocideable, obviously. 19:43 obviously! 19:44 Generates in groups. 19:44 I feel bad about logging this channel now. 19:44 Heh. 19:44 The EPIs would end up on the EPI list eventually anyway. 19:44 yeah, how do you think jonadab gets them? 19:45 My yani parser also has an option to search for epis but I don't use it because this channel gets flooded with them 19:45 Heh. 19:46 Well, probably the *real* reason is I have no reason to retrieve EPIs 19:46 Indeed. 19:48 [nd] jonathanhanes (Cav Dwa Mal Law) had Grayswandir bestowed upon him by Anu, on T:1884 19:54 [dnh] Tarmunora (Brd Hlf Fem Cha) destroyed the invisible Pestilence, on T:47933 19:55 [dnh] Tarmunora (Brd Hlf Fem Cha) destroyed the invisible Death, on T:47963 19:56 [dnh] Tarmunora (Brd Hlf Fem Cha) destroyed Famine, on T:47986 19:57 [dnh] Tarmunora (Brd Hlf Fem Cha), 4308806 points, T:48006, ascended https://www.hardfought.org/userdata/T/Tarmunora/dnethack/dumplog/1500005771.dnh.txt 19:58 woo congrats Tarmunora!! 19:59 congrats! 19:59 Thanks! 19:59 congrats 19:59 Now I can splat some adventurers in 3.15.1! 20:00 Congrats :) 20:00 Chris_ANG i updated dnethack again, so we should be current 20:02 Thanks :) 20:03 what type of stuff does dnethack have? 20:03 is it a hard variant as well? 20:06 grats Tarmunora! 20:07 loli: I would really like to see people's ideas of general variant difficulty. 20:08 I'm inclined to say most are more difficult than vanilla, except nethack4 and maybe fiqhack. 20:11 I see 20:12 the only variants that I've played is unnethack and slex 20:12 nothing else really 20:12 and I played unnethack over nethack because of the default config file 20:13 I've played grunt, un, nh4, and vanilla. My one game of slex doesn't count. 20:13 are there any other versions of nethack that are as hard as slex 20:13 So I don't have any clue about dnethack, Fourk, spork, or anything else. 20:13 what is grunthack? 20:14 GruntHack is one of the older variants. 20:14 It has a reputation for being hard, mostly because its monsters know how to do things that monsters in vanilla don't know how to do. 20:14 Adds some cool stuff, but adds some difficulty increases and just plain annoying things 20:15 cough, mines water, cough, zombies, cough 20:15 Indeed. 20:15 And it has object properties, which are neat. 20:15 object properties? 20:15 It pioneered object properties I think 20:16 object properties = some items randomly have 1+ magical properties 20:16 ahh I see 20:16 I think slex has that? 20:16 though I could be mistaken 20:16 long sword of reflection, thirsty darts, amulet of life saving of hunger 20:16 What do you wish for? "Blessed +3 dragonhide water walking boots of speed." 20:17 I see 20:17 that's rather cool 20:17 wtf are these levels 20:17 https://puu.sh/x70YI/8546609074.png 20:17 the one above this had less than 20 tiles to move around 20:17 34* to be exact 20:18 No idea. 20:18 Could be something slex-specific. 20:18 I'm sure it is 20:18 it's just lava everywhere 20:18 at dlvl4 20:20 i used to think grunthack was the hardest variant i've played 20:20 sporkhack has taken that lead 20:20 slex might be the most difficult because its so weird 20:20 slex still has it in the bag :P 20:20 is slex really that weird compared to other *hack games? 20:21 hah. yes 20:21 by leaps and bounds 20:21 i'm convinced amy drops acid on a regular basis 20:21 hahaha 20:22 I will say sometimes it's hard to tell where to go 20:22 https://puu.sh/x71aU/a8449854db.png 20:22 like just lok at this 20:22 from everything I've heard about slex, it might not be that hard mechanically, with full knowledge of the game, but there are so many interface screws and unbalanced threats that a large part of survival depends on randomness 20:22 damn 20:22 the interface screws are easy to defeat 20:22 for greyout C-r out of it 20:22 and amy is the only one to have ascended slex 20:22 when it starts to go away 20:22 amy is really good 20:23 she did that fleecy slex challenge 20:23 on her first 2 attempts 20:23 slex isn't so much difficult as, not to put too fine a point on it, unplayable. 20:23 the second attempt is on dlvl14 20:23 loli: dNethack is balanced as vanilla-ish difficulty, but a lot of not-so-balanced power creep 20:23 I see 20:23 dnethack's approach to balance is "Thing A is way OP? Hmm, let's buff things B, C, and D to balance it out." 20:23 hahaa 20:24 Which is not entirely invalid. 20:24 just make everything kill you just as hard 20:24 Depending on luck and race/role, you can either stop your way from the castle to astral, or get one-shot by demogorgon 10 levels into gehennom 20:24 GruntHack kind of leans that direction too. 20:24 YOu _need_ all-dragonhide everything. 20:24 Because you're gonna get cancel-spammed in the late game. 20:24 being 1 shoted is no fun 20:24 to be fair that would be easily resolved by tuning down the cancelspam 20:25 having to get x just sounds tedious 20:25 Well, Demogorogn was nerfed semi-recently so his filth spell respects free action 20:25 slex is probably impossible if you aren't amy 20:25 [nd] hermetic (Hea Gno Mal Neu), 9214 points, T:9783, killed by a Woodland-elf, while frozen by a monster 20:25 I'm going to try to get my first ascension on it 20:26 that's my goal 20:26 He used to be able to paralysis-lock you with it ignoring free action, then shred all your armour (including artifacts), and bisect you 20:26 hothraxxa: I suspect slex is only impossible if you aren't willing to pour forty hours a week into it for a few months and source-dive everything. 20:26 jonadab: my approach to balance is "let's write up a massive essay on the wiki and analyze everything" :P 20:26 well maybe 20:26 or you can just ask amy everything 20:26 loli: how do you deal with not knowing what anything is? 20:26 I know what a lot of things are 20:26 If you _are_ willing to do those things, then you just need to play _enough_ games and sooner or later you'll get lucky and get one where it's technically possible to survive. 20:26 if I don't know something I ask amy 20:26 yes, amy is helpful 20:27 -!- Grasshopper has joined #hardfought 20:27 and she's given me enough advice to get a lot better 20:27 also has turned me into her evil challenge runs 20:27 right now, i think hothraxxa prob has the best shot at ascending slex out of ppl i know that arent amy 20:27 I passed the easy part of kuwa 20:27 did he get the amulet 20:27 and die 20:27 -!- mode/#hardfought [+v Grasshopper] by ChanServ 20:27 was hothraxxa that guy? 20:27 wow, that's nice to sya k2 20:27 The Slash'em approach to balance is "Gypsy wishes are unbalanced? Hmm. I know, let's add light sabres!" 20:27 I was told there are 2 people that have gotten close 20:27 well you've taken a serious approach ti playing it 20:27 to 20:28 Hey friends :D 20:28 Grasshopper o/ 20:28 I'm talking to you from linux for the first time 20:28 slex simply makes it next to impossible to identify anything 20:28 hello Grasshopper 20:28 !tequila Grasshopper 20:28 * Beholder tosses Grasshopper a tall glass of Patron Silver tequila, prayed over by Rodney at 175 degrees Fahrenheit. 20:28 altars vanish if you buc test too much 20:28 woooot 20:28 what do you mean hothraxxa ? you have identify scrolls 20:28 just drop everything on an alter 20:29 * Grasshopper licks salt from thumb, throws back the tequila, drinks a beer to wash it down 20:29 i do! everything resists identification 90% of the time 20:29 ah Grasshopper, so no more windows 20:29 I get resistance quite a bit as well 20:29 it's rather annoying 20:29 have you not had an altar vanish because you dropped stuff on it? 20:29 K2: My Win 10 laptop has a fucked hard drive 20:29 :/ 20:29 I've had alters go away 20:29 but not becuase I've dropped stuff 20:29 i have like a dozen spare laptop HDD's... need one? 20:29 I've had them later refuse to identify items 20:29 after identifying a lot 20:29 some boot sector or something issue I can't seem to fix 20:30 exactly. i finally got a unicorn horn. do you know what happened the first time i used it? 20:30 K2, I'd love a spare laptop drive 20:30 no idea 20:30 how many you need? 20:30 it turned to dust 20:30 rip 20:30 uncursed, by the way 20:30 that happens 20:30 I have a trip planned to the biggest IT mall in Bangkok in about 2 weeks 20:30 yeah 20:30 esp if you are a centar 20:30 no i'm a rodneyan 20:31 god I need to find the stairs 20:31 how annoying 20:31 maybe panic dig will do the job 20:31 in other news, I have also worked out how to connect to hardfought.org via linux (Xubuntu) default terminal software 20:31 congrats 20:31 just ssh 20:31 and bam 20:31 and wow, the colours are very different 20:32 on your terminal 20:32 you can change your colors fairly easily 20:32 it makes hack games quite pretty 20:32 there was a bit of fiddle-faddle involving the terminal window size 20:32 and I'll probably change the font 20:32 this level is evil :( 20:33 it needs minning 20:33 https://puu.sh/x71Bg/6f17870f9b.png 20:33 loli: yes, but I do like Putty for windows it is a very neat little app 20:33 panic digging only got me that far 20:34 there goes my weapon :( 20:34 it fell into lava 20:34 and there goes my shoes! 20:35 this game hates me 20:35 you can get putty for *nix as well, but it's pretty much un-necessary 20:35 so yeah, because my hard drive is fucked I'm running Xubuntu on my laptop from a USB key 20:35 loli: you know all those Evil Patch Ideas? Amy actively tries to apply as many of them as possible and make slex into the Evil Variant. 20:36 i personally use puttytray, as you can make the terminal window opaque 20:36 aosdict: she's sadistic when it comes to her game 20:36 Grasshopper: cool that'll work 20:36 that's part of what makes the game enjoyable 20:36 so how many drives do you need 20:36 I really like the camperstriker class 20:36 probably my favorite! 20:36 K2: I need 1 laptop HDD (=>750GB) that works 20:37 hmm 20:37 i dont think i have any that large 20:37 300-350GB tops if thats ok 20:37 the freight from US would be prohibitve 20:37 really K2 ? 20:37 here are my hardrives on this machine 20:37 https://puu.sh/x71Lq/0725b2fa4d.png 20:37 well they're drives i've pulled from laptops over the years 20:37 I filled up my laptops 1TB 20:38 the sizes range from 60GB to 320GB i think 20:38 in a electrostatic bag not doing anything heh 20:38 I'm a dumbass I attacked the stone monster again 20:38 I think I just wanted to not be stuck anymore 20:39 brb 20:39 K2 I have a bunch of old drives (not laptop ones, 3.5" big uns) but it is hard to find a use for small drives these days 20:39 loli: this is how id rewards me in slex: i find spanish gloves, i read standard id, all it tells me is unknown +0 uncursed gauntlets. i need gloves so i put them on 20:39 Whoops - your hands are squeezed by these gloves! 20:39 G) a cursed +0 pair of unknown gauntlets (being worn) {4} 20:40 was it cursed id or something? 20:40 so id is nerfed, and random gloves autocurse 20:40 some gloves autocurse 20:40 same with really powerful heels 20:40 no, it was uncursed standard id 20:40 that's jank 20:41 ID in slex has some chance of success associated with it 20:41 yes i know. my point is you have NO WAY to anticipate this 20:41 hothraxxa: attempting to ID the gloves is what cursed them 20:41 hah 20:41 hahaha 20:41 maybe ask amy, hothraxxa ? 20:41 maybe there is a better way to id? 20:41 I should not have said that 20:41 lol 20:41 she will make it so 20:41 now it's actually going to be implemented 20:41 i did in a similar case. no real explanation was forthcoming 20:41 that's just how slex is 20:41 EPI: reading standard ID has a 1/64 chance of cursing items 20:42 1/32 when cursed 20:42 and 1/128 when blessed 20:42 TIP: I like using shops to ID armor and weapons 20:42 I think this game wants me to play camper striker 20:42 Grasshopper: first, fins a shop 20:42 I think you mean a 1/32 when cursed, 1/8 when uncursed, and 1/1 when blessed 20:42 find 20:43 which is fine if you already have basic versions of everything 20:43 then, i have ch 3 20:43 but it doesn't help much with the "I need a pair of gloves" issue 20:43 time for another panic dig 20:43 this better give me the exit 20:43 take scrolls. there's a billion scroll names 20:43 hothraxxa: it doesn't matter how ugly you are, as long as you can work out the correct price 20:44 so i go to a shop and he tells me 600 for that scroll (buying) 20:44 but yes, I am not brave enough to try slex like you hothraxxa 20:44 ok. now i know there's a 200 scroll 20:44 [slex] dolores (Blo Ang Fem Cha) killed Moldoux, the Defenceless Mold, on T:1991 20:44 which one? no idea 20:44 oh and I died 20:44 [-57 -> 41] The great wyrm of power claws you!--More-- 20:44 aha, read standard id! 20:45 the scroll resists! 20:45 haha 20:45 I killed something sepcial 20:45 ?? 20:45 I might have 5-6 dropouts on an average day and I don't want to face punishment for something that isn't my fault 20:45 what 20:46 [slex] dolores (Blo Ang Fem Cha), 4061 points, T:1992, killed by a monster (great wyrm of power) 20:46 !lastgame 20:46 loli: https://www.hardfought.org/userdata/d/dolores/slex/dumplog/1502408220.slex.txt 20:46 anyway my first mind flayer is on this level, so i will probably be dead soon 20:46 This monster was under the protection of a Great Wyrm of Power! 20:46 that's why I died 20:46 <--- in: 3 20:46 Grasshopper yeah the largest drive i have is 32)GB if you would like it, pm me your mailing address, i'll ship it out tomorrow morning 20:46 320 20:47 I had no idea what those lines in the dumplogmean and I know englando 20:47 Attacks: 8d12 claw physical, 8d12 claw physical, 10d14 bite physical, 10d14 bite physical, 10d14 breath random breath 20:47 JESUS 20:47 because in slex, you can't help running into one of the bazillion F monsters that drain you in every way possible 20:48 I find it funny that with all that insanity there's a line amy still won't cross 20:48 which one would that be? 20:49 don't wanna mention it since it'll most likely summon her here and rant 20:49 too late, she reads logs 20:49 516 dmg max 20:50 or something 20:50 is there some rant i haven't been privvy too? i've seen many 20:50 oh well, I have a death wish anyway. It's dnethack's elder priest. she died to it and got really, really, really salty 20:50 ah yes, seen that one several times 20:50 She gets salty any time her usual strategy turns out not to work well in a variant that isn't hers. 20:50 zombifier: it's in slex 20:50 want the line? 20:51 Did you know that hte elder priest in dnethack is an absolute MOTHER FUCKER? Whoever invented that asshole tentacle attack should have its own real-life tentacle removed in a most painful way 20:52 it's quite enduring 20:52 time for another bloodsucker run 20:52 Is this a fortune cookie rumor, or a scroll label? 20:52 this time I hope I don't get stuck on a level 20:52 * aosdict wonders if she ever played unnethack and got to cthulhu... probably 20:52 that's for camperstriker 20:52 the loud speakers say that occasionally 20:52 camperstriker best role 20:52 due to all the messages 20:53 the medical kit is a really nice find 20:53 if you can find it 20:54 also angels seem op hothraxxa 20:54 any other races that are good? 20:54 anyone compiled slex on Linux? I tried but the game crashes when selecting roles manually 20:54 yes 20:54 ahh 20:54 zombifier: you are using the ncurses interface 20:54 use the tty interface 20:54 loli: i've played rodneyans almost exclusively 20:55 why? 20:55 loli: thanks, gonna try that 20:55 make ~/.slashemextendedrc 20:55 zombifier: furtheromore the curses interface is unstable in game 20:55 and should not be turned on 20:55 and will change your terminal color if you're not on the server for some reason 20:55 when i started it was for junethack and rodneyans can level up quickly 20:55 OPTIONS=windowtype:tty 20:55 ahh 20:56 they also cause monster creation rates to go through the roof 20:56 yani: higher-level spells take several turns to cast 20:56 you will be constantly mobbed 20:56 hmm 20:56 that sounds annoying 20:57 the monster spawn rate is already high enough as it is 20:57 it is. try sokoban sometimes 20:57 -s 20:57 I'll do it with the camperstriker 20:57 the best class 20:57 you can just spam phasedoor 20:57 until you get unlucky 20:58 rodneyans have teleportitis and can teleport at will 20:58 that's excellent 20:58 also permanent flying 20:58 same with angels kinda 20:58 as long as you stay on good terms with your god 20:59 shit 20:59 ate a newt and already deathly sick 21:01 jonadab: do you think it makes sense to be able to use a bow while wearing a shield, or should that be nerfed? 21:01 I'd feel better about saying yes, it should be nerfed if the other launchers took two hands to use, but they don't 21:04 aosdict: It is _arguable_ that bow should, realistically, be two-handed. But everyone already prefers daggers... 21:04 I'd say gameplay and balance should normally trump realism. 21:05 -!- zombifier has quit [Quit: ChatZilla 0.9.93 [SeaMonkey 2.46/20161213175921]] 21:05 lol I just glanced at my screen and saw "trump realism" 21:05 Well, that and I can envision drawing a bow while wearing a shield, though accuracy probably wouldn't be quite as good 21:05 which I assumed to be some variation on "alternative facts" 21:05 Yeah, okay, leaving it single-handed for now 21:05 an oxymoron if ever I've seen one 21:06 LOL 21:06 as a serving member in the US military, I am not allowed to publically say negative things about whoever our commander in chief happens to be 21:07 what goes on in my head is an entirely different matter 21:07 -!- zombifier has joined #hardfought 21:07 heh 21:07 K2: My favourite oxymoron is "army intelligence", which I think Danny DeVito explained in some movie 21:07 yesssssss 21:07 the military trumps the first amendment somehow? (no pun intended) 21:08 private citizen/civilian is not the same as someone serving 21:08 trump trumps it 21:08 different set of rules 21:08 in fact 21:08 he tells us that the media is all lies 21:08 we have to abide by two separate sets 21:08 which is the first thing a dictatorial ruler would say 21:08 normal laws plus UCMJ 21:09 trump started his own 'news' network fyi 21:09 debuted earlier this week 21:09 yeah, a propoganda network you mean 21:09 basically yeah 21:10 that's another thing dictatorial rulers are quick to do 21:10 there are some disturbing parallels 21:11 you don't get to be in charge of the world's largest democracy and then tell everyone that the free media (which safeguards democracy) is all bullshit 21:11 i dont think he'll make it to the end of his first term 21:11 but 21:11 you think?? 21:11 i dunno 21:11 Bush Jnr made 2 terms and surprised everyone 21:11 i never thought he'd ever be elected but look what happened 21:12 shit 21:12 complacency 21:12 that's what happened 21:12 we used to think dubya was the worst pres ever 21:12 would pay to have him back at this point 21:12 yeah well, life has a was of surprising us all 21:12 yeah well, life has a way of surprising us all 21:12 What would you give to have Reagan back? 21:12 we derve what we got 21:12 deserve 21:12 True. 21:13 Reagan wasn't that bad in comparison 21:13 it took me a very long time to figure out what people meant when they said dubya. I eventually concluded he was a member of Bush's cabinet. 21:13 reagan would be considered a moderate by todays standards 21:13 aosdict: Wat? 21:13 aosdict: Do you not English? 21:13 How do _you_ pronounce the name of the letter W? 21:14 dub - ya 21:14 Double-you 21:14 if you're from where dubya is from, its dubya 21:14 * aosdict zaps a wand of cloning at jonadab 21:14 aosdict: That's how most Americans _think_ they are saying it, when they aren't listening to themselves. 21:14 But what they actually say is either "Dubbaya" or "dubya". 21:14 Almost without exception. 21:15 i grew up in texas and oklahoma. its dubya 21:15 the plural of y'all is all y'all 21:15 so did GWB afaik 21:15 Also, I never really noticed that George Bush Jr was referred to as W a lot 21:15 In the Midwest, it becomes "dubya" when spoken quickly, "dubbaya" when being more careful. 21:15 ? 21:16 Nobody over age nine is routinely so careful about saying it as to pronounce it as "double you". 21:16 oh yeah the Bush's are texas through and through 21:16 texans 21:17 aosdict: "George W. Bush" takes too long to say. 21:17 jonadab: the second reason is probably more of a contributing factor 21:17 aosdict: And this is the first term I've ever seen anyone call him "George Bush Jr", I think. 21:17 Sometimes he was just called "Bush" or "President Bush". 21:18 what do you call George HW Bush then? 21:18 Which was ok if in context it was clear that you meant the current one (at the time). 21:18 aosdict: "George Bush". 21:18 Nobody ever used his middle initials until his son got elected. 21:18 Which is why W. became W. 21:18 Yeah, I meant how is he referred to now? Bush Sr? 21:18 Sometimes. 21:19 Or sometimes "George H.W. Bush". 21:19 (A longer name is less of a problem when he's been out of office for a while.) 21:19 (Because we don't refer to him nearly as often.) 21:19 he still gets to be called Mr. President though, right? 21:19 Sometimes he's also called "the first Bush" 21:20 I thought that was only for the current president? 21:20 Grasshopper: Yes, but only in polite contexts. 21:20 A bird in the hand is worth two bushes 21:20 We've never had a President named Bird, or Byrd for that matter. 21:20 (And when I hear that name, I always think of the arctic/antarctic explorer.) 21:21 (Though, as with all surnames, it's been had by others.) 21:21 OK, let's change this a little: "An Obama in the hand is worth two bushes" 21:21 Don't talk about Obama. It's too soon. 21:21 yeah, we're all still hurtin' 21:22 Australia had a PM named Bob Hawke for a while. At the time, the opposition leader was named Andrew Peacock, and it was a widely held view that the entire house were a bunch of galahs. 21:22 Tangles: that view was actually correct 21:22 TIL that Australians think "galah" is a word. 21:22 however, it is even more correct now 21:22 jonadab: galah is a type of Australian native parrot 21:23 aaaaaaanyway. Jonadab's point is well made. Gameplay anf balance should trump realism. 21:23 Ah. 21:23 renowned for doing stupid things 21:24 for example: they will deliberately fly into twisters (mini-tornadoes) so that they can get spun around and flung out 21:24 just for fun 21:24 and when they sing... chatter... the sound is deafening 21:25 Tangles: well crap, I've been trying to write a system that has gameplay, balance, *and* realism. What do? 21:27 aosdict: make projectile weapns do more damage but less multifire? 21:28 The large dog zaps a quadratic wand! You are being punished for your misbehavior! The large dog zaps a wand of punishment! You are being punished for your misbehavior! Your iron ball gets heavier. 21:28 *facepalm* 21:28 with regards to crossbows, dnethack makes them do much more damage per shot but only ever fire 1 projectile. I think they get 3x enchantment and 3x skill bonus damage 21:28 *at expert 21:29 NeroOneTrueKing: sounds appropriate 21:30 aosdict: I don't like to get too involved in these discussions, but I personally would prefer to live with a little suspension of disbelief for a good gaming experience. If you can make it realistic as well, all the better. 21:30 Yeah, crossbows are really powerful IRL compared to many other ranged weapons. 21:30 Hmm, I was thinking that galahs would work almost as well as gulls in that joke about the bioengineered dolphins, but then I realized that if you set the joke in Australia, the sleeping lions don't really work. 21:31 in defence of multishot - your attacks are meant to happen with an "abstract" turn and involve a lot of melee - dodging attacks, crossing blades, exchanging pleasantries with your opponent, that kind of thing 21:31 but only one "attack" 21:31 NeroOneTrueKing: but then again, people were talking earlier about how dnh responds to overpowered stuff by buffing the other stuff 21:32 so for missle weapons, where you are not in "melee", it kind of makes sense that you get more attacks 21:32 aosdict: yes, there's an artifact crossbow that shoots twice as many bolts :) 21:32 and another one that doesn't get the bonus damage but shoots up to eight or nine bolts 21:32 BUT... maybe penalise players that try to use missile weapons in melee situations 21:33 aosdict: My understanding was that the real advantage of crossbows IRL was that they were easier to use, and easier to learn to use. 21:33 so in slex, praying doesn't remove the heavy iron ball 21:34 Same with the musket, which had worse range and accuracy than a longbow, but any raw recruit could be trained to use it. 21:34 (And that was fine, for volleys.) 21:34 I think that at long range, they aren't so great, but they're good at short range, punching through armor and stuff 21:35 Don't think this is distinct enough to add to nethack though. 21:35 Yeah. 21:35 Well, NetHack needs firearms about as much as it needs light sabres, IMO. 21:36 (I was referring to crossbows, not muskets) 21:36 Ah. 21:36 [fh] NeroOneTrueKing (Wiz Elf Fem Law) wished for "uncursed magic marker named the Rod of Lordly Might", on T:46864 21:37 And yeah, if you want to improve on the _range_ of a longbow, you want a compound bow (or a rifle). 21:39 If you want a faster repeat-fire rate, you want a short bow, or maybe a blowgun and darts. 21:39 (Or automatic firearms, obviously.) 21:40 obligatory yani: blowguns 21:43 [fh] NeroOneTrueKing (Wiz Elf Fem Law) performed the invocation, on T:46951 21:44 YASI: tasp. ranged weapon, works on anything that's neither mindless nor immaterial. Does no damage, but causes one turn of paralysis, and monsters that are hit with it repeatedly have a chance to be tamed. 21:45 It would have to be charged, obviously, or it'd be OP. 21:47 And, of course, to keep the monster tame you would have to continue to tasp it from time to time. 21:48 Ah. This is a good way to nerf twoweaponing. 21:48 [nd] Grasshopper (Bar Hum Fem Neu) wished for "uncursed magic marker", on T:66801 21:48 ? 21:48 well, that was my wrest wish and it only took about 150 turns to squeeze it out 21:48 ! 21:49 We already have the "thrown weapons are almost useless without an empty hand" nerf, plus a spellcasting nerf that wielding weapons and having both hands occupied hurts spell success as well 21:49 Twoweaponing has basically no ranged options. 21:49 jonadab: as electro-shock thereapy, it should have a chance to cure hallucination and confusion as well 21:50 Short of stopping the twoweaponing to do one of those things, of course, but you shouldn't be doing that in the heat of battle 21:51 now we know why wizards don't two-weapon 21:51 aosdict: Hmm, that /might/ work. I have to think about that. 21:52 Think through the implications. 21:53 Maybe wands' flawless accuracy regardless of how occupied your hands are has to be adjusted too 21:58 apply dex bonuses to the chance of wands hitting targets 21:58 and wands skill, as appropriate 21:59 do keep in mind that quarterstaves are two-handed weapons 22:00 NeroOneTrueKing: my initial thought on that matter was to give wizards a short staff, which is worse than a quarterstaff as a melee weapon but is one-handed and light enough not to inhibit spellcasting 22:00 seriously, quarterstaves are like 6-8 feet long, why are wizards walking around with those? 22:01 because gandalf thats why 22:01 AND big giants swords 22:01 who also twoweapons a quarterstaff and a giant sword 22:01 Longsword 22:01 fuckin A right 22:01 FIQ: make FIQhack allow wizards to twoweapon like Gandalf did 22:01 Gandalf is actually a fighter, not a wizard 22:02 um 22:02 pretty sure he's a wizard 22:02 istari 22:02 https://www.reddit.com/r/DnD/comments/3jpksw/gandalf_was_really_just_fighter_with_int18/ 22:02 actually that's the plural but I have no idea what the singular is... istar? 22:02 I mean, lore-wise he is a wizard 22:03 But seriously, he doesn't do that much magic 22:03 reddit is fake news 22:03 gandalf is a wizard 22:04 He does seem to prefer beating things to death than using magic though 22:05 there's that bit about how the Istari are not supposed to fight Sauron by force 22:05 Like, what kind of wizard charges in to battle on horseback, while twoweaponing a two-handed staff AND a longsword 22:06 https://en.wikipedia.org/wiki/Gandalf#Characteristics 22:06 from the author's own words 22:06 Gandalf = wizard 22:07 maybe he wanted some excitement 22:07 maybe it gets boring standing in the back casting spells all day 22:07 Maybe he just got too high off of the pipeweed 22:07 And forgot how to use magic 22:09 or he's like old school D&D and gets like one high level spell a day 22:09 another thing to note: in Nethack, you cast spells by waving your arms around, and your quarterstaff is just a stick of wood. Gandalf cast spells *using* his staff. 22:10 -!- Jonathanhanes_ has joined #hardfought 22:10 -!- Webmant9 has joined #hardfought 22:10 real wizards don't need a crutch for spellcasting 22:10 aosdict: maybe it is for effect. Like when you do "magic" as a kid by having your brother cause a distraction while you move the object 22:11 is it clear that Gandalf *couldn't* do those spells without the staff? 22:11 Stupid idea: modify FIQhack's spell quivering to only work with staffs, and make quarterstaffs channel your quivered spell, making it stronger 22:11 -!- Menche has quit [Remote host closed the connection] 22:11 -!- Menche_ has joined #hardfought 22:11 yeah, my point is just that you somehow have to make the gestures while holding a heavy staff 22:11 which seems a little wrong 22:11 All wizards carry big sticks 22:11 or the work of a great wizard! 22:12 Tarmunora_: and speak softly? 22:12 When I was a kid, I made a Gandalf-like non-player character... and made him a fighter/mage 22:12 in D&D I mean, as D&D didn't allow wizards to use swords 22:12 hi 22:12 Hello FIQ, Welcome to #hardfought 22:13 but... Galdalf wielding both staff and sword at the same time is something I'm only familiar with from the movies 22:13 Gandalf 22:13 That is likely true 22:14 here's a question for you FIQ: in fiqhack should I be able to get a helmet of reflection? The wiki page on object properties suggests otherwise. 22:14 wizards, as relatively "frail" dudes and dudettes, could be using a staff to help prop themselves up (like a walking stick) 22:15 Grasshopper: yes, I think wizards should literally get a walking stick 22:15 NeroOneTrueKing: where does wiki claim this 22:15 you can beat things up with it a little, but you don't use it skillfully like a quarterstaff 22:15 https://nethackwiki.com/wiki/Object_properties 22:15 fiqhack doesn't prevent any armor from getting any property 22:15 Reflection: Grants reflection. Not applicable to projectile weapons, boots, gloves, or helmets. 22:15 er that's wrong 22:15 Ahh 22:15 I see 22:16 Yeah, FIQhack allows reflection on everything 22:16 there's no mention in the fiqhack section about it 22:16 Also I'm pretty sure you can have gloves of reflection in grunt 22:16 K2: ^ 22:16 Er 22:16 Not everything 22:16 But every armor 22:16 And weapon 22:16 (that isn't a projectile weapon) 22:17 i dont think you can have gloves with reflection in grunt 22:17 the RNG hath repaid for it's drought of artifacts with a bounty of magical properties 22:17 I'm actually pretty skilled with a staff (I practiced a lot as a kid), and would prefer a strong or even iron-shod staff to a sword 22:18 i prefer my SigSaur 516 22:18 *SigSauer 22:18 gdammit 22:18 -!- Webmant has quit [Ping timeout: 260 seconds] 22:18 -!- Jonathanhanes has quit [Ping timeout: 260 seconds] 22:18 yani: magical staffs that amplify a certain spell school when wielded 22:18 -!- Menche_ has quit [Read error: Connection reset by peer] 22:18 -!- eady has quit [Ping timeout: 260 seconds] 22:18 NeroOneTrueKing: have you been trying to get a gift *before* you decided to convert 22:19 The SigSaur. Best/worst dinosaur ever 22:19 aosdict: those exist in spork 22:19 FIQ: before, on dlvl2 and after, on dlvl 20 or so 22:19 aosdict: those staves exist in sporkhack 22:19 for every spell school 22:19 K2: FIQ: I don't have encyclopedic knowledge of all variants, particularly ones I haven't played :P 22:19 K2 the Slowpoke 22:20 i am drinking 22:20 get offa me 22:20 :P 22:20 !booze K2 22:20 * Beholder hands K2 a tumbler of grappa, brewed by TheresaMayBot at 45 degrees Fahrenheit. 22:20 mmmmm 22:20 !rum Grasshopper 22:20 * Beholder pours Grasshopper a tall glass of spiced rum, brewed by Arsinoe at 403 Kelvin. 22:20 never argue with a drink 22:20 drunk 22:20 not drunk 22:20 drink drank drunk 22:20 don't argue with a drink either 22:21 NeroOneTrueKing: according to this thing, artifact count is zero 22:21 *artigift count 22:21 Bad luck, I guess 22:21 I'm willing to accept terrible, terrible luck if someone else gets a gift 22:22 that's what bones are for 22:22 fun fact: it takes 30 seconds for NeroOneTrueKing's save to load so I can debug stuff 22:22 hooray NH4.3 saves 22:23 NH4.3 saves saves the day 22:24 NeroOneTrueKing: bad 22:24 it took a while but I eventually got a RNG result that gives a gift 22:24 I didn't get shit 22:25 -!- greqrg has quit [Quit: Disconnected] 22:25 is it just my save? If so, that's fine, I'm on the ascension run anyways. 22:25 -!- Tangles_ has joined #hardfought 22:26 no 22:27 everyone is affected 22:27 basically it will only create artifacts that already exist 22:27 rather than the other way around 22:28 -!- Tangles has quit [Ping timeout: 260 seconds] 22:28 !tell K2 pushed a fix 22:28 Will do, FIQ! 22:28 -!- Menche has joined #hardfought 22:33 NeroOneTrueKing: the mirror only grants double damage to knights 22:33 oops, oh well 22:33 also not sure if you noticed 22:33 but the explosions are gone 22:34 also, castalias is a thing you can map keys to 22:34 [fh] NeroOneTrueKing (Wiz Elf Fem Law) wished for "uncursed magic marker named the Garnet Rod", on T:49067 22:35 garnet rod is how I died on astral 1 step from coaligned altar before my first dnh asc 22:35 time to learn how to remove boulders 22:35 Ouch 22:35 Didn't drink a potion of acid? 22:37 [fh] NeroOneTrueKing (Wiz Elf Fem Law) reached the Plane of Earth, on T:49070 22:38 NeroOneTrueKing: sorry for non-intuitive UI 22:39 didn't figure out a sane way to do it 22:39 I think it would be good if there was a way to see what aliases have been set 22:39 um... there is 22:39 + 22:39 read the top line in that window 22:40 ah okay, it says what it's been set to in the main message box 22:40 Your magical abilities (*: forgotten, #: aliased) 22:41 or wait hold on, it isn't. just that I set 'I' to castalias identify 22:41 -!- Jonathanhanes has joined #hardfought 22:42 I mean as a way to see that I have linked ctrl-I to cast identify andor vice versa, for example 22:42 ah 22:43 my vampire lord is going to starve to death :( 22:43 no 22:43 that would be a lot tricker, I'd imagine 22:44 not really 22:44 -!- Jonathanhanes_ has quit [Ping timeout: 248 seconds] 22:46 -!- Tangles_ is now known as Tangles 22:47 hm 22:47 perhaps 22:49 because proper key names isn't exposed to the engine 22:58 okay I'm running into a problem here 22:59 aosdict: "Scroll identification only works 100 times out of 184." it seems to be different for every game 22:59 I'm getting spammed with "You'd better wait for the sun to come out." 23:00 Invalid location for monster-usage of position spell? 23:00 spell.c/1477 23:00 FIQ: ^ 23:02 [fh] NeroOneTrueKing (Wiz Elf Fem Law) reached the Astral Plane, on T:49523 23:04 a monster is trying to cast fireball/cone of cold in plane of water 23:04 go NeroOneTrueKing! 23:04 K2: Message from FIQ at 2017-08-10 22:28 EDT: pushed a fix 23:05 what did ya fix 23:05 fixed artifact creation bug 23:06 updated 23:08 no K2, you have to say "FIQhack updated" so I can grep for it and count the number of times you've said that exact message 23:08 FIQhack updated 23:08 nerd 23:08 yay 23:08 :P 23:09 way back when, when i was hosting FPS type games, there was a regular named oreo, who was a decent player and a talented scripter 23:09 he wrote a script that tracked how many times i said 'heh' 23:10 apparently it was a significant percentage of what i said in the channel 23:10 heh 23:10 [slex] dolores (Blo Ang Fem Cha), 29869 points, T:6899, killed by a cowardly attack on her breasts 23:10 what? 23:11 FIQ: I killed Croesus. why doesnt FIQhack livelog that 23:11 I just killed death with a wand of death 23:11 NeroOneTrueKing: is this ok? 23:11 F - finger of death 7 #:Ctrl-I attack 0% 86% 23:11 that would be great 23:12 [fh] NeroOneTrueKing (Wiz Elf Fem Law) were saved from death by your amulet of life saving!, on T:49709 23:12 NeroOneTrueKing: pushed 23:13 !tell K2 pushed 23:13 Will do, FIQ! 23:13 wait, what did you just push 23:13 K2: Message from FIQ at 2017-08-10 23:13 EDT: pushed 23:13 and i'm right here 23:13 [fh] NeroOneTrueKing (Wiz Elf Fem Law) were saved from death by your amulet of life saving!, on T:49724 23:14 the grammar, it hurts 23:14 K2: it should 23:14 @ livelogging croesus 23:14 K2: I added this: Add showing of key name to spell list 23:14 FIQhack has one of the fastest release cycles I've ever seen 23:15 FIQ: at some point you should incorporate the livelogging Tangles did for dev 23:15 Hm. aosdict: Something to consider is that vanilla assumes that a two-handed weapon effectively leaves a hand free, as long as it's not cursed. 23:15 aosdict: people ask for features 23:16 I don't see why not 23:16 so I add it 23:16 Chris_ANG: are you reading backscroll or the wiki page? 23:16 for this particular case, anything to make castalias more intuitive to use 23:16 because it's awkward atm 23:16 wiki page 23:16 did someone already bring that up upchannel? 23:16 No 23:17 Anyway, I was not going to make it as much of a punishment as shields, but still in the same ballpark. 23:18 After all, if you transferred it to one hand to make gestures, the other hand is still holding a heavy weapon 23:18 aosdict: it almost spunds as if you're devloping your own variant ;) 23:18 which is not so different from one hand holding a heavy shield 23:18 *sounds 23:18 Balancehack 23:18 K2: it might happen, it might not. I've mentioned it a couple times 23:19 I don't think I'm interested in making a "full" variant though 23:19 as I've said, I'd like to test balance changes and things on a base of 3.6 and then reset everything to test a different change 23:19 This combat system is radical enough that if you implement it, you'll have a full variant :P 23:19 Not that that's a reason not to implement it. 23:20 Oh yes, I would not be starting with this. 23:20 But a lot of stuff in the balance issue list hinges on combat, and I've also kind of been sidetracked by saying "combat system is kind of bad, what if I threw it all out and started over" 23:21 [fh] NeroOneTrueKing (Wiz Elf Fem Law) were saved from death by your amulet of life saving!, on T:49781 23:22 Chris_ANG: writing more on the damage reduction formula now, it's probably the last major piece of the system, after that it should mostly be tweaking 23:23 [fh] NeroOneTrueKing (Wiz Elf Fem Law), 242850 points, T:49801, ascended https://www.hardfought.org/userdata/N/NeroOneTrueKing/fiqhack/dumplog/2017-08-11%2003%3A23%3A44%2C%20NeroOneTrueKing-Wiz-Elf-Fem-Law%2C%20ascended.txt 23:23 Congrats NeroOneTrueKing 23:24 congrats NeroOneTrueKing! 23:24 congrats :) 23:24 thanks all 23:24 Congrats Nero! 23:25 and I thought that I was over-preparing. Nope, needed all those potions of full healing because tag-team riders are *nasty*. 23:26 woooo! 23:26 congrats NeroOneTrueKing! 23:28 thanks K2 23:30 grats NeroOneTrueKing! 23:31 K2: sorry 23:31 fixed grammar of some livelog stuff 23:32 just now? 23:32 and changed some to be similar to other variants 23:32 yes 23:37 oof, all this writing has wiped me out 23:37 FIQhack updated 23:38 aosdict: what if the monsters that ignore E 23:38 coincide with the ones ignoring conflict 23:39 -!- Tarmunora has joined #hardfought 23:39 this suggestion is apropos of what? 23:39 slight change of 23:39 >Idea #4: conflict works as usual, but doesn't affect @ or A at all. 23:40 also 23:40 "Protection wears off way too fast to be any use in combat." 23:40 "Bleech! Rotten food! Everything goes dark. You feel strong!" 23:40 this is not true 23:40 * Grasshopper feels confused 23:40 protection is overpowered 23:40 but the fact that it is a huge pain to keep up 23:40 nobody bothers with it 23:41 okay, will probably get to it tomorrow. I'm going to sleep 23:41 if you're reading the balance issues page, feel free to put comments on the talk page :) 23:41 Idea #4: Attribute loss from abuse is a permanent loss. 23:41 dnethack does this 23:41 * Grasshopper attempts to read a spellbook - cannot because I am blind 23:41 ok 23:42 with spectacles on 23:42 that will help a lot more than me having to search through irc to make sure I didn't forget everything 23:42 thanks 23:42 -!- Tarmunora_ has quit [Ping timeout: 240 seconds] 23:42 I feel like Nick Fury 23:43 FIQ: sporkhack does it also 23:43 unihorn wont restore 23:44 dnethack has 2 things on attribute loss: 23:44 1) unicorn horn won't restore any lost ability score 23:44 2) ability score lost to abuse can't be regained by any "restore ability" -- potions or spells 23:46 or exercise 23:46 same as spork 23:46 err 23:47 i read that as can not cant 23:47 in spork a !oRA will work 23:47 or the spell 23:47 which makes them more valuable and actually worth keeping around 23:48 amy HATES that abuse=permaloss thing 23:48 K2: not the same thing 23:48 in dnethack, losing an attribute point from abuse is permanent 23:48 as in, can't even restore with !oRA 23:49 yeah i gathered that from NeroOneTrueKing statement 23:50 The moment you have a dozen health potions, some gain energy, and some holy water though, you can just !oGA your way to max stats 23:51 doh 23:51 i just drown the oracle 23:52 This isn't ToME. Drowning the friendly NPCs is not a valid tactic 23:53 K2: congrats 23:53 heh 23:54 If I was there I could have saved him as I'm a trained lifesaver (water) 23:54 but alas, NHINRL 23:55 K2: Please do not engage in murder of peaceful creatures 23:56 oracle should have moved his slow ass 23:56 i'm dipping 23:56 he's the oracle, supposed to be all powerful 23:57 RIP 23:58 oracle is a she 23:59 how dare you assume its gender identity 23:59 it could self gender ID as a proto male demi succubus for all you know 00:00 SHAME 00:00 I need to handle corrupted saves more gracefully 00:00 I have one on hdf, haven't told K2 to remove it so it can be there and remind me to fix stuff 00:00 FYI you can set your gender on facebook to custom and put in anything you want 00:01 that has been a feature for like 00:01 2 days 00:01 earlier today i set mine as 'toaster oven' 00:01 hothraxxa (if he uses the book of face) will prob set his as 'meat popsicle' 00:02 do you use facebook FIQ? 00:02 I have a facebook account 00:02 I hardly ever use it 00:02 hah 00:02 lies 00:03 you have my realname 00:03 i do 00:03 you can look at my profile 00:03 and my amazing activity 00:03 i havent 00:05 oh gdamn 00:05 there's more than one of you 00:05 you're prob the one labelled as 'single' 00:06 savage 00:06 :P 00:06 or the one who's married to jenny and listens to quiet riot 00:06 lol 00:06 you have my age too 00:07 seriously... theres a million of you, exact name 00:08 just try some at random 00:08 actually only 18 00:08 i have no image 00:08 hah yeah i should add all 18 as a friend 00:08 :P 00:08 3 without profile pic 00:08 see 00:08 progress 00:08 KTH Royal Institute of Technology ? 00:09 yes 00:09 apparently I am #9 00:09 of the ones with my name 00:09 you were #18 on my listing 00:09 lol 00:10 hmm so 00:11 i dont see you as the type to have anything on fb public facing to non friends 00:11 I don't have jack shit on my facebook 00:11 I told you :P 00:11 well ffs 00:11 at most you can find my rl friends 00:11 https://www.facebook.com/keith.simpson1971 - that's me 00:11 add me if you want 00:13 I can't follow links to desktop facebook on my OP 00:13 it would probably melt 00:13 :/ 00:14 ok I found you I think 00:15 heh 00:15 got it 00:15 yeah you were #18 00:16 oh no, now you can see all my facebook events 00:16 lol 00:16 because I have so many of them 00:16 i dont post often 00:16 my wife posts a dozen times a day 00:16 heh 00:17 wow zero photos 00:17 thats a first 00:17 told you 00:17 I hardly ever use it 00:17 I only made it in first place to get in touch with classmates during highschool 00:17 ^ that 00:18 wife made me get on it back in 2007 right before my last deployment 00:18 because they insisted on facebook as a general "post class info stuff" thing 00:18 and its good for reunion planning 00:18 mhm 00:19 if you search hard enough, you can find indirect photos of me 00:19 but I don't have any of my own 00:19 and its actually very good for sharing pics of the kid with family 00:20 grandparents eat that shit up 00:20 mhm 00:26 searching in FIQhack is insane 00:26 i'm finding stuff 3 squares away 00:27 [dnh] Tarmunora (Ana Dro Fem Cha) entered Minetown for the first time, on T:1191 00:27 yes 00:27 in fiqhack, searching is good 00:27 removes the tedium of searching in nethack 00:28 and K2 00:28 ah crap 00:28 only 1 s needed 00:28 to find stuff next to you 00:28 press P 00:28 and tell turncount 00:28 save file corrupted 00:28 17201 00:28 press P 00:28 it's safe 00:28 i was eating while standing onco aligned altar while priest was casting spells on itself 00:29 that is a minor issue 00:29 Error: save_mon: muxy and mxy are equal? │ 00:29 Location: libnethack/src/makemon.c:2430 │ 00:29 Game ID: K2_1502312442 00:29 caused by ais being silly 00:29 yes 00:29 I am seeing it 00:29 ok 00:29 it's caused by several bugs in different places 00:29 ok 00:29 huh 00:29 that's why the error keeps showing u 00:29 p 00:29 it's much more common in nethack4 00:30 slightly less common in 4k 00:30 and fairly uncommon in fiqhack 00:32 so genociding in fiqhack - anything special i need be aware of? or is it pretty much like vanilla 00:32 NeroOneTrueKing: how was planes an sanctum? 00:32 like vanilla 00:32 ok 00:32 buh bye L 00:32 rip 00:32 sanctum was easy-breezy 00:32 since I felt like I overprepared 00:32 ok 00:33 I didn't use any full healing, my power pool was sufficient, etc etc 00:33 yea 00:33 h 00:33 Astral plane, on the other hand, was nuts. 00:33 what happened 00:33 got stuck beside Death and Pestilence 00:33 ouch 00:34 that's not a predicament you want yourself in 00:34 no siree. 00:34 i've died on astral before because of being dbl teamed by riders 00:34 almost happened to me on my spork asc 00:35 It was impossible to cut a path through the enemies to get away from the riders 00:35 So I used a magic harp to tame stuff so I could put my new pets between me and the riders and get closer to the next altar 00:35 remember that monsters can zap each other with buffs 00:36 so if someone spawns with speed monster 00:36 they can haste themselves and others 00:36 and monsters can be very fast in fiqhack 00:36 so yeah 00:36 purple rain baby 00:36 purple rain 00:36 Are there any protections against being slowed? 00:36 I was a combination of slowed, stunned, and ill most of the time while in my predicament. 00:42 [nd] jonathanhanes (Cav Dwa Mal Law) became literate by reading the fortune inside a cookie, on T:3873 00:42 no cure for slowness 00:42 at all 00:43 only way is to wait it out 00:44 couldnt you zap yourself with a wand of speed monster? 00:45 -!- Tomthetom has joined #hardfought 00:46 tried, but it did nothing 00:46 and there are so many spellcasters, ugh 00:46 it's one thing in vanilla that the priest summon tons of insects 00:47 those can be killed by a couple swings of Excalibur or a blast of magic missiles 00:47 less so when those priests are summoning dragons 00:48 hah damn 00:48 charm monster is your friend 00:49 i am playing a monk in FIQhack right now, i have that spellbook 00:49 time to go read it 00:49 it only takes a couple priests with "summon nasty" to fill a room with more hp than you can kill with a sword 00:49 hmm question 00:49 i also have the spellbook 'summon nasty' 00:49 if i use it, will those basties be tame to me? 00:49 nasties 00:50 they will be tame 00:51 but it only summons a few. 00:51 thats ok 00:51 few is better than one (create familiar) 00:51 yes, and they are generally better, too 01:06 -!- Grasshopper has quit [Ping timeout: 260 seconds] 01:07 [dnh] Tarmunora (Ana Dro Fem Cha), 7074 points, T:3207, killed by a blast of frost 01:09 [nd] jonathanhanes (Cav Dwa Mal Law), 3272 points, T:5134, killed by a gray unicorn 01:09 !role 01:09 Jonathanhanes: nhdev valkyrie 01:13 K2: I pushed a bug fix for dnh. I had a mistake in one of the .des files :/ 01:14 ok 01:14 dNetHack updated 01:14 thanks :) 01:14 yw ;) 01:17 die deerfly DIE 01:18 !rng Premium Heart | Shambhala 01:18 Tarmunora: Premium Heart 01:18 * K2 has a bug wand zapper 01:25 k2, how is it? 01:25 how is what? 01:25 that wand 01:26 -!- Tomthetom00 has joined #hardfought 01:26 oh man 01:26 you can pick them up for under 10 bucks at walmart 01:26 look like a tennis racket 01:27 zapzapzap 01:27 nice loud pop when you zap a bug 01:27 they are a nice idea 01:27 do it long enough you can smell the smoke 01:27 but it's hard to actually kill the fruit flies I would need that for 01:27 been using these in the field for last 3 yrs now, wont go with out them 01:27 * K2 is skilled in bug zap wands 01:28 i can zap anything 01:28 fruit flies are a different deal 01:28 best way to get those, setup those little traps with vinegar 01:29 -!- Tomthetom has quit [Ping timeout: 255 seconds] 01:30 bug_sniper get these - https://www.amazon.com/gp/product/B01LBN928K/ 01:30 work like a charm 01:30 sure, next time I have them 01:30 !who 01:30 Tomthetom00: Tarmunora [dnh] dolores [slex] k2 [fh] jonathanhanes [nd] 01:36 -!- LarienTelrunya has joined #hardfought 01:39 "This is terrible, K2. You have deviated from the true path! You know that 01:39 Chih Sung-tzu requires the most strident devotion of this order. The brotherhood must stand for utmost piety. 01:39 "Go from here, atone for your sins against Chih Sung-tzu. Return only when you have purified yourself." 01:39 wtf FIQ 01:39 [nd] jonathanhanes (Val Dwa Fem Law) rejected atheism by offering a gecko corpse on an altar of Moloch, on T:3619 01:41 yeah any alignment penalty things set your alignment to 0 and then do the penalty 01:41 so you have negative alignment for a time after being a bad person 01:42 K2: ...rushed out another bugfix. Turns out I also broke artifact wishing. 01:42 heh 01:42 dNetHack updated 01:43 NeroOneTrueKing I have no idea what I did to be bad 01:43 ate meat? 01:43 [nd] jonathanhanes (Val Dwa Fem Law) had Mjollnir bestowed upon her by Tyr, on T:3704 01:43 and i'm neutral 01:43 no i havent 01:43 Thanks again 01:43 np 01:44 love my server, pretty speedy 01:44 longest compile i've ever seen was slex from scrtach took about 5 min 01:44 maybe 6 01:45 how am i gonna fix my alignment 01:45 hmm 01:45 and i dont have any means of enlightenment either 01:46 [nd] jonathanhanes (Val Dwa Fem Law) became literate by reading a scroll, on T:3769 01:46 kill things, I suppose 01:46 or find a neutral altar and do some sacrificing 01:46 i am doing just that luckily there's a temple with co-aligned priest on same level as quest portal 01:47 i required unicorns 01:47 require 01:47 -!- elenmirie has quit [Read error: Connection reset by peer] 01:49 hmm 01:49 i am devoutly neutral 01:50 I think you need to be pious for the quest. 01:50 in vanilla rules, at least. 01:50 past turn 2000, right? 01:50 way past 01:51 -!- elenmirie has joined #hardfought 01:51 -!- mode/#hardfought [+v elenmirie] by ChanServ 01:54 [slex] dolores (Ble Ang Fem Cha), 3077 points, T:1530, killed by a monster (hallucinogen-distorted kickboxing girl) 01:55 ok i need to kill some stuff 01:55 and pray 01:55 and find unicorns 01:57 oh look a black unicorn 01:57 oh look i am pious now 01:57 \o/ 01:58 Kaen is trembling in his boots. 01:59 he better be 02:02 [nd] jonathanhanes (Val Dwa Fem Law) had Excalibur thrown at her by some watery tart, on T:5124 02:04 !whereis K2 02:04 Tomthetom00: k2 [fh]: No details available 02:04 aww 02:04 fiqhack does not have whereis 02:04 * K2 looks at FIQ 02:06 * Tomthetom00 looks at FIQ 02:14 [nd] jonathanhanes (Val Dwa Fem Law) averted death, on T:6268 02:18 -!- Tarmunora-m has joined #hardfought 02:20 buh bye master kaen 02:21 :D 02:26 [nd] jonathanhanes (Val Dwa Fem Law) completed Sokoban, on T:7447 02:30 -!- Tomthetom00 has quit [Ping timeout: 258 seconds] 02:33 [slex] dolores (Fai Ang Fem Cha), 14218 points, T:3020, killed by a monster (statue golem) 02:36 [fh] K2 (k2) (Mon Hum Mal Neu) killed the ghost of noty, the former Reconnoiterer, on T:21323 02:43 -!- Tarmunora-m has quit [Quit: Bye] 03:01 !role slex 03:01 LarienTelrunya: Message from FIQ at 2017-08-10 10:07 EDT: castalias is a bit awkward to use, but it's "hidden" behind keymap config so it's OK 03:01 LarienTelrunya: No variant slex on server. 03:01 we havent updated beholder yet it 03:01 that will be a tall order 03:08 but at least we have the data needed 03:19 -!- noty has quit [Quit: WeeChat 1.9] 03:23 K2: wow you're saying hothraxxa is close to ascending slex?! I'd have given the crown of "best-performing still active slex player" to bug_sniper myself, but maybe there's something I don't know yet? how far did he get? 03:24 no i didnt say that 03:24 hmm, so what did "20:27 right now, i think hothraxxa prob has the best shot at ascending slex out of ppl i know that arent amy" mean? 03:24 just out of ppl here i know and how they play, i was thinking he had best shot 03:24 best shot != close 03:24 ah, okay 03:25 best shot == best chance 03:25 just sounded to me like he had gotten really far and I somehow missed it 03:25 but i've never seen bug_sniper play slex 03:25 well bug_sniper got halfway through Gehennom in junethack, and I started to believe he might make it but then he died :( 03:26 wow 03:26 [slex] dolores (Trs Spe Fem Cha) killed Raini, on T:1629 03:29 [slex] dolores (Trs Spe Fem Cha), 10598 points, T:1777, killed by a cowardly attack on her breasts 03:33 -!- elenmirie has quit [Ping timeout: 276 seconds] 03:40 -!- elenmirie has joined #hardfought 03:40 -!- mode/#hardfought [+v elenmirie] by ChanServ 03:54 [fh] K2 (k2) (Mon Hum Mal Neu) wished for "2 blessed scrolls of charging", on T:24373 04:00 Evil Patch idea: using a scroll of identify on an item has a chance of cursing it, reducing its enchantment, or transforming the useful base item it used to be into a crappy one (speed boots -> fumble boots, for example). 04:02 -!- elenmirie has quit [Quit: Going offline, see ya! (www.adiirc.com)] 04:06 [fh] K2 (k2) (Mon Hum Mal Neu) wished for "blessed fixed greased +5 helm of brilliance", on T:24673 04:07 jonadab: I saw the log mentioning elder priests and me getting annoyed about "my standard strategy not working" :D you want to know the real reason? I absolutely wanted to get those trophies in junethack, and evil features in certain variants preventing me from getting them got me annoyed. But if I were playing non-slex variants outside of junethack, those difficult ones (fourk, grunt, dnh) would be the *only* ones I'd pl 04:07 [fh] K2 (k2) (Mon Hum Mal Neu) wished for "blessed fixed +5 t-shirt", on T:24674 04:07 so while on one hand I got really annoyed at the (fake?) difficulty in those variants, on another hand I actually appreciate it 04:09 aosdict: you wondered whether I encountered Cthulhu in unnethack? well, I did the entire ascension run not knowing what ANY level or item was, nuff said :P 04:10 [fh] K2 (k2) (Mon Hum Mal Neu) wished for "blessed fixed ring of free action", on T:24682 04:13 [fh] K2 (k2) (Mon Hum Mal Neu) wished for "uncursed fixed magic marker", on T:24754