What's new

Status
Not open for further replies.

finale00

Tentacle God
Joined
Aug 12, 2010
Messages
811
Reputation score
75
Re: RPG Maker Hentai Games

Someone that demanded MF links from you and then uploaded it to pay-out filehosts and distributed links using pay-out link services.

btw I was looking at utage's site and they typically sell their works on 4-8 different sites (dlsite, dmm, digiket, melonbooks, ...)
Don't know how much they get from the other places but I imagine it adds up quickly.

Anyone know how to check out the stats for those sites, or whether they are available to the public?
I imagine there may be good or bad reasons for listing such info (eg: I might not buy something if the ratings were low).
 
Last edited:

Starke

Banned
Joined
Jun 29, 2012
Messages
1,001
Reputation score
435
Re: RPG Maker Hentai Games

Omg... Finale can you please rar your audio folder for Valkyrie Children and upload to Mediafire? Thanks...
 

finale00

Tentacle God
Joined
Aug 12, 2010
Messages
811
Reputation score
75
Re: RPG Maker Hentai Games

Here's a script I put together for VX games that use the default battle system. It adds two commands to the party command menu: "auto" and "guard". Just copy it into the project above "Main"

Auto basically has all of the actors (who are able to select a command) choose attack on the first enemy available. I guess I could have implemented a more sophisticated algorithm to essentially let an AI decide the best move to make, but...well didn't feel like it.

Guard has all inputtable actors use guard.

Lastly, I have added command memorization, so if you chose "auto" last round, it'll set itself to "auto" this round.

I wrote this script because I got bored of hitting attack again and again, especially in games where random encounters are easy and abundant. And then there are the games where you have GoR scenes, but it was too difficult to die without hitting guard a bunch of times.



Not tested thoroughly so save your game often but if it works properly it should save a lot of effort.

Code:
Graphics.frame_rate = 120

class Game_Party
  
  attr_accessor :last_command 
  alias :th_custom_init_party :initialize
  def initialize
    th_custom_init_party
    @last_command = nil
  end
end

class Window_PartyCommand < Window_Command
  def initialize
    s1 = Vocab::fight
    s2 = Vocab::escape
    s3 = "オート"
    s4 = "防御"
    super(128, [s1, s3, s4, s2], 1, 4)
    draw_item(0, true)
    draw_item(1, true)
    draw_item(2, true)
    draw_item(3, $game_troop.can_escape)
    self.active = false
  end
  
  def select_last
    $game_party.last_command.nil? ? @index = 0 : @index = $game_party.last_command
  end
end

class Scene_Battle
  
  def start_party_command_selection
    if $game_temp.in_battle
      @status_window.refresh
      @status_window.index = @actor_index = -1
      @active_battler = nil
      @info_viewport.visible = true
      @message_window.visible = false
      @party_command_window.active = true
      @party_command_window.select_last
      @actor_command_window.active = false
      $game_party.clear_actions
      if $game_troop.surprise or not $game_party.inputable?
        start_main
      end
    end
  end
  
  def update_party_command_selection
    if Input.trigger?(Input::C)
      case @party_command_window.index
      when 0  # 戦う
        Sound.play_decision
        @status_window.index = @actor_index = -1
        $game_party.last_command = 0
        next_actor
      when 1
        Sound.play_decision
        $game_party.members.each { |actor|
          next unless actor.inputable?
          actor.action.set_attack
          actor.action.target_index = 0
        }
        $game_party.last_command = 1
        start_main
      when 2
        Sound.play_decision
        $game_party.members.each { |actor|
          next unless actor.inputable?
          actor.action.set_guard
        }
        $game_party.last_command = 2
        start_main
      when 3  # 逃げる
        if $game_troop.can_escape == false
          Sound.play_buzzer
          return
        end
        Sound.play_decision
        $game_party.last_command = 3
        process_escape
      end
    end
  end
end
Omg... Finale can you please rar your audio folder for Valkyrie Children and upload to Mediafire? Thanks...
Isn't the issue on your end and not the product's end?
I imagine you'd end up with nothing usable even if I packed it up.
 
Last edited:

Starke

Banned
Joined
Jun 29, 2012
Messages
1,001
Reputation score
435
Re: RPG Maker Hentai Games

Here's a script I put together for VX games that use the default battle system. It adds two commands to the party command menu: "auto" and "guard". Just copy it into the project above "Main"

