heathbar101
Jungle Girl
- Joined
- Mar 4, 2012
- Messages
- 40
- Reputation score
- 5
Once they're high enough level, you go to their skill set outside of battle, scroll down and there's a skill at the bottom that does it. The only ones that can rank up (that i've found so far) are the succubus and demon.
I think it's 16 and 35?
Son of a bitch. I got the Bad End.
Apparently, though, after the game ends, you can just jump right back in. Don't even have to reload.
That in mind, someone mentioned a Recollection Room? How do you access that?
EDIT: I'm also having trouble with the boss in the Demon Castle's deeeeep basement. The one right after the elevator. Translator is telling me that she's basically got a forcefield and I need a "Powerful Weapon." Any idea where I get that?
How do you unlock this teleporter crystal?
![]()
edit: btw, I'm welcoming suggestions for moves and hold names... Periscope/paizuri lock, take in/accept/cowgirl, black nose/reverse face straddle, and the like... I don't wanna google for this. No, really.
class HoldPop_Sprite < RPG::Sprite
#--------------------------------------------------------------------------
# ● 公開インスタンス変数
#--------------------------------------------------------------------------
attr_accessor :type # ホールド種別
attr_accessor :battler # 自身
attr_accessor :target # 対象バトラー
attr_accessor :initiative # イニシアチブ
#--------------------------------------------------------------------------
# ● オブジェクト初期化
#--------------------------------------------------------------------------
def initialize(type, battler, target)
super()
# 引数をインスタンス変数に
@type = type
@battler = battler
@target = target
@initiative = 0
# その他初期化
@delete_flag = false
@last_x = -100
@last_y = -100
self.opacity = 0
refresh
end
#--------------------------------------------------------------------------
# ● リフレッシュ
#--------------------------------------------------------------------------
def refresh
# フレーム作成
graphic = RPG::Cache.windowskin("hold_pop2")
if @battler.is_a?(Game_Actor)
graphic = RPG::Cache.windowskin("hold_pop1") if @battler == $game_actors[101]
end
if @target.is_a?(Game_Actor)
graphic = RPG::Cache.windowskin("hold_pop1") if @target == $game_actors[101]
end
self.bitmap = Bitmap.new(graphic.width,graphic.height)
self.bitmap.blt(0, 0, graphic, Rect.new(0, 0, graphic.width, graphic.height), 200)
# ホールド名の描写
case @type
when "♀挿入"
hold_name = "Inserted"
when "貝合わせ"
hold_name = "Scissoring"
when "口挿入"
hold_name = "Mouth Inserted"
when "クンニ"
hold_name = "Mouth Occupied"
when "顔面騎乗"
hold_name = "Face Mounted"
when "尻騎乗"
hold_name = "Dark-sided"
when "拘束"
hold_name = "Embraced"
when "開脚"
hold_name = "Spread Eagle"
when "パイズリ"
hold_name = "Paizuri Locked"
when "張子♀挿入"
hold_name = "Dildo'ed"
when "張子口挿入"
hold_name = "Mouth Dildo'ed"
when "張子尻挿入"
hold_name = "Ass Dildo'ed"
when "蔦拘束"
hold_name = "Entangled "
when "触手拘束"
hold_name = "Tentacle-Bound"
when "触手吸引"
hold_name = "Tentacle-Sucking"
when "触手クンニ"
hold_name = "Tentacle-Inserted "
else
hold_name = @type
end
# 逆転不可のホールドは文字を黄色くする
unless SR_Util.reversible_hold?(@type)
self.bitmap.font.color = Color.new(255, 255, 128, 255)
end
self.bitmap.font.size = $default_size_s_mini
self.bitmap.draw_text(0, 0, self.bitmap.width , self.bitmap.height, hold_name, 1)
# 位置調整
self.x = @last_x = -100
self.y = @last_y = -100
self.ox = self.bitmap.width / 2
self.oy = self.bitmap.height / 2
self.z = 1500
end
#--------------------------------------------------------------------------
# ● イニシアチブの変更
#--------------------------------------------------------------------------
def initiative_change(number)
@initiative += number
refresh
end
#--------------------------------------------------------------------------
# ● ホールド消去
#--------------------------------------------------------------------------
def hold_delete
@delete_flag = true
end
#--------------------------------------------------------------------------
# ● ホールド消した?
#--------------------------------------------------------------------------
def delete?
return @delete_flag
end
#--------------------------------------------------------------------------
# ● フレーム更新
#--------------------------------------------------------------------------
def update
super
end
end
Here's what I had - pretty similar (and more vulgar/direct than what I wished for...):Here's what I replaced for the HoldPop_Sprite section. It handles the little pop-ups that occur as a result of a battler/character position change (when being in a "Hold").![]()
I think I've fixed this already... I had to mingle with all battler-superclass types... I'll try and double-check my 1.03 patch (today, hopefully) before I look into the 1.05+ stuff -_-There is an issue were character names were replaced with the "not an enemy" string (from Game_Battler 1), so I'm still using your earliest script patch (from for the skill names), which works quite elegantly.
Ideally, I'd like, with future patches in mind, to be able to batch-replace every instance of ".name" with ".UK_name", without breaking anything... That would lessen the workload quite a bit. This is why I've made this "parallel translation" system in the 1st place...If I can be of help, note that I did find the game pulling names from the "Classes" tab - such as for friendly succubi in your party. If you could do what you did with replacing names from "Enemy" tab, I think things will work out quite nicely.![]()
Nope. I don't believe I'm good enough to be more of an help than a bother/waste of time. Anyway, I'm sure this catpun guy knows we're here, has looked into what was done here, and will make himself known right here, if he has anything he'd like help with. I won't offer a hand I'm unsure I can actually give.Did you ever look into contacting the member of the team who is working on the 'official' English stuff? Could be helpful.
You need to equip a character with this rune, シャイニングレイジ , and use it on the boss. You get a free one from talking to a person in the laboratory area, though I forgot who it was (It's the teleport crystal at the very bottom in the center, if the description wasn't enough). Worst case, just buy it for 3000 LP from the shop in the second room.
Thank you very much!
At this point, I have three remaining goals before I upload what I'm going to call a 100% Save
1. Capture remaining monsters and level them all up to max, including abilities.
--This currently includes:
----Nightmare Special (Golden Brown) Version. (LOCATION UNKNOWN)
----Werecat Normal (Light Brown) Version. (LOCATION UNKNOWN)
----Werewolf Special (Red) Version. (Location Known)
----Petite Witch Normal Version. (Location Known)
----Witch Normal Version. (Location Known)
----Cast Special (face in shadow) Version. (LOCATION UNKNOWN)
2. Someone mentioned a Recollection Room. If that's separate from the Bed in your house, I need to investigate. Does anyone know where that is?
3. Figure out how to get the Perfect Ending spoken of on the Wiki posted on page 6.
Then find a good place to save and upload it.
The gold nightmare can be found close to where you use the witch's key to enter the goblin area, look for the dark enemy blocking a path to the south.
I can't tell which werecat you mean by light brown, so I'll mention both. The one closer to yellow is in the forest area you reach from the cave where you fight the first boss. You keep going until you reach an outdoor area, then jump off the cliff. The one closer to brown is in the cave leading to the mushroom boss, take the southernmost exit to the right and it's the first dark enemy.
The cast with the hidden face is part of the perfect ending, although I can't reach it yet.
As for the perfect ending, there's supposed to be a 400 dream point door somewhere in the monastery according to the wiki, but I've never found it.
I'll put what the wiki has on the ending in spoilers, since it's quite a bit.
Best Endへの道 †
長い道のりです、頑張りましょう。
-
まず、パルフィス密教会の乱交場を過ぎ、階段を降りて横道奥の夢の魔力400の扉を開けて中へ。
部屋の左右にある階段を降り、部屋に入り本棚の2冊の本を読む。
獄界オルデオの最奥部にいる魂(カオシア様)に会い、選択肢の最下段を選んで情報を得る。
この時、ギルゴーン様をパートナーにして行くと、会話が少し変化する。
絶大な魔力の持ち主=ギルゴーン様を連れて各地の泉を巡る。
泉が赤くなるまで調べること。
-
・ ポート[樹海の分岐点]から飛ぶ → 木の中へ → 左の方
・ ポート[暗い洞窟の入り口近く]から → ポート右上の近道に入る
・ ポート[暗い洞窟の奥へと続く道]から → ポート左の梯子に繋がる所から魔力35の扉を開け下へ → 降りたエリアの左下、日食扉を開けた中
・ ポート[密教会の魔女の居住区]から乱交場から右へ → 上の方へ行きポートへ一方通行の魔方陣から上へ → 奥の小部屋にある
・ ポート[厳かなお屋敷]から → 令嬢の屋敷の中にある
・ ポート[茸が群生する木の虚の中]から → 左の方へ行くといるOFEの先
・ ポート[地獄の火山]から → 左上の近道へ → 洞窟を抜けたら左上方向へ → 敵が道を塞いでいる先(近道を開通していない場合、チャート(獄界オルデオLv35 ,38)を参考に)
・ ポート[魔城のエントランス]から → 1階の左右の通路どちらかへ → 上の方に抜けた先
・ ポート[魔城の研究室]から → 魔城地下昇降機があるエリアのレバー上に隠し扉。OFEがいるため要注意
本スレの攻略txt、その他詳細をUPしてくださった方のデータを利用しております。
ショートカット開通前提のようなので、開通していない場合は遠回りで探しに行きましょう。
全ての泉を巡ると、「古印破棄の執行書」を取得。
ポートが全て解放されている状態で、ポートを移動する空間の中央で「古印破棄の執行書」を使用する。
この時、パーティに補正なしで精神力100・生命力=VP1000を超えているメンバーが3人必要(ロウラットを除く)。儀式が終わると夢魔たちのVPが1000消費される。
古印破棄の執行書使用後、夢の拠点にいるラーミルに会いに行く。
編集者は話すとイベントが始まりましたが、ラーミルとの会話を全てこなせば最終的にイベントが始まる? この辺り分かる方は編集求む
イベント後、ラーミルを追いかけて家を出て拠点奥の道へ。
奥へ進むと建物が見えてくるので、中に入ってボス戦。
-
ボスは特殊な「キャスト」。強化はされているがそこまで強くはない
戦闘後、夢の拠点へ。
この戦いの後はルートがベストエンドに固定される
混濁したレンディカの奥へ進み、ボス戦
ボス戦後、最後の戦い。
-
まずはラーミル戦を行なう。
ラーミル戦後、ヴェルミィーナに話すとイベント
ヴェルミィーナLV65&ラーミルキャストLV55×2と戦闘
ラストバトルでは自我を持ったラーミルキャスト(名前変更可能)が偶数ターンごとに回復魔法で援護してくれる
ラーミルキャストは稀にヴェルミィーナが復活させる
ヴェルミィーナをVP分減らすると抵抗不可のレジストが始まり、強制的にインサート状態になる。
HPやVPは変わらずこの戦闘ではリリースできない。
ちなみに情報屋が言う「露悪の果て」はおそらくヴェルミィーナ2戦目のこと。
勝利後ラーミルを調べれば BEST ENDへ。
Both google translate and atlas say the 400 point door is supposed to be in what the monastery area is called, yet I can't find it. The only 400 point door I found was in the 40+ area labs that gave an all stat boosting rune.
recollection room save 2
You must be registered to see the links
Edit: Mind sharing your save before the perfect ending please?
I just did the best ending. Hopefully I didn't forget something :
You will need ギルゴーン (the demon boss) in your team.
You will be locked in the best ending after those steps, so if you want to see the bad or normal ending, do them first.
1) Go read the two books behing the green door requiring 400 magic power in the church (near the orgy room and the first mimic of the game).
2) Meet with カオシア様 (the soul NPC) north of the tentacle boss zone and choose the 4th choice (I don't know if ギルゴーン is required here, but she was in my team).
3) Go back to ALL the fountains in the game with ギルゴーン in your team and inspect them. They will turn red and your maximum contract's count should increase again.
4) You will get a book once all the fountains are red. You don't need ギルゴーン past this point.
5) You need to have all the save points activated. The last one is in the city before the final boss.
6) You and your allies need to have more than 100 willpowers (神力) and more than 1000 VP.
7) Go on the center of the save room, use the book and start the ritual.
8) Go to ラーミル house and talk to her. She will run away. Follow her.
9) You will fight a new boss, lvl 65 if I remember well, but she isn't that hard.
10) You can now challenge the final boss again. Something will happen after the fight with ラーミル.
Final boss spoiler:
You can recruit ラーミル for the final battle. I didn't keep her after the ending, though, unless it was because my team was full ?
ヴェルミィーナ is now lvl 65 and can summon up to two lvl 55 ラーミル (with reduced EP/VP) to help her.
She get serious and do the cowgirl move after her second climax.
The game gives you your stats after the best ending. Mine :
I didn't find a recollection room after beating the game.Level: 75
Play time: 19:14:33
Number of succubuses: 47/100
Magic: 584
That's cool, looks like I have to spend less time tinkering, more time playingI guess if anyone is having difficulty understanding how to do marriage in the game, finally figured it out last night.
So far, having a blast with the game
Oh, remember you can get the latest official patches there: hxxp://ux.getuploader.com/dreamania/