Page 1 of 1

The Deep Paths Labyrinth Of Andokost (Steam)

Posted: Thu Jan 02, 2020 10:03 am
by Marc
Hi all,

another dungeon crawler. Not bad for $4,99 but I got it on sale for $0,99 :wub:



Anyway, the table has the following features:
  • script: party receives no damage
  • script: spells do not cost mana
  • script: damage dealt to enemies is always calculated as critical, means damage is multiplied with 2
  • script: do not decrease the amount of arrows when using the bow
  • edit/Freeze Health
  • edit/Freeze Mana
  • edit/Freeze character stats (Strength, Dexterity, Intellect, Vitality)
  • edit the experience points each character has
have fun,
Marc

Re: The Deep Paths Labyrinth Of Andokost (Steam)

Posted: Sun Jan 05, 2020 11:39 am
by Joshuan
Thank you very much Marc !

Could you please add the option that your arrows are not reduced when you shoot ?
The lack of infinite arrows prevents me from playing with my favorite team in this game.
If you run out of arrows there is not much left to do for your archer.

Have a great new year !

Re: The Deep Paths Labyrinth Of Andokost (Steam)

Posted: Sun Jan 05, 2020 3:57 pm
by Marc
A good year to yoo, too. Glad you like the table.

Script for unlimited arrows added :)

Re: The Deep Paths Labyrinth Of Andokost (Steam)

Posted: Sun Jan 05, 2020 5:00 pm
by Joshuan
Hi Marc,

It is amazing how skilled some people are.
I wish I could do the same. Then I would not need to bother others.
Fortunately we have people like you, this forum and this wonderful piece of software.

I just noticed that you are the same guy who made the Dungeon Of Dragon Knight cheat table.
Man, I owe you so much.
Glad you are a dungeon crawler fan just like me :)

I am still quite at the beginning of this game (Andokost).
I wonder if the automap feature is broken or whatnot. Cannot see/find it.
Without it I will easily get lost... :roll:

Thanks again.
Maybe we will meet again in another modern dungeon crawler game thread.
I am eagerly waiting for the upcoming: [Link] , [Link] and [Link]


Did you play [Link] already ?
I plan to do it someday soon.

My recommendations of my last played very good modern dungeon crawlers I enjoyed (in case you didnt know about them yet):
[Link] <-- best game I played so far (its a little bit like: The Bards Tale 4)
[Link]
[Link]
and Legend of Grimrock 1+2 of course

Thanks again and enjoy playing :)

Re: The Deep Paths Labyrinth Of Andokost (Steam)

Posted: Mon Jan 06, 2020 4:17 pm
by Marc
Hi Joshuan,

thanks, thats very kind of you. The word "talented" might be questionable, I'm just a guy with a cheat engine and too much free time on his hands (as the real talented people would say).

You linked some very interesting titles, had to bookmark some of them. My pile of shame will increase :lol:
And yes, most likely we will cross our pathes there again...

Operencia will be bought if it will be released on Steam or GoG. I really do not want a third, fourth or even fifth game client on my PC.

have fun,
Marc

Re: The Deep Paths Labyrinth Of Andokost (Steam)

Posted: Sat Feb 29, 2020 1:45 am
by cob
Marc,

Just wanted to extend my thanks and my admiration for your generous and so skillful help.

Now at last I can fully enjoy this game, that was a little too hard for me.

I found gold and arrows with cheat engine (4bytes exact) but couldn't number of health potions or life or skills, not even to save my life.

If you have time, only ask you what search to use (didn't find anything with floating or array of byte)

No matter, thanks a million man !!!!

Dan

Re: The Deep Paths Labyrinth Of Andokost (Steam)

Posted: Sat Feb 29, 2020 7:55 am
by Marc
As far as I could find out, there is no real counter.-variable. Instead the inventory is a long list of items and the game dynamically counts the amounts stacked. A search with DNSpy took me to the following function:

Code: Select all

	' Token: 0x0600051F RID: 1311 RVA: 0x00024594 File Offset: 0x00022994
	Public Function CountItemByCaption(itemCaption As String) As Integer
		Dim num As Integer = 0
		For Each itemData As ItemData In Me.Inventory
			If itemData.Caption = itemCaption Then
				num += 1
			End If
		Next
		Return num
	End Function
Sad thing is: I could not find out where the game does the "remove one item", so my conclusion was that it's not worth the effort :)