Thread Rating:
2015-03-10, 01:58 PM
See the screenshots. I have tried catching this beldum 100 times with steel balls, 90 times with psychic balls, 100 times with day ball, 50 extreme balls and around 40 or 50 superballs but this pkmn was not caught. Its surely a bug either with beldum or with catch rate.
Those balls cost a lot and at end to minimize my loss i used masterball too
Those balls cost a lot and at end to minimize my loss i used masterball too
Thumbnail(s)
2015-03-10, 03:58 PM
i remember going 300 turns before i was able to catch a rotom-frost.
2015-03-10, 04:16 PM
(2015-03-10, 04:12 PM)Blau Wrote: I personally don't think it's a bug, back then i was testing stuff and wasted far far far over 300 great balls on a legendary etc.
You might want to check out This link to smack your dreams directly.
I know it's not a bug, but I was only saying what happened to me.
2015-03-10, 04:17 PM
(2015-03-10, 04:16 PM)Qurac23 Wrote:(2015-03-10, 04:12 PM)Blau Wrote: I personally don't think it's a bug, back then i was testing stuff and wasted far far far over 300 great balls on a legendary etc.
You might want to check out This link to smack your dreams directly.
I know it's not a bug, but I was only saying what happened to me.
I was talking to harry tho
-2Easy-
M30 - Galliant
2015-03-10, 04:22 PM
(2015-03-10, 04:17 PM)Blau Wrote:(2015-03-10, 04:16 PM)Qurac23 Wrote:(2015-03-10, 04:12 PM)Blau Wrote: I personally don't think it's a bug, back then i was testing stuff and wasted far far far over 300 great balls on a legendary etc.
You might want to check out This link to smack your dreams directly.
I know it's not a bug, but I was only saying what happened to me.
I was talking to harry tho
Whatever gall.
2015-03-10, 04:28 PM
i have used every type of ball here not just great ball, all have rates of 3.5 to 5
2015-03-12, 03:19 PM
ok i just did a simulation here
your chance of catching at this scenario with steel ball =
27/100*27/100*27/100*27*100 which is about 1/256
So with 250 balls you have a chance to catch however if they were all steel balls
I also tried 50 steel balls and ultra balls all failed
your chance of catching at this scenario with steel ball =
27/100*27/100*27/100*27*100 which is about 1/256
So with 250 balls you have a chance to catch however if they were all steel balls
I also tried 50 steel balls and ultra balls all failed
Video: Idealism the philosophy of the matrix and the true nature of matter
Video: WHO IS GOD!
Skype username: MonsterMMORPG
Thread-Forum-Ranks-FAQ
Video: WHO IS GOD!
Skype username: MonsterMMORPG
Thread-Forum-Ranks-FAQ
this is the catch rate mechanic if you see any error let me know
// this dblBonusLevelCatch makes it harder to catch higher level pokemon but easier to catch lower level ones
double dblBonusLevelCatch = 25.0 / enemy.dblPokemonLevel;
double dblCaptureRate = ((1 + (enemy.dblMaximumHp * 3 - Convert.ToDouble(enemy.irCurrentHP) * 2) * dblCatchRate * dblMonsterBoxRatio * bonusStatus * dblBonusLevelCatch) /
(enemy.dblMaximumHp * 3)) / 256;
double dblRemainChance = 1048560 / Math.Sqrt(Math.Sqrt(16711680 / (dblCaptureRate * 100)));
int x1 = GenerateRandomValue.GenerateRandomValueMin(65535, 1);
int x2 = GenerateRandomValue.GenerateRandomValueMin(65535, 1);
int x3 = GenerateRandomValue.GenerateRandomValueMin(65535, 1);
int x4 = GenerateRandomValue.GenerateRandomValueMin(65535, 1);
if ((x1 <= dblRemainChance) && (x2 <= dblRemainChance) && (x3 <= dblRemainChance) && (x4 <= dblRemainChance))
{
blCatched = true;
}
// this dblBonusLevelCatch makes it harder to catch higher level pokemon but easier to catch lower level ones
double dblBonusLevelCatch = 25.0 / enemy.dblPokemonLevel;
double dblCaptureRate = ((1 + (enemy.dblMaximumHp * 3 - Convert.ToDouble(enemy.irCurrentHP) * 2) * dblCatchRate * dblMonsterBoxRatio * bonusStatus * dblBonusLevelCatch) /
(enemy.dblMaximumHp * 3)) / 256;
double dblRemainChance = 1048560 / Math.Sqrt(Math.Sqrt(16711680 / (dblCaptureRate * 100)));
int x1 = GenerateRandomValue.GenerateRandomValueMin(65535, 1);
int x2 = GenerateRandomValue.GenerateRandomValueMin(65535, 1);
int x3 = GenerateRandomValue.GenerateRandomValueMin(65535, 1);
int x4 = GenerateRandomValue.GenerateRandomValueMin(65535, 1);
if ((x1 <= dblRemainChance) && (x2 <= dblRemainChance) && (x3 <= dblRemainChance) && (x4 <= dblRemainChance))
{
blCatched = true;
}
Video: Idealism the philosophy of the matrix and the true nature of matter
Video: WHO IS GOD!
Skype username: MonsterMMORPG
Thread-Forum-Ranks-FAQ
Video: WHO IS GOD!
Skype username: MonsterMMORPG
Thread-Forum-Ranks-FAQ
2015-04-15, 02:51 AM
(2015-03-12, 03:20 PM)CeFurkan Wrote: this is the catch rate mechanic if you see any error let me know
// this dblBonusLevelCatch makes it harder to catch higher level pokemon but easier to catch lower level ones
double dblBonusLevelCatch = 25.0 / enemy.dblPokemonLevel;
double dblCaptureRate = ((1 + (enemy.dblMaximumHp * 3 - Convert.ToDouble(enemy.irCurrentHP) * 2) * dblCatchRate * dblMonsterBoxRatio * bonusStatus * dblBonusLevelCatch) /
(enemy.dblMaximumHp * 3)) / 256;
double dblRemainChance = 1048560 / Math.Sqrt(Math.Sqrt(16711680 / (dblCaptureRate * 100)));
int x1 = GenerateRandomValue.GenerateRandomValueMin(65535, 1);
int x2 = GenerateRandomValue.GenerateRandomValueMin(65535, 1);
int x3 = GenerateRandomValue.GenerateRandomValueMin(65535, 1);
int x4 = GenerateRandomValue.GenerateRandomValueMin(65535, 1);
if ((x1 <= dblRemainChance) && (x2 <= dblRemainChance) && (x3 <= dblRemainChance) && (x4 <= dblRemainChance))
{
blCatched = true;
}
Nice i got it
WE TRY TO SUCCESS
WE ACHIVE TO BECOME MORE SUCCESFUL
WE REALIZE THE POWER OF GOD TO BE MORE AND MORE SUCCESSFUL
Users browsing this thread: 3 Guest(s)
Users browsed this thread: