brt345678

Newbie
Mar 20, 2023
61
151
Here's the changelog for the 0.8.9.2



ETA for the upload link: 11 March 2024 after 05:09 UTC

This upload when shared will be the last full package.
Further updates will be patches unless there's a file/folder re-structure.

EDIT: A critical bug was found in 0.8.9.1, so it will be skipped. Post updated for 0.8.9.2 details.
There was a critical bug in 0.8.9.1, so I have updated that post accordingly.
 

dragon337111

Member
Mar 16, 2018
104
110
Does anyone here know console a console command or some other way to reset/start a quest again?

I finished fighting Horse-cock miniboss and delivered a letter at the Sybaris mercenary camp south of Coastal Fortress. But I did not take the follow up quest of saving a dog at some other Orckind camp right away.

Now the camp is empty after coming there other times with no way to start that next quest now.

Is there some way to reset the map/quest there with console or changing the variables?

Save editor in useless in this regard and any console commands I tried were useless.
 

Kenny567

Well-Known Member
Oct 10, 2017
1,157
575
Found a bug in UltraModManager with the check_constrain function.

The following code:
Code:
  def check_constrain(constr, version)
    spl_ver = version.split(".").map { |x| x.to_s }
    cspl_ver = version.slice(2..version.size).split(".").map { |x| x.to_s }
    comps = spl_ver.zip(cspl_ver).map { |arr| arr[0] <=> arr[1] }
    one_index = comps.index(1)
    m_one_index = comps.index(-1)
    if constr.start_with? ">="
      m_one_index.nil? || m_one_index > one_index
    elsif constr.start_with? "<="
      one_index.nil? || one_index > m_one_index
    elsif constr.start_with? ">"
      !(one_index.nil? || one_index > m_one_index)
    elsif constr.start_with? "<"
      !(one_index.nil? || one_index > m_one_index)
    elsif constr.start_with? "=="
      one_index.nil? && m_one_index.nil?
    elsif constr.start_with? "!="
      !(one_index.nil? && m_one_index.nil?)
    else
      false
    end
  end
Should actually be:
Code:
  def check_constrain(constr, version)
    spl_ver = version.split(".").map { |x| x.to_s }
    cspl_ver = constr.slice(2..constr.size).split(".").map { |x| x.to_s }
    comps = spl_ver.zip(cspl_ver).map { |arr| arr[0] <=> arr[1] }
    one_index = comps.index(1)
    m_one_index = comps.index(-1)
    if constr.start_with? ">="
      m_one_index.nil? || m_one_index > one_index
    elsif constr.start_with? "<="
      one_index.nil? || one_index > m_one_index
    elsif constr.start_with? "> "
      !(one_index.nil? || one_index > m_one_index)
    elsif constr.start_with? "< "
      !(one_index.nil? || one_index > m_one_index)
    elsif constr.start_with? "=="
      one_index.nil? && m_one_index.nil?
    elsif constr.start_with? "!="
      !(one_index.nil? && m_one_index.nil?)
    else
      false
    end
  end
Attached is the fixed version.
 
  • Like
Reactions: Sado Yasashi

Kenny567

Well-Known Member
Oct 10, 2017
1,157
575
Does anyone here know console a console command or some other way to reset/start a quest again?

I finished fighting Horse-cock miniboss and delivered a letter at the Sybaris mercenary camp south of Coastal Fortress. But I did not take the follow up quest of saving a dog at some other Orckind camp right away.

Now the camp is empty after coming there other times with no way to start that next quest now.

Is there some way to reset the map/quest there with console or changing the variables?

Save editor in useless in this regard and any console commands I tried were useless.
You would need to give yourself the letter again and delete the associated keys from the $story_stats hash.
Save and reload after.

I don't know the specifics, but someone else might.
 
  • Like
Reactions: dragon337111

Mishun

Member
Jan 27, 2018
367
115
you're talking about the dancer clothes especially the tiara right? that one that cause the entire you can't equip weapon thing. It's because it didnt have that function before, either Eccma slip up his finger somewhere or he forgot to put in the new description when he made those changes to the damn clothes that made it unusable.
it's exactly what i'm talking about, i found tiara and equipped it, because it's suits my build (succubus)
 

Kenny567

