General > Off Topic

Working on a roguelike...

<< < (5/22) > >>

Sereg:

--- Quote from: Tormuse on February 08, 2019, 20:13 ---I found a lot fewer treasure rooms in this game than the previous one, so I had a lot less equipment, including healing sources.  I'm not sure if that's rotten luck or if you changed probabilities.  Oh well...
--- End quote ---
I have not adjusted anything; you are simply experiencing the disfavor of the RNG =P


--- Quote from: Tormuse on February 08, 2019, 20:13 ---If I switch compressed mode on and off a few times, the game slows down to the point that it's unplayable.  (Like there's a half second delay after each button press)
--- End quote ---
This is because I'm actually creating new console windows each time. I'll have to inspect the method I'm using to remove the old ones - obviously, there's a reference to the old console somewhere that I'm not properly cleaning up.


--- Quote from: Tormuse on February 08, 2019, 20:13 ---It still does the thing where it goes back and forth between "You fail to close the door" and "You fail to open the door."
--- End quote ---
This is odd - what kind of door is it happening with? One of the vault doors, or a basic one, or both? I haven't encountered this one, but I'll try to reproduce it if I can...


--- Quote from: Tormuse on February 08, 2019, 20:13 ---"The grave worm's attack interrupts you!"  It said this message when my lock-picking was interrupted while my lamp was out.  (to save oil)  It probably shouldn't identify the creature that's doing the interrupting if I can't see it.
--- End quote ---
An oversight on my part; this should be pretty easy to fix. Thanks for pointing it out.


--- Quote from: Tormuse on February 08, 2019, 20:13 ---Using targeting mode on a monster doesn't show how injured it is unless you select it by pushing enter.  Not the most intuitive thing.  Any reason it doesn't display that when you just hover over the monster?
--- End quote ---
It behaves slightly differently between targeting mode and game mode - in game mode, if you have a target, the info window will prioritize that target's info over the standard display(which is information about the tile you're occupying), whereas in targeting mode it will always display monster - item - terrain for the tile the cursor is on, ignoring the monster's health. I'll see about reworking this.


--- Quote from: Tormuse on February 08, 2019, 20:13 ---An Atlantean torch?  That's new!  :)  Could this be what the fire water uses?  (Too bad I never found any)  :(
--- End quote ---
It *might* be... the RNG is not your friend this game, apparently, lol.


--- Quote from: Tormuse on February 08, 2019, 20:13 ---I am overly amused by using the "alter" command on altars and being told that the altar can not be altered.  :)
--- End quote ---
  Heh. That particular play on words hadn't occurred to me until just now(having coded the altar, I knew it didn't do anything, so I never tried to alter it, lol), but perhaps it will have a use with a future update...


--- Quote from: Tormuse on February 08, 2019, 20:13 ---I can resume game after I died!  Pushing "resume game" shows the last screen I died on and the game is frozen.  No key inputs work and the menus don't work either.  I couldn't even quit or otherwise close the window except by going into Task Manager and killing it from there.  I suspect this may be related to the fact that my last action of the game was to heal myself at the same time as I was being killed.
--- End quote ---
This is certainly troubling - I encountered it once, but wasn't able to reproduce it, so I'm not sure where to start looking for the problem. If you can collect any more information about the state of the game when this occurs, that would be amazingly helpful... and yes, I do block the program from closing with the X button to avoid problematic exit conditions... I'll research the close operations of the java tool I built my console on top of and see if I can come up with a better solution.


--- Quote from: Tormuse on February 08, 2019, 20:13 ---One more thing I've been meaning to ask:  What's the "view character" button on the main menu for?  It doesn't seem to do anything.

--- End quote ---
That's an unimplemented feature - when I added the menu screen, I put it in there since I intended to eventually collect a character record like DRL has, but I have not gotten around to making it do anything yet.

Sadly, I won't be able to address any of these until probably Sunday night, but I figured I'd at least acknowledge the feedback before I leave for the weekend. As always, it's much appreciated.

Edit: How many times are you toggling compression mode before you experience notable slowdown? I've done it repeatedly for maybe 15 or 20 iterations without noticing any loss of responsiveness, and I can't see anything in my code that would indicate the old console still exists somewhere... even if it does, it shouldn't be consuming system resources, because the command I use to remove it from the screen actually cleans up everything used to run the window. I also re-direct the pointer by which everything references the console to point to the new console, and your JRE *should* then de-allocate every remaining resource committed to the old console once there's no longer a reference to it. Obviously, you're still noticing an issue, so something must be going south somewhere, but my initial suspicion seems unfounded... if there's any further information you can provide about this one, that may help.

