Log In  

Cart #17567 | 2015-12-06 | Code ▽ | Embed ▽ | License: CC4-BY-NC-SA
110

I made this "fan" game as an exercise to learn what I could do with pico-8. Pico-8 is such a great platform, and definitely challenging. My next effort will be something original. Enjoy!

P#17568 2015-12-06 18:13 ( Edited 2017-08-04 06:28)

Very nice! Thanks!

P#17569 2015-12-06 18:45 ( Edited 2015-12-06 23:45)

This feels very much like the original. You even nailed its controls!

Excellent!

P#17581 2015-12-07 04:44 ( Edited 2015-12-07 09:44)

Amazing game! Great remake.

P#17589 2015-12-07 16:08 ( Edited 2015-12-07 21:08)

Thanks for all the positive feedback. I think I managed to squeeze most of the important stuff I wanted in this game, but some things had to be left out. Overall I am very happy with it. It was a very educational process. The amount of detail in such a seemingly simple game surprised me. For anyone interested in learning game design, I would highly recommend dissecting a classic arcade game.

Thanks again!

P#17590 2015-12-07 18:21 ( Edited 2015-12-07 23:21)

YES. There should be more arcade ports! MORE I SAY!

(They don't all have to be from you.)

P#17592 2015-12-07 20:25 ( Edited 2015-12-08 01:25)

awesome! i don't know the original, but some googling revealed atari 2600's berzerk... but this has a more pacman-y touch... what's the original? EDIT: enhancing my google-fu revealed Wizard of Wor and god the sprites are identical!!

P#17614 2015-12-09 00:46 ( Edited 2015-12-09 05:50)

niiiiice

P#17673 2015-12-10 09:23 ( Edited 2015-12-10 14:23)

Did not play the original - but I think you totally nailed the arcade feeling. Nice job!

P#17693 2015-12-11 03:55 ( Edited 2015-12-11 08:55)

Thanks! I would like to spend more time creating my own 'retro' style arcade games. It is really nice to work on a small project that can actually be completed in a reasonable amount of time.

P#17694 2015-12-11 04:46 ( Edited 2015-12-11 09:46)

I don't quite know how you're handling score (haven't checked), but I suggest you do it like this:

  • The minimum score you can get is 100, right? Take away those two zeroes in the code and refer to it as "1" instead.
  • Tack on the two extra zeros when displaying the score.
    Example:
print(score.."00",x,y,color)

Again, I haven't checked the code.
The reason why I'm recommending this is that PICO-8 has a variable limit of 16 bits (32767), so doing this method allows for the maximum score to be 3.27 million.

But based on your work, you probably already know this small hint.

P#17698 2015-12-11 10:23 ( Edited 2015-12-11 15:23)

That's actually a much better way than mine. I did not really consider the score values being multiples of 100 at the time, and so I wrote my code to break each score into 2 values: thousands, and < 1000. I think I will change it to use your suggestion. Thanks! Every byte counts!

P#17699 2015-12-11 10:58 ( Edited 2015-12-11 15:58)

This is great. I love of Wizard of Wor and this is spot-on.

P#17701 2015-12-11 11:25 ( Edited 2015-12-11 16:25)

Hadn't really thought that it saves bytes, but I suppose it does.

That's a kinda crazy way. Tell me how many bytes you save, okay?

EDIT: Gotta praise the faithfulness to the arcade classic (sans the voice, but that'd be tough to do).

P#17702 2015-12-11 11:26 ( Edited 2015-12-11 16:29)

@Skyrunner65, after refactoring my code, your suggestion saved me almost 200 tokens. That's enough for me to add some extra details. Thanks!

P#17716 2015-12-11 18:56 ( Edited 2015-12-11 23:56)

No problem. Although I'm not a master programmer, I do what I can.

P#17729 2015-12-12 13:56 ( Edited 2015-12-12 18:56)

Excellent version of my favorite game on the C64! If you find the time (and memory) to add the sounds for enter/exit the door(s) and the rise sound for the player at the start of the level, this would perfect an already perfect game.

P#17792 2015-12-14 10:23 ( Edited 2015-12-14 15:23)

Hmm... I guess now that pico-8 has more code space I should revisit this game. Once I'm done with "highsteel", I will consider this.

P#19531 2016-04-01 10:50 ( Edited 2016-04-01 14:50)
1

Good to hear you'll be considering revisiting this game. I really like it and you did a great job! I'm working on a somewhat similar game, it's a remake of "Thunder Castle" for the Intellivision. It's kinda like a cross between Pacman, this game (Wizard of Wor) and Rogue (though it's not a Roguelike or Rogue lite, but it seems to borrow certain elements). I think all three were likely inspirations for it. Fun trivia about Thunder Castle: the dragon on level 1 of the game was very likely to be the inspiration behind Trogdor the Burninator from Homestar Runner (who subsequently also got his own Hearthstone card, "Troggzor the Earthinator").

P#19555 2016-04-02 19:37 ( Edited 2016-04-02 23:39)

Thunder Castle looks like fun. I didn't know about this game. I like how the maze changes shape. Oh, also, Trogdor!!! So funny.

I just completed a game called HighSteel. So now that I am free-ish again, I will play around with this cart some more. After a bit of a break.

Can't wait to play your game when it is ready!

Trogdor!!!

P#19563 2016-04-03 09:22 ( Edited 2016-04-03 13:22)

I played HighSteel and it's a ton of fun! Went right into my cart collection. Reminds me a bit of Lode Runner for some reason :P

I noticed you said on Twitter that it was inspired by Jumpman - believe it or not, I've never played Jumpman, but I can definitely see the resemblance from the screenshots I found of it.

P#19569 2016-04-03 15:09 ( Edited 2016-04-03 19:09)

Unbelievable job, gratz! =)

P#24917 2016-07-08 16:14 ( Edited 2016-07-08 20:14)

So much fun! A real throwback to playing the original with my dad in the arcade when I was a little kid. I have WoW in MAME, but there's something about this that feels grittier and, in a way, more fun.

P#25002 2016-07-09 18:06 ( Edited 2016-07-09 22:06)

A spot on remake. Incredible job!

P#28562 2016-09-15 19:32 ( Edited 2016-09-15 23:32)
1

Very nice ! For those curious, this is based on WIZARD OF WOR (spelled correctly) from the arcade game of 1981, and is in fact is still one of my favorite games next to Strider, and Venture.

https://www.youtube.com/watch?v=D780JHlQxxs

Playing this I can tell you that the monsters speed up the less number there are. Try out the original on MAME or some other emulator to see what I mean. On level 7 or so, the critters speed up so fast it's virtually impossible to shoot them in time.

Check the special effects for shooting each attacker. The WIZARD when SHOT I know does this interesting static-type of pixeled effect on all dots of the maze.

The text for each level is on a BLACK screen with very large letters that are fat horizontally and skilly vertically - so there are divisions between the vertical pixels. You could scan the original default 3x5 letters of PICO and display those at a new size if you like.

If you really want a challenge, you might experiment with sound and see if you can get something that sounds like weird speech. It doesn't have to be intelligible, just a strange sound that is similar to the original arcade game's digital speech. I know they did this for some early NES games like the 16k BASEBALL.

Using only strange pitches and carefully placed white noise, you could hear the catcher 'yell' BALL, STRIKE, OUT, SAFE, and CHANGE. It really wasn't speech but a bunch of notes stuck together and played at a high speed so as to give the effect it was.

P#28563 2016-09-15 19:36 ( Edited 2016-09-16 03:41)
1

Just to add to the praise for this remake.
This was a family favourite for us on our ol' Atari 400 (along with River Raid).
Sadly, never got to play it in the arcades.
You've nailed the playability of the original (and the stress-levels!)
Well done! :D

P#37385 2017-02-12 12:01 ( Edited 2017-02-12 17:01)

Wizard of Wor was a staple in our old C64 collection. Great port, and your laser shot/hit sounds even better than it did on the SID chip. Awesome work!

P#37411 2017-02-13 01:04 ( Edited 2017-02-13 06:04)

Had to pop into this thread to mention that me and my 7 year old Nephew enjoyed this game for more than an hour in 2p mode, on my PicoPi just the other day.

P#41984 2017-06-28 19:08 ( Edited 2017-06-28 23:08)
1

I used to play Wizard of Wor in the arcade.
This is an awesome adaptation!
Thank you.

P#41985 2017-06-28 21:40 ( Edited 2017-06-29 01:40)

Nice !

P#43045 2017-08-04 02:28 ( Edited 2017-08-04 06:28)

Playing this game again after a few years.

Ah, I shot the wizard but no cool B&W palette swap or flashy effects for minor boss ?

https://youtu.be/9Lodc0kFYuo?t=103

https://youtu.be/9Lodc0kFYuo?t=225

P#68771 2019-10-11 19:20 ( Edited 2019-10-11 19:21)

One of my favourite games on the C64 back in the day.

You really nailed it, including the SFX which really add to the retro feel. Well done!

P#85267 2020-12-11 02:35

@Gadzooka I just found this game, and damn is this a fine version of Wizards of Wor on the Pico-8! I love it!

P#96843 2021-09-03 20:06

Wizard of Wor was one of the first true killer-games in the early
phase of the c64, no matter of being played solo or mano-e-mano.
I love playing it to the very day and i also love this brilliant port.
Well done, Worrior!

P#133965 2023-09-06 00:00 ( Edited 2023-09-06 00:01)

@Gadzooka Would you mind allowing this game to be embeded?

P#135996 2023-10-16 21:51

better pacman w rizz

P#136979 2023-11-05 21:14
1

My favourite PICO-8 game ever, hands down. I think I prefer Wizards Rule to WoW; which considering my love of WoW is very high praise indeed!

P#137406 2023-11-14 08:12

[Please log in to post a comment]

Follow Lexaloffle:          
Generated 2024-03-28 21:14:42 | 0.042s | Q:78