Well-Known Member
Oct 10, 2017
1,157
575
you're talking about the dancer clothes especially the tiara right? that one that cause the entire you can't equip weapon thing. It's because it didnt have that function before, either Eccma slip up his finger somewhere or he forgot to put in the new description when he made those changes to the damn clothes that made it unusable.
The "Brainwashes you." part of the description is supposed to imply that you can't use weapons because your "owner" has forbidden it. But it probably should be explicitly specified.
Mind you, the official English translation is in major need of some TLC (text blocks with wrong names [but are correct in the CHT native language], excess files that don't exist in any other translations, etc...)
 

doujinftw

Active Member
Nov 26, 2020
661
771
The "Brainwashes you." part of the description is supposed to imply that you can't use weapons because your "owner" has forbidden it. But it probably should be explicitly specified.
Mind you, the official English translation is in major need of some TLC (text blocks with wrong names [but are correct in the CHT native language], excess files that don't exist in any other translations, etc...)
except that sort of false since u can wear any on the side arm (which include dagger, throwing kunai,fire,water,electric spellbook,abomination totem,shield) for some odd reason the carpet bomb talkie we got from justice is the only equipment does not allow tho, weapon aside i also cant wear anything on the top extra equipment slots doesn't show as lock out but I just can't put anything on.
 
Last edited:

Kenny567

Well-Known Member
Oct 10, 2017
1,157
575
except that sort of false since u can wear any on the side arm (which include dagger, throwing kunai,fire,water,electric spellbook,abomination totem,shield) for some odd reason the carpet bomb talkie we got from justice is the only equipment does not allow tho, weapon aside i also cant wear anything on the top extra equipment slots doesn't show as lock out but I just can't put anything on.
These are the relevant notes attached to the Tiara in the database [via the VX Ace Editor]:

<sealed atype: 3,5>
<sealed wtype: 1,9,10>
<fixed equip: 8>
<sealed equip: 6>

I don't know what they refer to, but that is what it affects.
 

doujinftw

Active Member
Nov 26, 2020
661
771
These are the relevant notes attached to the Tiara in the database [via the VX Ace Editor]:

<sealed atype: 3,5>
<sealed wtype: 1,9,10>
<fixed equip: 8>
<sealed equip: 6>

I don't know what they refer to, but that is what it affects.
so if i just delete the line it would allow me to wear the equipment again or would it cause any complication?
 

Kenny567

Well-Known Member
Oct 10, 2017
1,157
575
so if i just delete the line it would allow me to wear the equipment again or would it cause any complication?
Yep.
Shouldn't cause any complication, though if you have the editor to be able to delete the lines from the note it would be better to futureproof your edits by duplicating the set into a mod and then removing the sealed and fixed lines from the duplicated set. (unless you know how to do it all via code, then a modscript would be sufficient)

The ones marked with fixed usually refer to the current item, while the ones marked with sealed are the other slots and equip types.
 
  • Like
Reactions: doujinftw

Of_Ill_Omens

Newbie
Apr 10, 2023
93
171
so no new game play aspect yet right? I actually enjoy this game more from it game play aspect and story than it h contents, so no need to update my game if there's no substantial changes.
Nothing new in 0.8.9.1 except
-*fixed, FishTownT shaman now a unique character(elise quest line fix)
which is super minor
although I'm also curious about
-*added, ItemShIconOfSin(test only)
what it does and looks like, and if calling it IconOfSin is just coincidence or another Doom reference
 

NightWildFox

New Member
Dec 10, 2019
1
5
One of the worst games you can download. There are a lot of ads on YouTube, and I decided to take a little look at what kind of game it is.
The game is replete with dirty repetitive debauchery in different poses and characters who want to beat up first and then rape. An absolutely uninteresting, unnecessary game for a person and his consciousness, which, on the contrary, is capable of clogging the consciousness and mind of many in the worst possible way. I don't recommend anything, the game is not the best game in the dark fantasy genre. Stupid ads from youtubers who love porn content and everything dirty.
 

Tyyyr

Newbie
Feb 3, 2021
48
33
One of the worst games you can download. There are a lot of ads on YouTube, and I decided to take a little look at what kind of game it is.
The game is replete with dirty repetitive debauchery in different poses and characters who want to beat up first and then rape. An absolutely uninteresting, unnecessary game for a person and his consciousness, which, on the contrary, is capable of clogging the consciousness and mind of many in the worst possible way. I don't recommend anything, the game is not the best game in the dark fantasy genre. Stupid ads from youtubers who love porn content and everything dirty.
You waited more than 4 years to post this as your first post?
 
  • Like
Reactions: Dsay

doujinftw

Active Member
Nov 26, 2020
661
771
One of the worst games you can download. There are a lot of ads on YouTube, and I decided to take a little look at what kind of game it is.
The game is replete with dirty repetitive debauchery in different poses and characters who want to beat up first and then rape. An absolutely uninteresting, unnecessary game for a person and his consciousness, which, on the contrary, is capable of clogging the consciousness and mind of many in the worst possible way. I don't recommend anything, the game is not the best game in the dark fantasy genre. Stupid ads from youtubers who love porn content and everything dirty.
you clearly have brain damage.
brain damage.jpg
 
Last edited:

FrontalZp

Newbie
Aug 6, 2018
33
16
so, you use guides and cheats to play this…game?
Kind of. I’m spare time when bored with life, and life isn’t going anywhere even with trying very much to do life properly. Job, partner, social life etc. Some people are too ugly and the world just doesn’t accept them, like me, no matter how hard I try, so you end up very little money, no good looking partner, no job, and some unfortunate free time. If I could fill the time with a job at Walmart or target, I would, and yes, already applied and spoke to managers at majority of locations in my city. I DO my due diligence. I’m a diligent worker. Maybe that’s why I just go ahead and translate things for myself sometimes, out of being tired of the lack of continued commitment.
Although if I ask me, for simple things, it’s always easier to do something, make a guide on the quick steps, and let anyone with a brain do it in case you’re nowhere.
 
4.10 star(s) 182 Votes