Mishun

Member
Jan 27, 2018
432
155
Unequip CheatModule has a special hotkey to force unequip all equips (Shift+F3)

Fun fact: Enemies will strip equips that can't normally be unequipped.

Alternative use of the Unequip CheatModule: (Standalone)
Place 10_CheatModule_UnequipItems.rb in the ModScripts/ folder and then use the following command in the console:
Code:
CheatUtils.unequipall(force)
Note on the function parameter force:
  • force == false: Sealed gear stays equipped.
  • force == true: Sealed gear gets unequipped.


Warning: EVERYTHING will be unequipped by this function, especially when force = true
thank you, i have another question: why item description on such items don't notify me about such effects?
item description don't say that i can't use weapons with them, but i can't
 

doujinftw

Active Member
Nov 26, 2020
857
1,144
thank you, i have another question: why item description on such items don't notify me about such effects?
item description don't say that i can't use weapons with them, but i can't
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.
 

brt345678

Newbie
Mar 20, 2023
76
164
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
106
116
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,642
872
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,642
872
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
432
155
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,642
872
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
857
1,144
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,642
872
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
857
1,144
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,642
872
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

Member
Apr 10, 2023
124
211
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
68
46
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
4.10 star(s) 197 Votes