DNEL57'S PROFILE

Search

Filter

Shattered Hourglass

author=sawworm
author=dnel57
In Fauntown, how do you get through the
train to the other side?
You can't do that with Qual but Duran can jump through there!


I knew I had been there before. Thanks

Shattered Hourglass

In Fauntown, how do you get through the
train to the other side?


Shattered Hourglass

author=dnel57
If you have already been to Trin and finished the Volcano, you need to go to Qual(the town)and buy dynamite for 100.000G. Take that to the Volcano and use it to re-enter the Volcano. It will be different inside. Once you complete that, you will have the mechanism and you can go back to all the places that had one and get those chests.

Anytime:)

Shattered Hourglass

If you have already been to Trin and finished the Volcano, you need to go to Qual(the town)and buy dynamite for 100.000G. Take that to the Volcano and use it to re-enter the Volcano. It will be different inside. Once you complete that, you will have the mechanism and you can go back to all the places that had one and get those chests.

Shattered Hourglass

It's hard to tell what you've missed not knowing where you've been. Have you been to an area that has encounters with 6 or more Jellyfish every fight?
It's an easy area to miss.

Shattered Hourglass

They will when someone occupies that room.

Shattered Hourglass

I've solved all the quiz chests but, my "Achievements" don't show #7 or #8 as being done.

Shattered Hourglass

My Fish Collection says that I don't have the following:

8)Puffer
42) Huge Bass =
43) Skull Fish =
44) Titan Trigger
45) Flounder
46) Yellowtail
47) Eel
48) Ghostfish





My Items show that I have 21 Titan Trigger.




I did empty all the chests and get to the Fish Market.

It was months ago I played last. I bet I didn't CATCH one,but, BOUGHT 21 of them.


[RMVX ACE] Boss Battle problem(s)

author=Dyluck
On the Troops screen, remove the enemy and click around the image to see if you can remove any other invisible enemies. Then add back the Boss, to make sure it is the only enemy. You may have accidently added an invisible nameless entry from the enemy list.

When you test again, try to make sure it's a new save or at least not a file that saved within the same event executing the battle.

Thanks, that's what I finally did. Works great. It's east to have another enemy behind another and you don't know it's there.

[RMVX ACE] Boss Battle problem(s)

author=Marrend
Well, if it were me, I'd setup a separate code-section, and do some debugging on the battle log.

class Window_BattleLog < Window_Selectable
  #--------------------------------------------------------------------------
  # * Display Action Results
  #--------------------------------------------------------------------------
  def display_action_results(target, item)
    puts(target, item) # <-- This should output the contents of the variables "target" and "item" into the console so that
      # you know what their values are before anything happens to them.
    if target.result.used
      last_line_number = line_number
      display_critical(target, item)
      display_damage(target, item)
      display_affected_status(target, item)
      display_failure(target, item)
      wait if line_number > last_line_number
      back_to(last_line_number)
    end
  end
end


Thank you, Marrend