Computer Science Canada Ninja Box game... |
Author: | metachief [ Tue Apr 22, 2008 10:04 pm ] |
Post subject: | Ninja Box game... |
Hey guys, this is a game i made quite a long time ago, but was too lazy to post. Basically... youre a box going around the level collecting spheres within the time limit. It is not complete, but I don't think it ever will be! Has a map editor so make your own maps cuz the ones that I made are probably lame! |
Author: | repsoccer16 [ Thu Apr 24, 2008 7:55 am ] |
Post subject: | RE:Ninja Box game... |
extremely fun game..i'd have to say that spider is the hardest one followed by halo because it is extremely hard to get on top of the L ![]() |
Author: | metachief [ Thu Apr 24, 2008 8:25 am ] |
Post subject: | Re: Ninja Box game... |
thx... it would be nice to hear some comments or suggestions for improvement plzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzz....lots of ZZZZ...i liek...lol |
Author: | crysis [ Thu Apr 24, 2008 8:26 am ] |
Post subject: | RE:Ninja Box game... |
sweat can u post the code so i take a look at it |
Author: | repsoccer16 [ Thu Apr 24, 2008 8:27 am ] |
Post subject: | RE:Ninja Box game... |
lol nice ![]() |
Author: | crysis [ Thu Apr 24, 2008 8:30 am ] |
Post subject: | RE:Ninja Box game... |
can u plz post soon like in the next couple min. |
Author: | crysis [ Thu Apr 24, 2008 8:35 am ] |
Post subject: | RE:Ninja Box game... |
hurry plz im leaving soon |
Author: | metachief [ Thu Apr 24, 2008 5:20 pm ] |
Post subject: | RE:Ninja Box game... |
huh? post code soon? what do u mean youer leaving..? 0.o um ya (to repsoccer16) that run time error happens because you can only draw on the text document map...if it is outside then the program crashes because there is nothing to change (in other words it can't read outside the text document because there is not text) |
Author: | crysis [ Thu Apr 24, 2008 6:04 pm ] |
Post subject: | RE:Ninja Box game... |
sry about that but can u plz post the code for the game |
Author: | metachief [ Thu Apr 24, 2008 6:25 pm ] |
Post subject: | RE:Ninja Box game... |
im not going to post the source code...well because im a devil and i like to torture people the way i was tortured >: )... but if you have any specific questions feel free to ask them. |
Author: | repsoccer16 [ Fri Apr 25, 2008 7:39 am ] |
Post subject: | RE:Ninja Box game... |
okay ty for the info on the errors. |
Author: | crysis [ Mon Apr 28, 2008 5:33 pm ] |
Post subject: | RE:Ninja Box game... |
can u help me understand how to simulate gravity |
Author: | metachief [ Mon Apr 28, 2008 5:37 pm ] |
Post subject: | RE:Ninja Box game... |
sure |
Author: | metachief [ Mon Apr 28, 2008 5:38 pm ] |
Post subject: | RE:Ninja Box game... |
do u want me to send you an example that explains it? |
Author: | crysis [ Mon Apr 28, 2008 5:39 pm ] |
Post subject: | RE:Ninja Box game... |
ya that would help allot |
Author: | crysis [ Mon Apr 28, 2008 5:56 pm ] |
Post subject: | RE:Ninja Box game... |
you almost done with the example? |
Author: | metachief [ Mon Apr 28, 2008 6:06 pm ] |
Post subject: | RE:Ninja Box game... |
crysis i sent it to you in a message... |
Author: | metachief [ Mon Apr 28, 2008 6:07 pm ] |
Post subject: | RE:Ninja Box game... |
check your inbox |
Author: | Dan [ Mon Apr 28, 2008 7:51 pm ] |
Post subject: | RE:Ninja Box game... |
Please do not double post (there is an edit buttion for a reason). Also please do not post personal message to each other on the fourms use the PM system for that. |
Author: | metachief [ Mon Apr 28, 2008 9:11 pm ] |
Post subject: | RE:Ninja Box game... |
sorry, ill remeber that |
Author: | repsoccer16 [ Tue Apr 29, 2008 8:16 am ] |
Post subject: | RE:Ninja Box game... |
ya i need an example of that as well ![]() |
Author: | crysis [ Tue Apr 29, 2008 8:21 am ] |
Post subject: | RE:Ninja Box game... |
can u plz post the code id like to add stuff to it. |
Author: | Michael516 [ Tue Apr 29, 2008 8:26 am ] |
Post subject: | RE:Ninja Box game... |
why do you need the code for every program crysis? |
Author: | metachief [ Tue Apr 29, 2008 2:01 pm ] |
Post subject: | RE:Ninja Box game... |
hers a code for gravity scince all of you were asking for it... var jump_s : int := 20 var grav : int := 1 var key : array char of boolean var px, py : int var vel_y : real px := 20 py := 400 vel_y := 0 View.Set ("offscreenonly") colorback (54) loop Input.KeyDown (key) if key (KEY_LEFT_ARROW) then px -= 15 elsif key (KEY_RIGHT_ARROW) then px += 15 end if if key (KEY_UP_ARROW) and py = 10 then vel_y := jump_s end if vel_y -= grav py += round (vel_y) if py < 10 then py := 10 vel_y := 0 end if drawfillbox (px - 10, py, px + 30, py + 40, yellow) drawfillbox (0, 0, maxx, 10, black) delay (25) View.Update cls end loop |
Author: | crysis [ Tue Apr 29, 2008 6:11 pm ] |
Post subject: | RE:Ninja Box game... |
sry i just want to understand how it works!!! Hey metacheif im working on a pacman game and id like to know how you made it so ninja box could collect the circles and how you prevented him from falling throung the bricks? |
Author: | CodeMonkey2000 [ Tue Apr 29, 2008 6:49 pm ] |
Post subject: | RE:Ninja Box game... |
http://compsci.ca/v3/viewtopic.php?t=15927 It's still not complete, and I plan on revising it one of these days. I stop procrastinating tomorrow. |
Author: | Tallguy [ Thu May 01, 2008 9:29 am ] |
Post subject: | RE:Ninja Box game... |
it really cool, but again post the lvl names on the splash screen so we know wat 2 do |
Author: | metachief [ Thu May 01, 2008 3:05 pm ] |
Post subject: | RE:Ninja Box game... |
thanks for sugestion, but i doubt ill get about to doing that..loo lazy and dont care abou that game much anymore---moving onnn |
Author: | crysis [ Tue May 06, 2008 3:15 pm ] |
Post subject: | RE:Ninja Box game... |
what are u going to do for your next project? when your done can u PM me the game before u post it? |
Author: | Aziz [ Tue May 06, 2008 3:49 pm ] |
Post subject: | RE:Ninja Box game... |
Pretty decent game, metacheif. The gravity is nice and smooth and natural. I think that's enough nagging from you, crysis. I have a sniff of code-stealing trying to be done here, and while that may not be the case, if you want code look in the proper forum. This is his intellectual property and he has no duty to give the code to you, especially PMing it to you before he posts it. And you're lack of proper typing (or even trying to) invokes the Hulk in me. I'm too prejudice against n00bs. |
Author: | metachief [ Tue May 06, 2008 11:17 pm ] |
Post subject: | RE:Ninja Box game... |
Thanks Aziz. For once, someone posts a legitement reply... Sorry crysis, I won't PM you with the code. Why would I want to give it away after I spent hours making this game. And it's not just me, I suspect everyone feels this way when they make something impressive (at least to them-selves). There would be no point in posting this game under my name if I were to just give code away. Although, if you have any specific questions about how I programmed parts of the game, I can give you suggestions and explanations. Once again, don't expect code, and prepared work. You must contribute time and thought, and learn, not copy and paste. |
Author: | Michael516 [ Wed May 07, 2008 7:56 am ] |
Post subject: | RE:Ninja Box game... |
i agree with aziz, you should not keep trying to steal people's codes. |
Author: | repsoccer16 [ Wed May 07, 2008 8:00 am ] |
Post subject: | RE:Ninja Box game... |
If you continue with this Crysis it is only a matter of time before you will be banned from compsci. I know you just want the codes so you can learn the whole game but that is basically stealing these people's original ideas so it has to stop. |
Author: | Aziz [ Wed May 07, 2008 9:41 am ] |
Post subject: | Re: RE:Ninja Box game... |
metachief @ Wed May 07, 2008 12:17 am wrote: Thanks Aziz. For once, someone posts a legitement reply... Sorry crysis, I won't PM you with the code. Why would I want to give it away after I spent hours making this game. And it's not just me, I suspect everyone feels this way when they make something impressive (at least to them-selves). There would be no point in posting this game under my name if I were to just give code away. Although, if you have any specific questions about how I programmed parts of the game, I can give you suggestions and explanations. Once again, don't expect code, and prepared work. You must contribute time and thought, and learn, not copy and paste.
Repeated many times around this site repsoccer16 wrote: If you continue with this Crysis it is only a matter of time before you will be banned from compsci. I know you just want the codes so you can learn the whole game but that is basically stealing these people's original ideas so it has to stop. If I was a mod, he may be gone, but I think my booting leg is a little too free. (By the way, reporting me will get you no where) But that's enough off-topic methinks. You really should take this system and make it more expansive. A higher resolution/bigger view window would be a start, and adding actual sprites, etc. Is this physics/game engine separate from the graphics? That should make it easy to change how its rendered. |
Author: | metachief [ Wed May 07, 2008 10:09 pm ] |
Post subject: | RE:Ninja Box game... |
Practicaly...I made this game as a base for all the platformers that I will decide to make. I skipped the graphics, and sprites part because I din't intend on having it as a game. Instead I think of this program as a guide for all my other projects. I have been working on a 2D shooter for quite some time, but then gave up because I had collision detection issues and half of it got erased somehow. When I have free time I will restart from scratxh using this game/program as a base and hopefully I'll make a decent platformer shooter. By the way it's based on the halo series (main reason is because Master Chief rocks and they have great sprites for it.) |
Author: | Aziz [ Thu May 08, 2008 8:43 am ] |
Post subject: | RE:Ninja Box game... |
Sounds good, go for it. |
Author: | repsoccer16 [ Fri May 09, 2008 7:30 am ] |
Post subject: | RE:Ninja Box game... |
ya sounds like a great idea and i can't wait for your next game ![]() |
Author: | BaddiePayve.HxC [ Fri May 09, 2008 8:48 am ] |
Post subject: | RE:Ninja Box game... |
awesome possum |
Author: | twinblade27 [ Fri Nov 06, 2009 2:35 pm ] |
Post subject: | RE:Ninja Box game... |
extremely fun game but i wish the time limit was a little longer for more time to beat the spider |