Numb1983

New Member
Mar 31, 2020
9
0
1
A blue potion is 2 White Dragon Weeds, as long as you have the 'Dark Cauldron' ability you can make whatever you want even without the recipe book. The recipes you are talking about is on the counter of the clinic to the West, next to the scrolls, not Elise's room. That book contains Elise's secrets.

View attachment 681124
Thanks for your helpful tips!

However for some reason I still can't make the potions. Every time I put 2 White Dragon Weeds into the cauldron and Synthesize, I get an explosion. Lola making Stamina Potions problem.png

Cauldron explodes.png

I've tried this at least a dozen times already and the result is always the same.
 

mordet

Member
Apr 21, 2020
254
154
170
Im trying myself, but since i dont know what language this is coded in im struggling, also i dont know if you found the code for heal_wound but here it is EDIT: Done it, and language is ruby
Code:
def heal_wound  #負傷治療 通常用在休息時使用
    wound_states = [6, 7, 8, 9, 10, 11, 12, 13, 15, 16]
    all_wounds = wound_states.select { |id| state_stack(id) >= 1 }
    heal_me = all_wounds.shuffle.first(1 + rand(1))
    heal_me.each do |wound|
      remove_state_stack(wound)
      #add_new_state(35) if state_stack(35) <=10; remove_state_stack(35) if state_stack(35) >=11#dirt
      reset_state_counts(wound)
      reset_state_counts(35)
      @result.added_states.push(wound).uniq!
      @result.added_states.push(35).uniq!
    end
  end
i think you mentioned it picks a random wound which the code proves
but doing $heal_wound removes them all.

FWI, eccma417, you need to change how people react to owned horses getting savagely murdered. I just killed the two horses over and over in Doom fort for essentially infinite meat.
 
Last edited:

ZedTed

Member
Sep 24, 2017
272
937
227
Thanks for your helpful tips!

However for some reason I still can't make the potions. Every time I put 2 White Dragon Weeds into the cauldron and Synthesize, I get an explosion.

I've tried this at least a dozen times already and the result is always the same.
Strange, it works fine for me (V. 0.3.7.0).
Before.png
After.png
Maybe it's an issue with an update or even your game files (especially if you modded them). You can try re-downloading the game and checking again (you can just copy and paste your save files).

but doing $heal_wound removes them all.
$heal_wound doesn't do anything for me, just enters it and nothing.
 
  • Like
Reactions: Numb1983

Numb1983

New Member
Mar 31, 2020
9
0
1
Strange, it works fine for me (V. 0.3.7.0).

Maybe it's an issue with an update or even your game files (especially if you modded them). You can try re-downloading the game and checking again (you can just copy and paste your save files).
I have an old version 0.3.3.2, so that might be the issue. I will upgrade to the current version on try again.
 

Deleted member #2204703

Member
Game Developer
Apr 10, 2020
204
622
113
FWI, eccma417, you need to change how people react to owned horses getting savagely murdered. I just killed the two horses over and over in Doom fort for essentially infinite meat.
noted


-*fixed, GamePad : removed all the shitty overwrited., you can edit Game.ini for key binding.(may cause new bugs, read text/GamePadMapping.txt for mapping)
 

ZedTed

Member
Sep 24, 2017
272
937
227
ZedTed About Quest 666:
An other very easy way to kill the rabbit is to snipe it with the longbow.
It will still run after you, but if you run around, you can unaggro it.
Hell most of the time it's dead easy to bring it to the mercenaries and it'll take care of them for you.
Then, go back and snipe it again. Rinse, Repeat.
Tested this method and you are right, it's really easy to kill the rabbit this way. Only takes ~4 'snipering' shots to kill it so I added it into the guide.

Also added another method using explosives and that was really frustrating to test; think I killed Lona more times in those 30 minutes with explosives than I did in all my time playing the game.

Anyhow, the quest guide for 0.3.5.6.1 is done. Next up is proof-reading everything, the job guides, and the quest guide(s) for 0.3.7.0.

Edit: Forgot to mention that I got this really cool off-hand 'Abomination Totem' item from the chest that allows you to summon friendly tentacles and flesh-bombs.
Abomination Totem.png
 
Last edited:
  • Like
Reactions: darkashy

ZedTed

