JOY-LESS'S PROFILE

Cat Maid Castle
Escape a castle full of cat maids!

Search

Filter

Cat Maid Castle Review

Thanks for your review thesacredlobo, I'm not planning to finish this game but you made some helpful criticisms that will be useful moving forward. ^_^

[RGSS3] [RMVX ACE] Screen Shake Bug Fix

author=Marrend
Would you happen to know which version of Ace has this error? I re-download Ace after switching computers in May of this year, and that has the lower code.

*Edit: As a point of reference, the "Help"->"About" window reports that I have version 1.02a of Ace.

I also have version 1.02a, but I have the Steam version so it's possible they're not the same.
I created a new default project and I still get the broken code.

[RGSS3] [RMVX ACE] Screen Shake Bug Fix

I'm unsure if this bug has already been fixed by another script, but I couldn't find one and this was causing me issues so here it is anyway.

The "Shake Screen" event command has a bug which causes it to wait for a strange amount of time. The devs appear to have forgotten there are two parameters in the shake screen command - power and speed.

Here is the broken code:
#--------------------------------------------------------------------------
# * Screen Shake
#--------------------------------------------------------------------------
def command_225
  screen.start_shake(@params[0], @params[1], @params[2])
  wait(@params[1]) if @params[2]
end

Fix (place under Materials):
class Game_Interpreter
  #--------------------------------------------------------------------------
  # * Screen Shake
  #--------------------------------------------------------------------------
  def command_225
    screen.start_shake(@params[0], @params[1], @params[2])
    wait(@params[2]) if @params[3]
  end
end

Sawprint Review

Thanks for playing my game and giving a review (^○^)

author=TheRpgmakerAddict
there are some cut sentences (like "Don't you kn her", or "jigsaw pi")

I'm intrigued by this because I just looked through the entire game dialogue and couldn't find any spelling mistakes. It's possible the game exports incorrectly or runs at the wrong resolution.

author=TheRpgmakerAddict
some random rabbits

These are just for saving your progress.

author=TheRpgmakerAddict
Also... why does the killer glitches and swaps between two (similar but) different charsets?

Sorry it was unclear; the Killer was wearing a kawaii disguise and took it off in speedy anime fashion. Kind of like those Kigurumi costumes.
I agree with most of the other stuff, especially about interactions. Perhaps I will remake it some other time.

Other

Pages: 1