Charas-Project

Game Creation => Requests => RPG Maker Programming => Topic started by: Starduster on August 09, 2005, 02:38:35 AM

Title: Mini games in projects
Post by: Starduster on August 09, 2005, 02:38:35 AM
As we all know most games out there today have good story lines, but sometimes people like to play things that don't have to be so intense and hurt your brain with complex stories, this is probably why people started adding mini games to their games, it rounds off the game and makes it alot more fun to play.

So heres my big problem, it seems like i'm very uncreative when it comes to mini game ideas.  

I'm looking for some mini game ideas that i can use in my game, if you have any ideas to contribute i would appreciate it.
Title:
Post by: maxine on August 09, 2005, 09:06:06 AM
You can do classic mini games.

1. Teleport the player too a Maze. He has too go out before the time runs out

<>Set timer on whatever time you want.

<>Start the timer

Create a parallel process event somewhere without grphics

<>Branch when Timer is 0

<>Play sound effect (Some error sound)

<>Show message: Sorry try again

For the maze you can create blocks that you also have too move for the exitement.

Create a block event. Put it as same layer as hero and on Action key.

<>Play sound effect Earth 4 <--- Example

<>Move event THIS EVENT away from hero.

That was a maze some kind of thing.

you can do some side quest kinda thing (Easy and fun)

You come too a mystic man saying like "My 3 orbs are smewhere in tis city (maybe not orbs). If you find them i will give you this weapon... (Weapon would make the player more excited). Then you have too put 3 "orb" things in the town....

You need too have a variable done

VAR0001: Orbs

Then you go too the 2nd page of this man, and on the preconditions you make Variables and VARIABLE ORBS Equal too 3.

Then for each orb you find you do like this.

<>Message: You found an orb !

<>Variable operation VAR0001:orbs + 1

and them you might do a page 2 and leave it blank so you cant collect this orb several times.

This can be used by many other things that you have too collect.

Ok here comes something i made up for my game.. I didnt found it first of all but noone told me bout this way of mini game. Ok here it comes

You can teleport your character too a place.. There have too be a single path in front of him (Walls above him and below him/her sorry). Then you have too make a jump common event.

Common events and name it Jump in mini game

<>Make a switch so you only can use this event when a switch is ON

<> key input process (whatever key you want)

<>Move event HERO start jump, move 3 times forward (will tell you why 3 soon). And then end jump.. And check the ignore impossible movement thingy box. Yes thats it for the common

okay now back too the mini game, before you teleport too the mini game map you aswell switch the JUMP common event ON so you now can jump. Then if you have done it right you shall be able too only walk left and right and jump.. And when you jump it shall be 3 footsteps forward. Ok now for the objects that will make this all fun.

Make some enemies an the road that you have too jump over..

Make enemy, collision with hero, Move towards hero.

so now when the enemy and you touches each other this happens

<>Play sound effect (Some neat damage)

<>Flash sprite THE HERO Red or whatever

And here comes some choises, either way

<> Teleport too the beginning of the track

And there set a timer that you have too beat

Or create an variable called "Mini jump Life" (Mini game jump health meter for shorting). Then in the parallel process you made you can set Branch if VAR"Mini jump life" is 0.. And make SET VAR "Mini jump life" too whatever how many chances you want him/her too get.

<>Teleport (out of mini game)

And on each hit of the enemies you can make Variable operation VAR "mini jump life" - 1


Hmmm this was 3 of them but sorry that the third one got a little messy. I will post it sometime clearly in tut. section



Title:
Post by: Dashman on August 09, 2005, 02:44:43 PM
I once wanted to make a game with ONLY mini-games(for example, as Mario Party, but without the boards). I made some, and then... quitted. Here are some ideas(some of them are not mine.

Skateboarding or snowboarding.
Make a parrallel process that moves you down every 0.2 secs. Also, changing the hero graphics to have a skateboard would work. My personal touch was adding rocks in the road that, when you touch 5, you lose. And gems that, when you touch one, win gp.

Casino
Not to playable, but can spend some time... and money. I dunno how to make one. I have never been good at random events. I think I saw a tutorial about them on gamingw. Look carefully.

Rock, papers, scisors.
Another not so playable minigame. I don't even know how to make it, but I need it on my game. If anyone knows, please PM me. (I would be really happy ifthey add the code too.

Race to the finish.
Idea took from Super Smash Bros. You have to get to a certain area on a maze with enemies that, when they touch you, you lose. Adding time and, let's say, chests or things like keys can give it difficult.

Catch the chicken(or chocobo)!
Like Race to the finish, but without enemies. You just have to grab a chicken that runs from the hero. If it have double speed, it's better. I tried it and it's not so hard. I catched the chicken on about 10 seconds by cornering it.

Pac-man
Everyone knows how it is, right? All you have to do is to figure out how it works. I once played a game called Chocobo Panick, so it's posible(Chocobo Panick was made with RPGMaker)

They are all I know.
Title:
Post by: Chaotic_Death on August 09, 2005, 03:30:52 PM
I made a Pac-Man game like a year ago, gimmie a sec and I'll upload it.
Also, Rock-Paper-Scissors games are easy, though I've never attempted one.  If you give me a little while, I can make one.

EDIT: Okay, here's my Pac-Man game.  It sucks, I know, and needs a lot of work.  But give me a break, it was my first attempt at making a game that wasn't an RPG.

http://www.elavismo.avalonsmist.com/tlozeott/Pac-Man.zip
Title:
Post by: Starduster on August 09, 2005, 06:52:26 PM
hahaha very funny chaotic it's almost just like the original, i think i'll use all of you gouy's ideas in my game. Hopefully more >.>;
Title:
Post by: Dragonium on August 09, 2005, 06:55:58 PM
If anyone wants to see coding for a Rock Paper Scissors minigame, you can look at my demo. I made one, and it's not hard (Though it can get quite tedious ;)).

BTW, it's called Sword Spear Axe in my demo.
Title: I saw that chocobo game on
Post by: bikourbow2 on August 09, 2005, 06:57:53 PM
 amingga eroza [pig latin]
Title:
Post by: Starduster on August 09, 2005, 06:58:37 PM
yeah rock paper scissors is actually quite simple if you know the coding, it would seem quick and easy but you need alot of fork conditions  :p
Title:
Post by: Chaotic_Death on August 09, 2005, 08:30:16 PM
Quote
Originally posted by Starduster
yeah rock paper scissors is actually quite simple if you know the coding, it would seem quick and easy but you need alot of fork conditions  :p


Quick and easy it is, though.  Well, for me at least, since I'm a somewhat advanced coder. (See my Zelda game, and you'll understand.  :p )