Auto basically has all of the actors (who are able to select a command) choose attack on the first enemy available. I guess I could have implemented a more sophisticated algorithm to essentially let an AI decide the best move to make, but...well didn't feel like it.

Guard has all inputtable actors use guard.

Lastly, I have added command memorization, so if you chose "auto" last round, it'll set itself to "auto" this round.

I wrote this script because I got bored of hitting attack again and again, especially in games where random encounters are easy and abundant. And then there are the games where you have GoR scenes, but it was too difficult to die without hitting guard a bunch of times.



Not tested thoroughly so save your game often but if it works properly it should save a lot of effort.

Code:
class Game_Party
  
  attr_accessor :last_command 
  alias :custom_init_party :initialize
  def initialize
    custom_init_party
    @last_command = nil
  end
end

class Window_PartyCommand < Window_Command
  def initialize
    s1 = Vocab::fight
    s2 = Vocab::escape
    s3 = "オート"
    s4 = "防御"
    super(128, [s1, s3, s4, s2], 1, 4)
    draw_item(0, true)
    draw_item(1, true)
    draw_item(2, true)
    draw_item(3, $game_troop.can_escape)
    self.active = false
  end
  
  def select_last
    $game_party.last_command.nil? ? @index = 0 : @index = $game_party.last_command
  end
end

class Scene_Battle
  
  def start_party_command_selection
    if $game_temp.in_battle
      @status_window.refresh
      @status_window.index = @actor_index = -1
      @active_battler = nil
      @info_viewport.visible = true
      @message_window.visible = false
      @party_command_window.active = true
      @party_command_window.select_last
      @actor_command_window.active = false
      $game_party.clear_actions
      if $game_troop.surprise or not $game_party.inputable?
        start_main
      end
    end
  end
  
  def update_party_command_selection
    if Input.trigger?(Input::C)
      case @party_command_window.index
      when 0  # 戦う
        Sound.play_decision
        @status_window.index = @actor_index = -1
        $game_party.last_command = 0
        next_actor
      when 1
        Sound.play_decision
        $game_party.members.each { |actor|
          next unless actor.inputable?
          actor.action.set_attack
          actor.action.target_index = 0
        }
        $game_party.last_command = 1
        start_main
      when 2
        Sound.play_decision
        $game_party.members.each { |actor|
          next unless @active_battler.inputable?
          actor.action.set_guard
        }
        $game_party.last_command = 2
        start_main
      when 3  # 逃げる
        if $game_troop.can_escape == false
          Sound.play_buzzer
          return
        end
        Sound.play_decision
        $game_party.last_command = 3
        process_escape
      end
    end
  end
end


Isn't the issue on your end and not the product's end?
I imagine you'd end up with nothing usable even if I packed it up.
That's the thing, sometimes it extracts nice and sometimes it doesn't. That leads me to believe that the problem is not exclusively due to my computer.
 

Aerogablaze

Jungle Girl
Joined
Apr 9, 2011
Messages
33
Reputation score
0
Re: RPG Maker Hentai Games

I just noticed..There was.. MSR ..Then MSR 3...Was there a MSR2?...
 

M N M

Demon Girl Master
Joined
Sep 9, 2011
Messages
193
Reputation score
242
Re: RPG Maker Hentai Games

I just noticed..There was.. MSR ..Then MSR 3...Was there a MSR2?...
Yes, I have MSR2 do you want it? That game you play as a female but the same concept applies.
 

finale00

Tentacle God
Joined
Aug 12, 2010
Messages
811
Reputation score
75
Re: RPG Maker Hentai Games

Play as female? Sounds good. Better than playing as male.
 

lazydude

Tentacle God
Joined
Jul 29, 2012
Messages
981
Reputation score
51
Re: RPG Maker Hentai Games

Someone that demanded MF links from you and then uploaded it to pay-out filehosts and distributed links using pay-out link services.

btw I was looking at utage's site and they typically sell their works on 4-8 different sites (dlsite, dmm, digiket, melonbooks, ...)
Don't know how much they get from the other places but I imagine it adds up quickly.

Anyone know how to check out the stats for those sites, or whether they are available to the public?
I imagine there may be good or bad reasons for listing such info (eg: I might not buy something if the ratings were low).
good thing the stuff I've been posting isn't from dlsite, dmm, digiket, melonbooks, ect ect

(other the the post about keeping a eye on something on said site)

