Neb4k

Phew! You had me worried there for a moment. Just added multi-level support. I’m going to update the designer to allow you export individual levels or save the whole lot to one file.

The Onyx/Banes collaboration level is in webstart now! :slight_smile:

Kev

Oh, for your interest, there were two problems:

  • When the character used a door the game didn’t skip out of the logic state straight away. This meant other inteactions could play with what was going.

  • If you happened to get a 0 milliseconds change between frames (very rare, but still) the door transition could happen twice (i.e. there and back again) in one move.

Both should be fixed now.

Kev

Now that the doors work, I was finally able to create the most evil level EVER! BWHAHAHAHA!!! See if you can survive… or die trying!!!

http://java.dnsalias.com/4k/d-hard

;D

EDIT: Actually, that’s Onyx’s level you have on Webstart right now. But thanks for the credit! :slight_smile:

Really going to have to start thinking about optimising like mad soon.

The top of the tower is actually the top of map now btw… :slight_smile:

Kev

The Onyx/Banes collaboration level is in webstart now! :slight_smile:

That one isn’t a collaboration level. Well, it was somewhat hard to follow… I made one… jbanes edited it… and edited it again (and again?)… I started another one and edited that 2 times and that’s what ended up as d4. Oh and between all that there was also a test level from jbanes. Heh :wink:

The level flow is pretty much “on rails”. Most bits have a purpose and there aren’t many “noise” tiles. There is also only one spot with a rather big penalty for mistakes (after the 2nd door). So it’s a rather easy-medium level, which could be put in the middle if there are 3 levels at the end.

Just to be clear, I think there are now 3 distinct levels that you can use Kev:

http://java.dnsalias.com/4k/d (jbanes)
http://www.kaioa.com/k/d4 (onyx)
http://java.dnsalias.com/4k/d-hard (jbanes)

The above are ordered by date of posting, but actually end up being in order of difficulty as well.

Onyx actually made a few different versions of the d4 one, so you may want to decide whether a few of them are different enough to be considered separate levels:

http://www.kaioa.com/k/d (the one I used as a base)
http://www.kaioa.com/k/d2
http://www.kaioa.com/k/d3

P.S. Has anyone beat my Evil level yet? :wink:

Thanks for the clarity :slight_smile:

New version uploaded, multilevel support in both the game and editor. The new editor allows you to “import” the old style levels and then resave them as a block of levels.

