The Daily Click ::. Forums ::. General Chat ::. Borders, and map size help.
 

Post Reply  Post Oekaki 
 

Posted By Message

MrMohammed



Registered
  10/10/2006
Points
  22
11th October, 2006 at 17:39:38 -

how do i make it so that I cant walk off the screen. Also, I'm using the trial version and I cant make my map bigger than 640 x 480. Do I need the full version to do so?? Another thing, how can I make the map longer, but make the map move with my character and keep the character centered.

 
http://i84.photobucket.com/albums/k31/MrMohammed/cool-sig2.gif

MrMohammed



Registered
  10/10/2006
Points
  22
11th October, 2006 at 17:58:37 -

Thank you, now my character can't move of the screen. Oh, When I change the size of the map, the canvas is larger, but if I put my Background or anything off of the initial 640x480 it won't be shown.

 
http://i84.photobucket.com/albums/k31/MrMohammed/cool-sig2.gif

MrMohammed



Registered
  10/10/2006
Points
  22
11th October, 2006 at 18:04:39 -

I'll try that in a bit, it's not too important. Right now I'm trying to figutre out how to turn my ladder image into an actual ladder.

 
http://i84.photobucket.com/albums/k31/MrMohammed/cool-sig2.gif

MrMohammed



Registered
  10/10/2006
Points
  22
11th October, 2006 at 18:43:11 -

properties doesn't do anything when I click it. I got the scrolling thing to work though. Edit: my bad lmao. just noticed something I should have a while ago.

Image Edited by the Author.

 
http://i84.photobucket.com/albums/k31/MrMohammed/cool-sig2.gif

MrMohammed



Registered
  10/10/2006
Points
  22
11th October, 2006 at 21:33:08 -

naw, this stuff is a lot harder than I thought it would be. I'm starting to lose interest, but hope goes on. Anyway, I made that ladder thing, but the prblem is the climbing animation just keeps playing, rather quickly, instead of moving clip by clip as I press up or down like walking. Makes me feel like learmimg c++ to just program myself. then it would do whatever I want it to do. But for now I learn java.

 
http://i84.photobucket.com/albums/k31/MrMohammed/cool-sig2.gif

DaVince

This fool just HAD to have a custom rating

Registered
  04/09/2004
Points
  7998

Game of the Week WinnerClickzine StaffHas Donated, Thank You!Cardboard BoxDos Rules!
12th October, 2006 at 04:49:02 -

"Makes me feel like learmimg c++ to just program myself."

Ha. Ha. Start with something simple, first. Like MMF.

 
Old member (~2004-2007).

DeadmanDines

Best Article Writer

Registered
  27/04/2006
Points
  4758
12th October, 2006 at 09:03:57 -

MMF's not hard, just give it time.

Are you using MMF2?

MMF's built in movements are very very limited. To be honest, I don't think Clickteam have a clue when it comes to making games. But there are ways to get around the bugs and problems in the built in movements.

If you do a search for 'Custom Movements' you'll come across a much more useful way of moving your characters on the screen.

Basically, we use events to tell MMF how to move the player, instead of using the built-in movements to do it for us. We use events to tell the player to move left when we press 'left', to jump when we press 'shift', etc. We tell him how high to jump, how powerful gravity will be, stuff like that.

There are some awesome effects you can come up with. I've personally made games where you can grab ledges, hop onto moving platforms, perform double-jumps in the air, slide on slippery floors, grab walls and climb them like knuckles, etc.

I've known people who've even made Sonic The Hedgehog movements in MMF.

 
191 / 9999 * 7 + 191 * 7

MrMohammed



Registered
  10/10/2006
Points
  22
12th October, 2006 at 22:37:28 -

that's pretty cool. I guess I just pictured the simplicity of the built in functions. There is a lot more work then meets the eye lmao. Well, I'll give it a try, but to do the custom movements I will have to start from scratch... for the 4th or 5th time. Anyway, I just noticed, when I set the scrolling, if I go to a higher platform the ground shakes as I walk. And when I make the ladder stupid things happen like I can stand on the rungs and hang off it from my nose. Oh, and I can do an infinate jump while jumping against the wall. I have a major question though, is it possible to turn a game made by mmf2 into an mmorpg?

 
http://i84.photobucket.com/albums/k31/MrMohammed/cool-sig2.gif

David Newton (DavidN)

Invisible

Registered
  27/10/2002
Points
  8322

Honored Admin Alumnus
12th October, 2006 at 22:39:43 -

A couple of MMORPGs have been made using MMF2 - it has all the networking extensions that you'll need. But really, don't expect it to be easy.

You can correct the problem of hanging off platforms by using a rectangular invisible "collision box" to handle collisions, and always set the position of the object that contains the actual animations to its position.

Image Edited by the Author.

 
http://www.davidn.co.nr - Games, music, living in America

MrMohammed



Registered
  10/10/2006
Points
  22
12th October, 2006 at 23:52:10 -

ok, thanks, well I read a custom movement article, actually all that I found. But i don't understand where I do this part
"So enter the event editor, & create the Always event. Then create the condition, Set X Position of object to the X Position of that object, + the Alterable value, XPosition. This is how it would look.

X( Active )+XPosition( Active ) "

 
http://i84.photobucket.com/albums/k31/MrMohammed/cool-sig2.gif

markno2



Registered
  06/06/2006
Points
  865

Game of the Week WinnerVIP MemberPicture Me This Round 30 Winner!Weekly Picture Me This Round 39 Winner!Kliktober Special Award Tag
13th October, 2006 at 01:29:27 -

Here's how to stop the climbing animation repeating on the ladder, you need two separate lines of code:

Line 1:
+(your object) climbing is playing
. Speed of (your object = 0)
-Stop animation.


Line 2:
Speed of (your object) > 1 -Start animation.


 
Discarded pizza boxes are an indispensable source of cheese.

MrMohammed



Registered
  10/10/2006
Points
  22
13th October, 2006 at 18:13:03 -

but the problem is I don't know where to put that code. Is there a forum with more active people? I like getting fast replies lol.

 
http://i84.photobucket.com/albums/k31/MrMohammed/cool-sig2.gif

MrMohammed



Registered
  10/10/2006
Points
  22
13th October, 2006 at 20:10:11 -

Im not a complete newbie, I am learning some programming in school. But I wouls like to know more about the custom movements, I just don't know where to put the "start at char X, then add alterable X. I made an always event, but I don't know what to do after that.

 
http://i84.photobucket.com/albums/k31/MrMohammed/cool-sig2.gif

MrMohammed



Registered
  10/10/2006
Points
  22
14th October, 2006 at 14:45:06 -

naw I'm learning Java. And thanks Phizzy, that is the most simplest way to do it. By the way, what language is that being typed in?

Image Edited by the Author.

 
http://i84.photobucket.com/albums/k31/MrMohammed/cool-sig2.gif
   

Post Reply



 



Advertisement

Worth A Click