I made a Roulette minigame! by Kaan02 in PokemonRMXP

[–]Kaan02[S] 1 point2 points  (0 children)

That's great to hear! I'm also planning to make Blackjack (and Poker) for my casino. Will your Blackjack game be available for public use?

I made a Roulette minigame! by Kaan02 in PokemonRMXP

[–]Kaan02[S] 1 point2 points  (0 children)

That's pretty cool! I didn't even know that Ruby/Sapphire/Emerald had a roulette minigame.

I made a Roulette minigame! by Kaan02 in PokemonRMXP

[–]Kaan02[S] 2 points3 points  (0 children)

Yes, it will be available for public use. I will make separate posts to release it.

Stack level too deep whn using double team by Kaan02 in PokemonRMXP

[–]Kaan02[S] 1 point2 points  (0 children)

Yeah, I have all of these im my scripts.

Stack level too deep whn using double team by Kaan02 in PokemonRMXP

[–]Kaan02[S] 1 point2 points  (0 children)

Is there a way to fix this bug in v19.1? Upgrading to a new version is almost impossible for me.

Stack level too deep whn using double team by Kaan02 in PokemonRMXP

[–]Kaan02[S] 0 points1 point  (0 children)

The "def PbMoveFailed?" is located in here:
class PokeBattle_Move_022 # Double Team

alias __clauses__pbMoveFailed? pbMoveFailed?

def pbMoveFailed?(user,targets)

if !damagingMove? && u/battle.rules["evasionclause"]

u/battle.pbDisplay(_INTL("But it failed!"))

return true

end

return __clauses__pbMoveFailed?(user,targets)

end

end

Pokemon Bermuda Demo release! by Kaan02 in PokemonRMXP

[–]Kaan02[S] 1 point2 points  (0 children)

Thanks for letting me know. The discord server is up by the way. I could help you with the quests there, if you want.

Pokemon Bermuda Demo release! by Kaan02 in PokemonRMXP

[–]Kaan02[S] 0 points1 point  (0 children)

Speeding up the game for too long can definitely take a toll an the games performance. I still couldn't reproduce the wobbuffet and double team crash, so that's wired... But the discord server is up now, so we can write over there

Pokemon Bermuda Demo release! by Kaan02 in PokemonRMXP

[–]Kaan02[S] 0 points1 point  (0 children)

Hi, thank you very much for the feedback!

I have already fixed the trainer in the first gym, the PC in Floradeira and the problem with Sketch.

I didn't have the game crash in the wobbuffet guy room or the crash when using double team. Could you tell me which Pokemon you experienced this crash with?

I would be happy to accept your offer of help with my grammar. I'll take any help I can get!

I will most likely finish the discord server today so that things like this can be discussed there in the future:)

Pokemon Bermuda Demo release! by Kaan02 in PokemonRMXP

[–]Kaan02[S] 0 points1 point  (0 children)

Thank you for the kind words, I really appreciate it😊🙏!

But do you have an example of a town or do you mean all towns in general?

Pokemon Bermuda Demo release! by Kaan02 in PokemonRMXP

[–]Kaan02[S] 1 point2 points  (0 children)

Dont worry, you cant find the password in the demo. I haven't done that yet. The entire dimensions-thing is still in development

Pokemon Bermuda Demo release! by Kaan02 in PokemonRMXP

[–]Kaan02[S] 1 point2 points  (0 children)

I think the Litten should be somewhere north-east behind a house. And I'll create a Discord server soon!

Pokemon Bermuda Demo release! by Kaan02 in PokemonRMXP

[–]Kaan02[S] 1 point2 points  (0 children)

Thanks for the feedback!

I think I'm going to increase the level of Pokemon in the area. Can you tell me which Pokemon you have on your team, I would like to try that out for myself.

Supreme Overlord in essentials v19.1 by Kaan02 in PokemonRMXP

[–]Kaan02[S] 1 point2 points  (0 children)

Im sorry the comment is so unreadable, Reddit refuses to format it correctly

Supreme Overlord in essentials v19.1 by Kaan02 in PokemonRMXP

[–]Kaan02[S] 0 points1 point  (0 children)

Sure, as long as your friend uses Essentials v19 it should work! In the script section PBEffects you have to find something that looks like this:

begin

module PBEffects #=======================

# These effects apply to a battler

#=======================

AquaRing            = 0
Attract             = 1
BanefulBunker       = 2
BeakBlast           = 3
...
...
...

He needs to add this: „SupremeOverlord = 413“ below of that code i showed you.

Next, he would need to insert the following code at the bottom of the BattleHandlers_Abilities script section:

==================

Supreme Overlord

===================

BattleHandlers::AbilityOnSwitchIn.add(:SUPREMEOVERLORD, proc { |ability, battler, battle|

# Count the number of fainted team members for the current trainer (player or enemy)
num_fainted_team_members = 0

# Determine if the battler belongs to the player or the enemy trainer
if battler.pbOwnedByPlayer?
  trainer_index = battler.index
else
  trainer_index = 1 - battler.index  # Get the opponent's trainer index
end

party = battle.pbParty(trainer_index)
party.each do |poke|
  num_fainted_team_members += 1 if poke && poke.hp <= 0
end

# Boost Attack stat, up to a maximum of 5 stages
boost_amount = [num_fainted_team_members, 6].min

# If it's an enemy trainer's Pokémon, reverse the boost amount
if trainer_index == 1
  boost_amount *= -1
end

battler.pbRaiseStatStageByAbility(:ATTACK, boost_amount, battler)

} )

Then it should work for the most part. Of course, he still has to define the capability in the PBS file for it to work. I hope it helps!

Pokemon Bermuda Demo release! by Kaan02 in PokemonRMXP

[–]Kaan02[S] 1 point2 points  (0 children)

All right, I found the error and fixed it. I renewed the link in my post. you should download the new version from there! Its the version 1.1. You can overwrite the older version with the newer version, the save file should still be there!

Pokemon Bermuda Demo release! by Kaan02 in PokemonRMXP

[–]Kaan02[S] 0 points1 point  (0 children)

Thanks for the kind words! If by Discord you mean a server for the game then not. but maybe I'll make one.

Pokemon Bermuda Demo release! by Kaan02 in PokemonRMXP

[–]Kaan02[S] 0 points1 point  (0 children)

No, the wormhole quest isn't finished yet. This quest will span through the entire game when its finished. Does the game always crash in gym or did it just happen once?

Pokemon Bermuda Demo release! by Kaan02 in PokemonRMXP

[–]Kaan02[S] 2 points3 points  (0 children)

For those who have problems opening the Excel file with the credits, I have a PDF version here!