Anyways, I should have it done by tonight.  Just need to finish up a few things.
Title:
Post by: Starduster on August 09, 2005, 08:49:06 PM
yeah i saw it very good work indeed.
Title:
Post by: Cerebus on August 09, 2005, 09:30:28 PM
I made a mini-game on rm2k that was called ''Cecil need his Gil''.
Well, there was 4. It was easy and weird, but it was kinda funny...well, that's my opinion! I had to remake them on rm2k3 cause to computer had to be formated so I lost the game. Anyway... The only problem is taht I don't know how I could show you...
Title:
Post by: Starduster on August 09, 2005, 09:52:10 PM
either describe it or take a screen shot in mid play
Title:
Post by: Chaotic_Death on August 09, 2005, 10:05:04 PM
Okay... almost done.
It sucks a lot, as I didn't put much time into it.  You can play around with it to make it tons better.
But here's a screen just for fun ;)

 http://img355.imageshack.us/img355/9969/rpsscreen2bk.png
Title:
Post by: Cerebus on August 09, 2005, 10:11:45 PM
Since I don't know how to take screen shot, I'll try to explain the better I can. I made a sort of arcade room in some house. When you press the action button in front of an arcade, it teleport you into the game, wich I'll explain : You control Cecil, and try to get your Gil that got stolen by a thief ( wich is Edge ). In the first one, you're in a place full of turtle ( wich is the cagnazzo charset ) that move randomly, and you have to get to the thief, wich doesn't move ( this is the easyiest ).In the second one' you're in a PUB without any turtle, but you have to catch the thief, wich move away from you very fast. In the third one, you're in a cave with 15 turtle moving toward you, and you have to catch the thief, wich move away from you very fast again. In the last one, you're in a throne room with 9 turtle moving toward you, and you still have to catch the fast moving thief, but this time, you move slower. So this is it. I hope you did understand something, cause that's the better way I could explain.
Title:
Post by: Starduster on August 09, 2005, 10:46:44 PM
sounds interesting, by the way take a screen shot with the button next to f12 that reads printscreen after that open up paint and paste it.

Show us a screen!
Title:
Post by: Chaotic_Death on August 09, 2005, 10:54:07 PM
Finished with the Rock-Paper-Scissors game, for whoever needed it.
That was a fun project.

http://www.elavismo.avalonsmist.com/tlozeott/Rock-Paper-Scissors.zip
Title:
Post by: Starduster on August 09, 2005, 11:09:48 PM
very amusing simple fun just the way i like it ^.^


Also off topic for a moment visit my game forum I'd like your feed back >.<
Title:
Post by: Starduster on August 10, 2005, 12:58:10 AM
I've come up with an idea for a game it must be the apocalypse...no really...it must be.

I was thinking of one of those games where your character is at the bottom of the screen holding a basket looking up.
Abovethe character it should maybe have a tree canopy or something that drops stuff like apples. I don't know how it would work out like how to keep the character from moving forward, and just make it move left and right ahh well if you can think of a way please tell me and if anyone else has any ideas please contribute.
Title:
Post by: Cerebus on August 10, 2005, 12:58:50 AM
I cannot take any screenshot. When I press the print button it does nothing... It is written Print Scrn / SysRq... Guess that mean System Required... I don't have it...
Title:
Post by: Starduster on August 10, 2005, 01:25:05 AM
no after you press that go to paint and paste it, basically pressing that button is like clicking on a piture and copying it.
Title:
Post by: ivan mage on August 10, 2005, 04:34:36 AM
i fond an easy way no keep the character from moving up and down, is to place some transparent chips that are set to x above and below her/him. they the character can only move side to side
Title:
Post by: Chaotic_Death on August 10, 2005, 01:07:31 PM
Or have a key imput, and have the game check if the up or down keys are pressed, then don't move the character.
Title:
Post by: Cerebus on August 10, 2005, 01:55:06 PM
Ok, I've put all the four Cecil need his gil Mini-Game so you can see each one.
Title:
Post by: maxine on August 10, 2005, 07:24:59 PM
looks kinda cool
Title:
Post by: Starduster on August 10, 2005, 09:58:21 PM
yeah the  key input thing might work better, since i need the bananas or whatever to be able to touch the character and eventually pass me x.x

nice screens cerebus :D