Jan 16, 2015, 08:25 AM | |
JJ2: Highest Score
After watching someone's JJ2 gameplay on Youtube, I started wondering what's the highest score ever achieved by a person. Does anyone know? Also, is there a maximum score that everyone can achieve with a lot of patience? What is the highest score a player can achieve without killing any enemy? I'd find out that myself but I still don't know all the secrets and I don't have the patience to search them. Sorry if there is a thread about that already made. Waiting for your answers!
![]()
__________________
![]() "Floppy ears and a big butt?" - Slaz |
Jan 16, 2015, 08:28 AM | |
The problem is that the highest score is effectively infinite, as there are regenerating items that give you points. You can also find a spot where there's a checkpoint/level start near an extra live and just repeat the get items for points -> die -> get same items for points cycle forever.
Speedrunning would probably be more interesting, e.g. completing levels as fast as possible. |
Jan 16, 2015, 08:40 AM | ||
Quote:
There is no one who bothered to actually aim for the highest score in the game, then post it somewhere?
__________________
![]() "Floppy ears and a big butt?" - Slaz |
Jan 16, 2015, 08:50 AM | |
I'm sure there's at least one spot with regenerating toaster ammo, because else you'd potentially get stuck as there's a frozen spring nearby. One item is all it takes to allow for potentially unlimited score...
There's a high score for you to beat here if you want to. |
Jan 16, 2015, 08:50 AM | |
Regenerating enemies: many of the bats in Castle.
|
Jan 16, 2015, 08:59 AM | ||
Quote:
Didn't notice that :P
__________________
![]() "Floppy ears and a big butt?" - Slaz |
Jan 16, 2015, 10:01 AM | |
Don't forget the regenerating bees from diamondus! The bane of every players existence.
__________________
|
Jan 16, 2015, 11:01 AM | |
Some other enemies that in the main campaign you can kill multiple times for infinite score are crabs, Bubba, Tuf Boss and - in TSF - skeletons. The maximum score you can reach in the main campaign is 2'147'483'646, which is simply the maximum number the score variable can hold, except minus one, because there's nothing that could make it an odd number. To reach this value, you effectively have to score at least 105'226'698'750 points, because all objects present in the main campaign are worth some multiple of 50 points. Killing crabs is probably the fastest way to score unlimited points and yields roughly 100 points per second. This suggests that reaching the maximum score would take approximately 33 years.
And that is why we don't do it.
__________________
I am an official JJ2+ programmer and this has been an official JJ2+ statement. |
Jan 16, 2015, 11:10 AM | |
Multiples of 50, because official levels don't contain butterflies. And I mention that in my post and take it into account, which is where the 105'226'698'750 number comes from, because it's the smallest possible positive value of x that fulfills the following requirements:
x % 50 == 0 (x & 0xFFFFFFFF) == 2147483646
__________________
I am an official JJ2+ programmer and this has been an official JJ2+ statement. Last edited by Sir Ementaler; Jan 16, 2015 at 11:23 AM. |
Jan 16, 2015, 11:47 AM | |
The high score system could have some meaning if taking respawning objects/killing respawning enemies didn't count. And automatically disqualifying you from the high scores list if you use cheat codes, of course.
Another thing to fix the point system, is that you should only get the score once, so if you purposely die to collect more points in the same place, you won't get them. Or once you die, you should lose the points you gained, with the start of the level/checkpoints saving the score you had at that point of time. To be a cheap person, you could always look up the levels in JCS to find all the secrets, though.
__________________
|
Jan 16, 2015, 02:10 PM | |||
Quote:
Quote:
The best thing is I'm absolutely positive all of this could be done with some scripting
__________________
"So unless I overwrote my heart with yours, I think not. But I might have." - Violet CLM Two Games Joined releases: Control / Splinter (twin singles) || Ballistic Bunny (EP) || Beyond (maxi-single) || Beyond: Remixed (remix EP) || Inner Monsters OST (mini-album) || Shadows (album) |
Jan 16, 2015, 02:41 PM | |
#1 is
Code:
void SelfRemoving1UP(jjOBJ@ obj) { if (obj.state == STATE::KILL) jjEventSet(uint16(obj.xOrg/32), uint16(obj.yOrg/32), 0); obj.behave(); }
__________________
Mystic Legends http://www.mysticlegends.org/ The Price of Admission - Hoarfrost Hollow - Sacrosanct - other - stuff |
Jan 16, 2015, 04:21 PM | ||
Quote:
I've never liked the idea of dying to get more points. It's like grinding to an extent. Too bad scripting the way point gaining works would be pretty redundant with a single scoreboard at the moment. When there are scoreboards for individual levels and packs, that's when I think the changes to gaining points and should come into action (and the original one should be phased out because it's a mess).
__________________
|
Jan 16, 2015, 05:52 PM | |
I don't think it's in 4.3 anyway.
|
Jan 16, 2015, 10:47 PM | |
Unless you ran an emulator for Windows 95+ that could speed up JJ2's internal clock by a factor of say, 1000x, 10,000x, 100,000x. Then maybe the amount of time to accumulate points would be greatly reduced, although the chance of bugs would greatly increase as well.
|
Jan 17, 2015, 12:28 AM | ||||
Quote:
Quote:
Quote:
It's definately not in 4.3, I checked myself.
__________________
![]() "Floppy ears and a big butt?" - Slaz |
Jan 17, 2015, 01:10 AM | |
This could work by simply multiplying the endgame score by your remaining lives(Unless you have none left).
|
Jan 17, 2015, 02:15 AM | |
addition would be much better than multiplication... I typically have about 40 lives when I end the official campaign, just imagine multiplying your whole score by that...
__________________
"So unless I overwrote my heart with yours, I think not. But I might have." - Violet CLM Two Games Joined releases: Control / Splinter (twin singles) || Ballistic Bunny (EP) || Beyond (maxi-single) || Beyond: Remixed (remix EP) || Inner Monsters OST (mini-album) || Shadows (album) |
Jan 17, 2015, 05:10 AM | |
Oh, yeah... Perhaps an extra 10% of your endgame score for every life you have left?
|
Jan 17, 2015, 12:19 PM | |
Didn't understand the reference, and I still don't. Didn't watch the first The Hobbit, so I'll say pass. *off-topic*
__________________
![]() "Floppy ears and a big butt?" - Slaz |
Jan 17, 2015, 12:27 PM | |
... Now, you see, Primpy, that is exactly why Stijn deletes your posts; they're offtopic, unnecessary, and don't add anything to anything.
Back on topic, what if remaining health gave a small amount of extra points? |
Jan 17, 2015, 10:42 PM | ||
Quote:
Back on topic, I don't understand this thread anymore, uhh...
__________________
![]() "Floppy ears and a big butt?" - Slaz |
Jan 17, 2015, 11:56 PM | ||
Quote:
Too bad you can't play the Christmas episodes in the same campaign, so you could add those scores to it as well. Or, you should consider it a seperate category and just add the score to the 'main' campaign. Has anyone ever noticed that gems give an extra life? According to the Trainer, gems should do this if you have enough. I take them for points, but lives? No.... @Primpy: At least I was more ontopic than you ![]() |
Jan 18, 2015, 02:01 AM | |||
Quote:
![]() Quote:
I'm saying my question is: How many extra lives can you collect in JJ2? |
Jan 18, 2015, 04:36 AM | |||
Quote:
yeah, gems don't give lives in the finished game, so the end level screen that's summing them up is kind of pointless, but on the other hand, the official episodes are already abundant in lives and it's not so easy to run out of them, even without the extra lives gems could give. the game's just not hard enough Quote:
but that doesn't contradict my suggestion at all... I said make 1ups collectable only once, not limit getting lives to one per checkpoint
__________________
"So unless I overwrote my heart with yours, I think not. But I might have." - Violet CLM Two Games Joined releases: Control / Splinter (twin singles) || Ballistic Bunny (EP) || Beyond (maxi-single) || Beyond: Remixed (remix EP) || Inner Monsters OST (mini-album) || Shadows (album) |
Jan 18, 2015, 05:44 AM | |
Oh, you got it kinda wrong. This ain't supposed to have anything to do with your suggestion. I'm just curious how many lives can you collect in the original game?
|
Jan 18, 2015, 07:30 AM | |||
Quote:
As for non-content, again, it's situational. If you're like Cooba and you make a silly post every now and then, it's quite funny. But the problem is, if you frequently post nonsense, people aren't going to be happy. Quote:
Additionally, I suggest that they are replaced with some kind of points pickup or fastfire or something instead of outright disappearing. Or, if possible, they could be greyed out and just give you the raw points that a 1-Up normally gives you, but without the extra life. |
Jan 18, 2015, 07:39 AM | ||
Quote:
As some people say, JJ2 is really designed for children to be beaten. I really hope Violet will make the points collected once again upon death to be remove, so people can really attemp achieving for the highest score possible.
__________________
![]() "Floppy ears and a big butt?" - Slaz |
Jan 18, 2015, 09:49 AM | ||
Quote:
1. Check the thread. Well that wasn't so hard, was it? You do know about the edit button, right? Regarding 100 gems giving a life, they don't. Either it's a bug, or an unfinished feature. I have a level where I'm trying to reach the score limit by collecting tonnes of gems, and my life count is still 3. I wish people would test if something was true instead of assuming it is, simply because "It says so in the manual!" and manuals can state features that don't exist. I don't think it'll be fixed since custom levels weren't made with it in mind, but it's very likely possible in AS. I want to make gems useful in a fun way with granting active abilities, so I'll likely not use them the way they were intended.
__________________
|
Jan 18, 2015, 10:20 AM | ||
Quote:
I'm confused. Collecting 100 gems gives you 1 extra life or it doesn't?
__________________
![]() "Floppy ears and a big butt?" - Slaz |
Jan 18, 2015, 10:33 AM | ||
Quote:
Oh and; I even gave proof that they don't give lives. How can you interpet that any other way?
__________________
|
Jan 18, 2015, 10:37 AM | ||
Quote:
![]()
__________________
Mystic Legends http://www.mysticlegends.org/ The Price of Admission - Hoarfrost Hollow - Sacrosanct - other - stuff |
Jan 18, 2015, 11:01 AM | |
that's what I mean, they didn't even bother to check if it still looks good (or they did but just went along with how it looks; I can't decide which possibility is worse)
__________________
"So unless I overwrote my heart with yours, I think not. But I might have." - Violet CLM Two Games Joined releases: Control / Splinter (twin singles) || Ballistic Bunny (EP) || Beyond (maxi-single) || Beyond: Remixed (remix EP) || Inner Monsters OST (mini-album) || Shadows (album) |
Jan 18, 2015, 11:01 AM | ||
Quote:
English is not that clear for me yet.
__________________
![]() "Floppy ears and a big butt?" - Slaz |
Jan 18, 2015, 11:29 AM | |
Well, Carrot1 suffers from the same problem, so I'm guessing they never bothered fixing anything. Even though they had "high" resolutions working as early as in 1996...
__________________
Mystic Legends http://www.mysticlegends.org/ The Price of Admission - Hoarfrost Hollow - Sacrosanct - other - stuff |
Jan 20, 2015, 05:16 AM | |
The bees are the worst...! I always hated the bees, I remember I was dying a lot from them.
__________________
~XxMoNsTeR |
Jan 20, 2015, 10:10 AM | |
Bees on Turbo mode are a huge pain! It's gonna take you a long time untill you pass the Diamondus 1/2 without saving.
__________________
![]() "Floppy ears and a big butt?" - Slaz |
![]() |
«
Previous Thread
|
Next Thread
»
Thread Tools | |
|
|
All times are GMT -8. The time now is 10:58 AM.
Jazz2Online © 1999-INFINITY (Site Credits). Jazz Jackrabbit, Jazz Jackrabbit 2, Jazz Jackrabbit Advance and all related trademarks and media are ™ and © Epic Games. Lori Jackrabbit is © Dean Dodrill. J2O development powered by Loops of Fury and Chemical Beats. Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
Original site design by Ovi Demetrian. DrJones is the puppet master. Eat your lima beans, Johnny.