Edit2: I've addressed the darkness interruption and updated the cursor targeting to show health. I've also found the cause of the door message bug you described... it'll take a bit of rearranging to correct but shouldn't be too problematic - expect a Sunday night release with these fixes. I've also changed the order that I handle cleanup after player death, which *might* fix the resume game issue. I'm not positive this is the cause, though... Just to clarify, you were presented with the resume option after landing back on the menu page following your death, not re-opening the game? In either case, can you confirm whether your game.sav file still existed?

Edit3: Ok, this is really it. Done coding for the week =P I am highly confident that I found and fixed the resume game bug - if it continues after 0.7.8, let me know, but I'll probably cry a little - but it will still be present until I have a chance to release that version, unfortunately. Incidentally, I also noticed that I'd broken the quit confirmation - it would only allow you to proceed, not go back to the game. That will also be fixed for 0.7.8.

MaiZure:
0.77a: The major problems are still around, but the text is now somewhat legible...but I found something else that may be wrong on my side:

I started the first level wth only 2 rooms and no possible exit. I walked in to all walls and tried to change level on all floor spaces to no avail. Am I trapped? Screen shot included

EDIT: As I'm leaving the game window open pending some advice on this situation, I noticed that it's using up 10-15% of my CPU.
EDITEDIT: Oh it dropped to 1% after 5 minutes of being idle....ahh because it locked up.

I'm beginning to suspect it's my JDK -- 11.0.2 and I'm launching directly with './java -jar ViridianAbyss.jar'

Sereg:
The + indicates a door... you'll need to use the 'a'lter command to open it. That gets me sometimes too... courtesy of the lighting engine, colors rarely have as much variation as might be ideal... perhaps I'll have to adjust some of the mechanics at work there.

I note that your menu bar is still missing. I wonder how widespread that issue is... I can allocate more space to it, but doing so will result in blank space at the bottom of the screen for anyone who doesn't have a missing menu bar... I think I may have to bring that into a keyboard interface instead of using the swing menu system to achieve the optimal result for the majority of players.

Edit: my phone sucks.

Tormuse:
I played a game of 0.7.7 last night.  (That's the version that's up right now, although your other post made a reference to 0.7.8; did you neglect to upload it or is that a typo?)

Anyway, I died from a combination of wanting to find out what happens when I break my weapon (I got to level 10 killing everything with my starting cinquedea and it got down to "severely damaged") and just generally messing around with the torches and plunging myself into darkness in a moment I probably shouldn't have.  :P  Side note:  The cinquedea is not very good against the undead; they took a lot of pounding to go down, compared to when I was using a falchion like in the other game.  Does your weapon do less damage when it's degraded?

Spoiler: Autopsy (click to show/hide)Autopsy: 09 Feb 2019 21:46:24

Game time played: 0 days 01:43:12.952

Killed by tomb serpent on level 10

Total XP: 7487

Equipped Items:
a steel cinquedea (+2, 2d4+1) [Severely Damaged]
<no item equipped>
an oil lamp <no fuel>
a Lemurian noble cuirass [Moderately Damaged]
an amulet of precision

Carried Items:
<105> an ancient falchion (+2, 4d6+4) [Undamaged]
<35> an Atlantean torch <sacred oil:99%>
<85> a leather vest [Undamaged]
<2> an ancestral pendant
<10> 2x flask [lamp oil] (100%)
<5> 1x flask [sacred oil] (100%)
<25> 5x flask [fire water] (98%)
<4> 1x vial [medicine] (100%)
<48> 6x clay jar [healing ointment] (88%)
<20> 5x ancient vial [clear elixir] (100%)
<15> 1x clay jug [healing ointment] (75%)

Kills:
72x giant red rat
17x cave worm
5x grave worm
24x tomb serpent
6x swarm of tiny scarabs
1x albino tiger
2x mummified swordsman
1x mummified noble

[checksum: 1c394c11]

Notes for this run:

It doesn't take very many switches of "compressed mode" to slow the game down down; after 5 or 6 switches, it even made music that was playing in another window stutter and start to get crackly.