Member
Sep 24, 2017
272
937
227
eccma417. In case you need more leveling data: by doing all quests available in version 0.3.5.6.1 and almost nothing else, you end up as level 23.
Using mordet's exp table and taking the total exp for level 23 then dividing the value by 2/3 (assuming this table was after the exp requirements were reduced by 1/3); you get a value of
≈200399 total Exp for rushing all quests available in 0.3.5.6.1

Edit: apparently the chart was after and not before the exp changes, so ignore the maths. It's just 133599 exp in total.
 
Last edited:

mordet

Member
Apr 21, 2020
254
154
170
eccma417. In case you need more leveling data: by doing all quests available in version 0.3.5.6.1 and almost nothing else, you end up as level 23.
Using mordet's exp table and taking the total exp for level 23 then dividing the value by 2/3 (assuming this table was after the exp requirements were reduced by 1/3); you get a value of
≈200399 total Exp for rushing all quests available in 0.3.5.6.1
For one, just checked your updated guide for the longbow method and holy shit great name!
For two, I don't understand the assumption made here.
 
  • Like
Reactions: ZedTed

ZedTed

Member
Sep 24, 2017
272
937
227
For one, just checked your updated guide for the longbow method and holy shit great name!
For two, I don't understand the assumption made here.
Not sure if the information for your exp table is before or after the changes made to exp by eccma417 because both messages were in the same day (May 29).

Also, glad you like the name; took a while to think of a good one so that makes me happy.
 
  • Like
Reactions: mordet

lifesuckz69

Member
Mar 5, 2017
387
286
226
Edit: figured out it's select...that is a weird choice

Anyone know if you can pick up items when using a controller? I know it's enter on keyboard, but I can't figure out how to do that on the controller. Everything else works.
 

IDecaX

Newbie
May 26, 2020
40
11
123
$heal_wound doesn't do anything for me, just enters it and nothing.
weird I tried it again and it did nothing.
Its $game_player.actor.heal_wound, it picks a random wound then heals and removes the stacks, i added a loop inside this and created a seperate function(to avoid it messing with the game) to heal all wounds. I'm currently looking for the code for Aid(wounds) that Elise usesto heal all wounds & bleeding
 
Last edited:
  • Like
Reactions: ZedTed

Arythazin

Newbie
Jul 1, 2019
77
29
107
How can you check all the trait requirements and lockouts? For some reason I can't select omnivore, and I'm not sure if Tough locked me out of it, or if I need a minimum of some stat to select it, etc.
 

old spider

Newbie
Apr 14, 2018
60
38
119
boar charged into dead tree in rainforest and disappeared,
was also gonna complain about causing mayhem in pub running in the counter until it settles down can get you stuck, but i guess you can taunt (steal fail) mama or hazubando for suicide as unstuck.
also, is rape and prostitution the only way to get dicked?, no coercion?, opportunist mercenaries?, drunk decisions?, . . . well, its alright, I was just slightly salty I could not do anything with her 'horny' without sacrificing things. .
 

DarkForse

Member
Sep 23, 2017
258
305
183
So as i can see the new parts in Version: 0.3.7.0 are still untranslated ?
The camp after Pirates Bane and new town north also some parts of Pirates Bane and Milo quest is untranslated .
Oh well hope they untranslated them soon :)
 

Batface

Member
Nov 24, 2019
315
325
204
Hi can someone post the game with the rgss file thingy extracted?? Cant open my rpg decrypter for some reason, when i opened the exe it did nothing and after a while it deleted it self, thanks.
 

Batface

Member
Nov 24, 2019
315
325
204
the game already have the build in console by pressing F10 and you can't install rpg vx ace cheat manu plugin on this game so no reason to unpack this game leave the script alone can you?
Are you the developer? If you are then im sorry, just wanted to change trait i gained every lvl up cuz 1 point is nothing for me.
 

Batface

Member
Nov 24, 2019
315
325
204
no i'm not, but you can use something called rpgmakersaveedit to get yourself trait. each trait max is 99. make sure you use the default equipment in game the and save it before you load with save edit otherwise it will fail to load the save...
Thanks for the suggestion, but just straight up increasing the trait doesnt satisfy me hehehe, i too want to make the effect of injury or wound to be a little less impactful, and someone here said there are editable files you can access with the rpg decrypter, but i cant open the decrypter for some reason, so if anyone here can upload the game that already has been decrypted or just can solve why i cant open the decrypter it will be a great help, thanks.
 
4.10 star(s) 230 Votes