Game #2 is an old game called BFrogue Sai・Tama! Game is hard as hell, and you really have to grind ALOT. There's a bunch of different H scenes, but also it's just old hentai pictures. You are 1 guy, vs alot of girls. Every girl will attack you(or seduce) until you lose. If you cum game over, and you watch an h scene happen. It also includes my saves in a separate folder. Most of those saves are at bosses, but not all of them.

mediafire.com/?8m64qjb4aib9oxq
oh this one is outdated man BFrogue Sai・Tama! is over 200mb now a days

mediafire.com/?e0s8ttizd5hzsqt
mediafire.com/?1jwt83cangmf944

pass lazybf
 
Last edited:

Aerogablaze

Jungle Girl
Joined
Apr 9, 2011
Messages
33
Reputation score
0
Re: RPG Maker Hentai Games

Heh.. This will be Interesting. Do you plan to Include other games that are Simliar to the ones you have Shared?
 

M N M

Demon Girl Master
Joined
Sep 9, 2011
Messages
193
Reputation score
242
Re: RPG Maker Hentai Games

oh this one is outdated man BFrogue Sai・Tama! is over 200mb now a days

mediafire.com/?e0s8ttizd5hzsqt
mediafire.com/?1jwt83cangmf944

pass lazybf
Yeah, I did have an older version :p Regarding MSR3 I am stuck again. I'm after the part you fight the guy with the beard for the third time (the one where the tiles are moving and you try to avoid falling off, in the room with the blue goo girl, the girl with the man connected too her, and the mermaid looking women, there's also a red chest) I managed to beat him and walked around, I found a few scenes with the guys in the prison getting raped. I walked everywhere, Pretty sure I checked everything, There is a gate where the honey bee girl is that I can't pass. That is the only area I can't get to and it seems I need to get there. Is this where the game ends for now?

Heh.. This will be Interesting. Do you plan to Include other games that are Simliar to the ones you have Shared?
If you mean ones like MSR? Then Idk, those games are the only ones I found like it. I wish I could find the developer for them. I didn't even know msr3 existed until lazydude told me. :D
 

dardamex

Grim Reaper
Joined
May 9, 2012
Messages
466
Reputation score
49
Re: RPG Maker Hentai Games

Might've been mentioned already, but the downloadable version of Muddled World Orchestra Fragment 3 was updated to 90% complete.
 

finale00

Tentacle God
Joined
Aug 12, 2010
Messages
811
Reputation score
75
Re: RPG Maker Hentai Games

oh this one is outdated man BFrogue Sai・Tama! is over 200mb now a days

mediafire.com/?e0s8ttizd5hzsqt
mediafire.com/?1jwt83cangmf944

pass lazybf
LOL 200 mb wow.
I just checked my version and it says "ver 8" but it was only 120 MB.
 

lazycat

Lurker
Joined
Feb 27, 2009
Messages
4,165
Reputation score
641
Re: RPG Maker Hentai Games



More pictures up for new characters and old characters in new art style (all 3 silhouette characters are from Lady Knight Saga)
 

Solarpants

Grim Reaper
Joined
Mar 16, 2012
Messages
426
Reputation score
43
Re: RPG Maker Hentai Games

Unless my memory is broken the translation was from Sizustar, but i don't think he ever completed it.
It was made for an early version of the game, that only covered the first chapter. There are four chapters in the game.

I didn't beat the game, but I got to the fourth chapter. Which was damn depressing. Of course, my interest kinda started waning at the end of the second chapter, since the girl(s) got underwear at the end.
 

Mistix

Lurker
Joined
Dec 27, 2009
Messages
2,494
Reputation score
672
Re: RPG Maker Hentai Games

I'm just gonna leave this here and leave with rage in the eyes after looking at the release date:

 

Rakxaras

Demon Girl
Joined
Sep 26, 2011
Messages
64
Reputation score
8
Re: RPG Maker Hentai Games

new RPG, it seems a good game and decent CG

 

atack12

Jungle Girl
Joined
Dec 28, 2011
Messages
35
Reputation score
5
Re: RPG Maker Hentai Games

Someone knows the site with a list of all rpg games ??
 

Maryel

Lurker
Joined
Jun 10, 2009
Messages
1,130
Reputation score
79
Re: RPG Maker Hentai Games

hahaha mistix thats an insane release i wonder if it was a mistake or do really mean to release that month. haha
 
Status
Not open for further replies.
Top