"Gilded door with a lock" (or "with an open lock") is the one that does the "You fail to close the door" and "You fail to open the door" thing.  It does this while opening and closing it.  "Ancient door" also does it.

"The giant red rat's attack interrupts you!"  (It still says this while the light is out and I shouldn't be able to see it)

Text in the "Messages" box doesn't wrap properly.  (It cuts words in two when going to the next line)

Oh, hey!  Another Atlantean torch!  And this time, I have fire water for it!  :D  Looks like it lets you see further and turns everything green.  Cool.  :)  Then I tried using sacred oil and it turned everything purple.  Aww...  I kinda liked the green.  :(  Oh well, purple can be a cool colour too.  :)  (I wasn't really expecting the sacred oil to work; I guess the Atlantean torch is the superior light source in that it accepts more fuel types)

EDIT:  Oh yeah, I almost forgot...  in the above game, I had the "Continue game" bug after dying.  (And again, I died at the same time as trying to heal myself, though I don't know if that's related)

EDIT2:  Played another game.  Died against the Necrocrat.  :(

Spoiler: Autopsy (click to show/hide)Autopsy: 10 Feb 2019 19:33:52

Game time played: 0 days 02:37:44.723

Killed by Lemurian necrocrat on level 14

Total XP: 25433

Equipped Items:
an embermace (+3, 9d2+4) [Undamaged]
<no item equipped>
an oil lamp <lamp oil:91%>
a Lemurian noble cuirass [Severely Damaged]
an amulet of precision

Carried Items:
<45> a steel cinquedea (+2, 2d4+1) [Slightly Damaged]
<70> an ancient khopesh (+3, 2d8+2) [Undamaged]
<105> an ancient falchion (+2, 4d6+4) [Severely Damaged]
<2> an ancestral pendant
<5> 1x flask [lamp oil] (9%)
<95> 19x flask [sacred oil] (100%)
<40> 8x flask [fire water] (100%)
<4> 1x vial [medicine] (60%)
<8> 2x ancient vial [clear elixir] (100%)

Kills:
92x giant red rat
16x cave worm
6x grave worm
33x tomb serpent
12x swarm of tiny scarabs
4x albino tiger
18x mummified swordsman
2x mummified noble

[checksum: 27098dbe]

I used a falchion and Lemurian noble cuirass that I found in chests on level 2 all the way to the end, killing every single monster I encountered, including every monster on the last level besides the Necrocrat himself.  I got them both down to "severely damaged."  I don't think it's possible to fully break any of your equipment with the current length of the game.  I found the embermace in a chest on the last level and was a bit disappointed that I didn't get a chance to try it out.  (I mean I swung it a couple times at the Necrocrat, but it missed both times)

I'm now convinced that my amulet of protection in the other game was responsible for my victory, considering that in this game, the Necrocrat was able to bring me from full health down to "critically injured" with one hit, even through my Lemurian Noble Cuirass.  (Maybe that's a sign that I should use armour that favours speed over protection?  Hmm...)  Anyway, the battle (such as it was) consisted of me taking a single swing at him, then him almost killing me with one hit, then cue the Benny Hill theme music as I ran wildly around the whole level, trying to get some distance between us so I could heal myself and try again.  When I ran out of healing sources, I started opening chests and urns around the place and a couple times, that caused him to get a couple free hits on me, annoyingly.  (That's when I found the embermace)  I only hit him once and it brought him down to slightly wounded.  Oh well, better luck next time...

Some more notes:

FYI, I confirmed that there's definitely no message if your lamp runs out of oil while you're walking around.

Something I've been meaning to ask:  Do different weapons have different attack times?  For example, the cinquedea is described as "fast" on the equipment screen, whereas the falchion is described as "slow."  I would expect that to mean enemies get more free hits on me if I'm using the falchion, but that doesn't seem to be the case.

I witnessed an item vanish from the ground again.  Still haven't noticed a pattern, but here's the sequence in this case:  I killed a mummified swordsman, dropped my leather vest on an empty square so I could sort through the pile of stuff he dropped.  I picked up his ancient chestplate, moved over to an empty square and dropped it.  After noting that there was nothing besides the khopesh in the pile, I picked up my leather vest again.  The chestplate vanished from the ground exactly the same time I picked up the leather vest.  Oooh...  even more interesting...  when I drop the leather vest again, the chestplate reappears.  I can repeatedly pick up and drop the leather vest and make the chestplate appear and disappear over and over again...  but...  only when I drop the leather vest on a specific square?  O_o  I'm experimenting with moving around and dropping both the chestplate and the vest on different squares.  Sometimes, it makes the chestplate disappear and sometimes it doesn't.  I'm still not seeing a pattern.  I recorded a short 2 minute video to demonstrate the effect.

Sereg:
"Interruptions in the darkness will no longer reveal the name of the source. Targeting mode now displays the health of any monster at the cursor. Fixed a bug where it was not possible to cancel quitting with ctrl-Q. Fixed the resume game bug after a death or win. An issue with incorrect door alteration messages has been fixed, and doors have their contrast forced during display so they will appear more distinct from the surrounding terrain." - Alpha 0.7.8 changelog

@MaiZure: Sorry for the short response earlier, I was only able to post from my mobile phone at the time. There is a door in one of your rooms, but the graphics do not set it off well enough from the surrounding walls - I've included a feature in the latest version(a0.7.8 at the time of this post) which will help with that.

As far as your CPU usage, that seems quite good - my development computer is a fairly powerful Alienware desktop and I use ~20% of both CPU(Intel i7-8700 3.2GHz) and GPU(NVIDIA GeForce GTX 1080) running the game.

When the game locked up, did it generate an error file in your save directory? If so, can you please send it to me?

I am not particularly familiar with the effects of different Java environments, unfortunately - if you decide to update to the latest version, I'd be interested to know if you experience an improvement in performance.

@Tormuse:

--- Quote from: Tormuse on February 10, 2019, 10:16 ---I played a game of 0.7.7 last night.  (That's the version that's up right now, although your other post made a reference to 0.7.8; did you neglect to upload it or is that a typo?)
--- End quote ---
I was able to make some changes to the code, but I did not have a chance to complete and upload the new version that night - as of now(~21:00CST 10 FEB 2019) that version is up, with the changes listed at the top of this post.


--- Quote from: Tormuse on February 10, 2019, 10:16 ---Anyway, I died from a combination of wanting to find out what happens when I break my weapon (I got to level 10 killing everything with my starting cinquedea and it got down to "severely damaged") and just generally messing around with the torches and plunging myself into darkness in a moment I probably shouldn't have.  :P  Side note:  The cinquedea is not very good against the undead; they took a lot of pounding to go down, compared to when I was using a falchion like in the other game.  Does your weapon do less damage when it's degraded?
--- End quote ---
Damage types are important - undead aren't generally bothered much by stabbing attacks like the cinquedea performs, since they have no functioning internal organs to damage. In general, I intend to create monsters with intuitive strengths and weaknesses along those lines. And yes, as your weapon(and armor) degrades, it will become less useful - think armor threshholds in DRL (where, say, a red armor would drop from 4/4 to 2/4 below 50%, if memory serves). However, my armor generally has a lot more base durability than in DRL and more thresholds where its performance deteriorates, so it's probably a good idea to replace your gear well before the point of falling apart on its own.


--- Quote from: Tormuse on February 10, 2019, 10:16 ---It doesn't take very many switches of "compressed mode" to slow the game down down; after 5 or 6 switches, it even made music that was playing in another window stutter and start to get crackly.
--- End quote ---
Interesting - I have not been able to reproduce this, unfortunately, and I do not know why it could be occurring. I hate to wave it off by saying, just don't use it that many times, since that's not addressing the underlying issue - but in this case, there's not actually much of a reason to be adjusting that particular setting more then once or twice a run(and honestly I sort of intended it to be a preference setting, where you'd pick the one you like best, then never mess with it again).

Out of curiosity, are you using the most up to date JRE? I can't help but wonder if there's an issue with an older version of Java, maybe not properly garbage collecting or something...



--- Quote from: Tormuse on February 10, 2019, 10:16 ---"Gilded door with a lock" (or "with an open lock") is the one that does the "You fail to close the door" and "You fail to open the door" thing.  It does this while opening and closing it.  "Ancient door" also does it.

"The giant red rat's attack interrupts you!"  (It still says this while the light is out and I shouldn't be able to see it)
--- End quote ---
These should both be fixed as of the current release.


--- Quote from: Tormuse on February 10, 2019, 10:16 ---Text in the "Messages" box doesn't wrap properly.  (It cuts words in two when going to the next line)
--- End quote ---

I'll have to look at updating the underlying console utility that runs this type of display. It's probably going to be fairly straightforward to upgrade, although not trivial, but it's also not my biggest priority just now. I'll tack it on to the to-do list.


--- Quote from: Tormuse on February 10, 2019, 10:16 ---Oh, hey!  Another Atlantean torch!  And this time, I have fire water for it!  :D  Looks like it lets you see further and turns everything green.  Cool.  :)  Then I tried using sacred oil and it turned everything purple.  Aww...  I kinda liked the green.  :(  Oh well, purple can be a cool colour too.  :)  (I wasn't really expecting the sacred oil to work; I guess the Atlantean torch is the superior light source in that it accepts more fuel types)
--- End quote ---
Yes, and as I continue to add light sources, expect different ones to be compatible with a different range of fuels. You may also notice that the light produced by burning sacred oil in an Atlantean torch is slightly different than from burning the same fuel in an oil lamp.


--- Quote from: Tormuse on February 10, 2019, 10:16 ---EDIT:  Oh yeah, I almost forgot...  in the above game, I had the "Continue game" bug after dying.  (And again, I died at the same time as trying to heal myself, though I don't know if that's related)
--- End quote ---
This is another issue that I believe I've solved for the current release - as always, if you continue to notice it, do please let me know.



--- Quote from: Tormuse on February 10, 2019, 10:16 ---EDIT2:  Played another game.  Died against the Necrocrat.  :(

I used a falchion and Lemurian noble cuirass that I found in chests on level 2 all the way to the end, killing every single monster I encountered, including every monster on the last level besides the Necrocrat himself.  I got them both down to "severely damaged."  I don't think it's possible to fully break any of your equipment with the current length of the game.  I found the embermace in a chest on the last level and was a bit disappointed that I didn't get a chance to try it out.  (I mean I swung it a couple times at the Necrocrat, but it missed both times)

I'm now convinced that my amulet of protection in the other game was responsible for my victory, considering that in this game, the Necrocrat was able to bring me from full health down to "critically injured" with one hit, even through my Lemurian Noble Cuirass.  (Maybe that's a sign that I should use armour that favours speed over protection?  Hmm...)  Anyway, the battle (such as it was) consisted of me taking a single swing at him, then him almost killing me with one hit, then cue the Benny Hill theme music as I ran wildly around the whole level, trying to get some distance between us so I could heal myself and try again.  When I ran out of healing sources, I started opening chests and urns around the place and a couple times, that caused him to get a couple free hits on me, annoyingly.  (That's when I found the embermace)  I only hit him once and it brought him down to slightly wounded.  Oh well, better luck next time...
--- End quote ---
This is much more in line with my experiences with him - that amulet of protection must be doing some serious work(I do remember him being easier back when I was testing different amulets by granting them at the start of the game). There will be quite a lot of balancing to be done, especially as I continue to add more items(an armor that emphasizes speed over protection could certainly be an interesting addition).


--- Quote from: Tormuse on February 10, 2019, 10:16 ---FYI, I confirmed that there's definitely no message if your lamp runs out of oil while you're walking around.
--- End quote ---
This baffles me - I actually went to test this myself to see if I could fix it for the a078 release, but couldn't reproduce it despite running out my fuel under multiple repeat conditions. The message itself is generated as a result of the lamp attempting to burn fuel and finding that it doesn't have any, so it shouldn't matter what conditions cause this to happen - the message should be produced regardless.


--- Quote from: Tormuse on February 10, 2019, 10:16 ---Something I've been meaning to ask:  Do different weapons have different attack times?  For example, the cinquedea is described as "fast" on the equipment screen, whereas the falchion is described as "slow."  I would expect that to mean enemies get more free hits on me if I'm using the falchion, but that doesn't seem to be the case.
--- End quote ---
Yes, weapons do have different attack speeds - I don't make that information directly available, but the interested player is welcome to find out for himself by observing the game clock. It's possible that as a result of my contraction of the gap between base move and base attack times, the difference in speeds isn't meaningful enough to make a significant difference. Then again, it's not *really* meant to be about minmaxing your weapon choice - it's more about the idea that you'll need to use multiple different weapons throughout the game, and the experience should be different from weapon to weapon - each will have a slightly different flavor. Still, this will be another area where I'll be seeking balance as I move the game forward, so I welcome feedback on it.


--- Quote from: Tormuse on February 10, 2019, 10:16 ---I witnessed an item vanish from the ground again.  Still haven't noticed a pattern, but here's the sequence in this case:  I killed a mummified swordsman, dropped my leather vest on an empty square so I could sort through the pile of stuff he dropped.  I picked up his ancient chestplate, moved over to an empty square and dropped it.  After noting that there was nothing besides the khopesh in the pile, I picked up my leather vest again.  The chestplate vanished from the ground exactly the same time I picked up the leather vest.  Oooh...  even more interesting...  when I drop the leather vest again, the chestplate reappears.  I can repeatedly pick up and drop the leather vest and make the chestplate appear and disappear over and over again...  but...  only when I drop the leather vest on a specific square?  O_o  I'm experimenting with moving around and dropping both the chestplate and the vest on different squares.  Sometimes, it makes the chestplate disappear and sometimes it doesn't.  I'm still not seeing a pattern.  I recorded a short 2 minute video to demonstrate the effect.

--- End quote ---


I'll check out the video, and I'll double check the hashing algorithm I use to access the floor inventories - there's most likely a bug on my end, but I'm sort of hoping I can blame this one on an out of date JRE, too =P Thanks for taking the trouble to create that - hopefully, it'll help give me an idea as to what might be the problem.


Edit: Ok, I have a theory - would it be possible for you to send me a savefile capturing a game state where that is happening?

Edit2: Nevermind, I've replicated the issue. Should be soluble now that I've got it to occur for me. 

Edit3: Fixed, I've uploaded a patched version. Turns out what was happening was that I was trying to clean up old piles by removing them from memory once the last item was withdrawn. Unfortunately, I didn't consider the impact this would have on the hashing algorithm - I actually was properly handling collisions, but once I removed an existing data entry, the collision no longer happened because the earlier entry no longer existed to collide with, and the result was non-sensical - the hash table still contained the dropped items, but the method the rest of the game was using to access them was reporting the wrong index, so the pile wasn't displayed. When you dropped an item back at the original coordinate, suddenly the collision occurred as expected and the real index was again being returned, so the lost items would become visible again.


Once again, thank you for making the video - makes my job so much easier when I can clearly see what's going wrong.

Edit4:

11 FEB 2019 - Alpha 0.7.9:
   Fixed a problem with dropped items sometimes disappearing if other dropped items were picked up. Oil lamp once again uses fuel at a reasonable rate. Engineering pass to de-clutter the game engine. Added several new items. Adjusted certain lamplight values. It is now possible to empty fuel from a lamp, whether in inventory or equipped, with the 'l' command from an item mode. Dropping something you don't have room for now gives better messages.

Edit5: Found a bug and added some new content.

11 FEB 2019 - Alpha 0.8.0:
   Introduced a new Vault room type, new loot types, and a new door. Fixed a bug with removing fuel from an equipped light. Ensured that inventory display will not write out of bounds if too many items are carried.

Edit6: More updates -

12 FEB 2019 - Alpha 0.8.1:
   Reworked the loot system - more dangerous monsters have a significantly higher chance of dropping decent loot, and loot containers may dispense more than one item. Message pane messages now wrap more intelligently.

Edit7:
Found some really cool stuff thanks to finding one of the new vaults on level 1, but it wasn't enough to save me from an errant viridian aura(especially with the new upgrades designed to offset the new higher loot chance!). However, it appears that the autopsy writer can skip items if your inventory is open at the time of death - that'll be corrected for the next release:
Spoiler (click to show/hide)Autopsy: 12 Feb 2019 10:50:18

Game time played: 0 days 01:16:35.488

Killed by viridian aura on level 6

Total XP: 769

Equipped Items:
an embermace (+3, 9d2+4) [Slightly Damaged]
<no item equipped>
a Lemurian censer <sacred oil:6%>
a Lemurian noble cuirass [Moderately Damaged]
an amulet of precision

Carried Items:
<136> 17x clay jar [healing ointment] (100%)

Kills:
36x giant red rat
10x cave worm
1x grave worm
2x tomb serpent

[checksum: 234bc26c]
--- End code ---

Edit8:

12 FEB 2019 - Alpha 0.8.2:
   Fixed a bug where the autopsy file could fail to write inventory items if the inventory was open at the time of death. Implemented free camera mode.

Thereyago, Tormuse, you can look around all you want now.

Navigation

[0] Message Index

[#] Next page

[*] Previous page

Go to full version