In game I haven’t managed to test the “YOU WIN” at the end of the levels since I can’t beat the d-hard level :(.

Back soon… gonna get it.

(I love the way at that one bit you have to look round the tower to see where the bad guy is then go through the door, brilliance!)

Kev

[quote]New version uploaded, multilevel support in both the game and editor. The new editor allows you to “import” the old style levels and then resave them as a block of levels.
[/quote]
Cool, multiple levels!

[quote]In game I haven’t managed to test the “YOU WIN” at the end of the levels since I can’t beat the d-hard level :(.
[/quote]
I tested it for you, it works. If you want a spoiler “hint” on how to beat it, click the link below:

Spoiler

[quote](I love the way at that one bit you have to look round the tower to see where the bad guy is then go through the door, brilliance!)
[/quote]
Thank you! :slight_smile: But that’s only one calorie evil. Making the user restart from the first level when they die, now that that is pure evil! :wink:

Making the user restart from the first level when they die,
now that that is pure evil! :wink:

Me demands 3 lives! ;D

Heh. Couldn’t resist… new from scratch level which is supposed to be hard :wink:

http://www.kaioa.com/k/d5

But I think I kinda overdid it… the level editor got some spasms like right click=deleting tiles (wtf) and forgetting the first enemy after another one was added (mh?)… I just changed some things here and there and it worked… and the game itself also showed some oddities. Like beein hit by an enemy while teleporting… then you drop through the floor on the other side… and then you snap back O_O

d4 has clearly the better show-off factor, because it doesn’t have that many glitch-“opportunities” (aka enemies).

Fixed enemie glitches locally. Just trying to cram it down a bit more before posting.

Kev

Hey Oynx? It’s time to upgrade your version. The most recent version of Neb4K places the character on the other side of the tower. Thus you start the game… and fall into the moat. I tried playing with the previous version, but I ran into the door problem. :frowning: If the newest stuff isn’t in the JAR download yet, you can grab the webstart version here:

http://www.cokeandcode.com/games/4k/neb4k/neb4k-ws.jar

Let us know when your level is fixed. I’m itching to play it! :slight_smile:

Edit: In the new editor, it seems a simple “import” and “save” does the trick.

Uh, the new version doesn’t start at the other side of the tower, you still start at 0,0. However, you’ll get odd results if you try and “load” an old level into the editor rather than “import”.

Time to set up the Neb4k community site :stuck_out_tongue_winking_eye:

Kev

That was a lot of fun. And danged hard to figure out where to jump off of. Nice use of Robots, BTW. :slight_smile:

This game is brilliant, great job!

;D

really good work kev! There is also another Java implementation of it on www.javaonthebrain.com/java/cross/

Yea… I uploaded it in single-level format like the others where. I did that to avoid confusion… heh… :-[ :stuck_out_tongue:

That was a lot of fun.

Thanks. Building was also fun :wink:

And danged hard to figure out where to jump off of.

Spoiler ahead!

Yes, but I also used some hinting here and there. For example at one point I show the general direction with a coin… and some steps down I indicate a direction change with anther coin. I also added spots which look like a dead end, but are infact just a tool to let the player jump into the unknown void on the other side… haha… but infact the regular path continues there. Since the player won’t assume such things usually, he’ll be a bit confused and disorientated :wink:

Nice use of Robots, BTW.

Thanks ;D


Regarding the editor… the blank tile has the “cyan barrier” tooltip and the cyan barrier doesn’t have one at all. And please add drawn doorlinks eg as green lines (drawn first). I had to virtually go through the level countless times, because I lost track of the doorlinks.

Hm. I think it will get hard to squish 3 levels into it… the last class (multilevel support and enemy glitch still there) together with a 3 level compilation (d, d4 and d5) is 4118 bytes (kzip)…

However, if I use an additional pack200/unpack200 step I end up with a class with has the same size (7303), but compresses better than the original. Resulting in 4080 bytes! (The levelname was “tri” instead of “d” btw).

[quote]pack200 --no-gzip --modification-time=latest n.jar.pack n.jar
unpack200 n.jar.pack n_p200.jar
[/quote]
(If it doesn’t work right away you can just copy both exes from the bin directory)

That’s a difference of 38 bytes. With 7zip the difference was only 10 bytes.

3 Levels in Neb4k? Pah, I say… pah! If you check your webstart you’ll find the wonderous 4 level adventure! Be warned the level file format has changed a bit to support this so you’ll need a new nebed to create the bulk file. I’ve left import/export format the same so we can continue getting your levels. Hopefully included is a fix for enemy irritation bugs, a removal of the 10 enemy limit on the level and a few colour changes.

I still haven’t complete jbanes level, let alone the new onyx creation. I would like to thank you guys for creating them for me, very kind… :slight_smile:

It all comes in at 4087 bytes so minor mods to the existing levels may well be possible.

Thanks again,

Kev

PS. On, to the next 4k game… :slight_smile:

I have never seen a game like this before !! Very nice graphics effect man !!!

I would concider this game as one of the best 4k games yet because it is so different from all the others !

I vote on Neb4k !! :smiley:

If you check your webstart you’ll find the wonderous 4
level adventure!

:smiley:

Be warned the level file format has changed a bit[…]

What did you change on the format? Using variable level sizes? Fipped x and y?

I still haven’t complete jbanes level

Heh. Well, he kinda abused the odd telepad behaviour, which occurs when there are more than 2 pads in a column.

I would like to thank you guys for creating them for me,
very kind… :slight_smile:

As I said… it was pretty interesting and fun to do. I wasn’t aware that I had a burning desire to make platformer levels. Hehe. The level building process was pretty much like a game itself :wink:

It all comes in at 4087 bytes so minor mods to the
existing levels may well be possible.

The only thing I would change is the position of the text stuff. It’s not properbly centered right now.

4 Levels! :o Great job Kev!!! My only request is, could you restart the player at the current level when he dies? It’s kind of annoying to have to start all over.

[quote]>I still haven’t complete jbanes level

Heh. Well, he kinda abused the odd telepad behaviour, which occurs when there are more than 2 pads in a column.
[/quote]
Hey, now. I didn’t abuse anything. Teleporters can go both up and down. I just threw the player for a loop, and used a lot of indirection to try to get him killed. Actually, I think the coins right as you come out of the door is a far more evil trap. I keep trying to go for those coins myself, and I made the level! ;D