User Tag List

Page 11 of 12 FirstFirst ... 9 10 11 12 LastLast
Results 101 to 110 of 116

Thread: How do you set up an RPG in MMFD2?

  1. #101
    Clicker Multimedia Fusion 2 Developer

    Join Date
    Apr 2008
    Location
    California
    Posts
    357
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    Re: How do you set up an RPG in MMFD2?

    That was a perfect assumption, they do have the bouncing ball movement. Sorry I forgot to tell that it was the bouncing ball, didn't I? Wouldn't adding 16 be like using the Reverse action? That's what I'm using now, I'll test your way too.

  2. #102
    No Products Registered

    Join Date
    Jun 2006
    Location
    Land of raging rockets
    Posts
    1,231
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    Re: How do you set up an RPG in MMFD2?

    I don't know if reverse works. It's been added after I decided to never use bouncing ball again

  3. #103
    No Products Registered

    Join Date
    May 2008
    Posts
    26
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    Re: How do you set up an RPG in MMFD2?

    You could always have an invisible circle following the enemies, and once it collides with the player, stuff happens. Using this you could also keep the enemies stationary until the player gets close, as well.

  4. #104
    No Products Registered

    Join Date
    Jun 2006
    Location
    Land of raging rockets
    Posts
    1,231
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    Re: How do you set up an RPG in MMFD2?

    Don't do that. Please. Instead either
    - use a loop and calculate the distance between enemy and player for each enemy (runs faster than a huge collision check) or
    - have an invisible circle around the player that makes the enemies do something if it touches them.

  5. #105
    Clicker Multimedia Fusion 2 Developer

    Join Date
    Apr 2008
    Location
    California
    Posts
    357
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    Re: How do you set up an RPG in MMFD2?

    Hm, I've never done anything like that Random. Based on your suggestion I think I should do something like this:
    Two types of invisible circles, one for the player, others for the enemies. I'll use conditions to create invible enemy circles for the enemies.

    Have the player's invisible circle collide with an enemy's invisible circle, this will check the stats of the player vs enemy. Then if the enemy itself collides with the player's circle, have the enemy run (bounce) if he is weaker or have it focus its attack (direction) on the player if the enemy is stronger.

    Originally I had the computer always compare the stats of the enemies to the player. With a second circle, I can check the stats only while the enemy is close by, therefore It'll be easier to engage a fleeing or attacking enemy.

    Thank you, I'll definatly remember to use invisible circles around characters.

  6. #106
    No Products Registered

    Join Date
    Jun 2006
    Location
    Land of raging rockets
    Posts
    1,231
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    Re: How do you set up an RPG in MMFD2?

    Wait a second I just recommended -not- to have them around the enemies. That's really wasting performance there. And it's kind of missing the point.
    The idea of the circle is to check for the distance (for the people who can't get it done with a formula or who prefer MMF's way of selection). So instead of having 100s of circles for enemies (as KuroiNeko recommended) have 1 for the player and check that with the enemies. If you have multiple enemies with different ranges, have one for every range, or rescale it before checking (make sure to not do that too often per frame though).
    Anyhow. Having circles for the enemies AND the player is clearly missing the point
    Best is to check with a formula. It's the least expensive and you can check the hotspots against each other (it's gfx independent).

  7. #107
    Clicker Multimedia Fusion 2 Developer

    Join Date
    Nov 2006
    Posts
    696
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    Re: How do you set up an RPG in MMFD2?

    Distance Formula
    Code:
    sqrt(((x("active1")-x("active2"))pow2)+((y("active1")-y("active2"))pow2))

  8. #108
    Clicker Multimedia Fusion 2 Developer

    Join Date
    Apr 2008
    Location
    California
    Posts
    357
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    Re: How do you set up an RPG in MMFD2?

    I have a new question, not for my RPG or any other game I'll ever make, but is there a way to change the graph in the frame editor so that the center of the screen is set up like a normal graph? with the + shape? I have an application that negates the x and y postitions, but the object goes off screen, because the negatives are all off the screen. Is there any way that I can view where the actuall object (without centering the screen on it?

  9. #109
    Clicker Multimedia Fusion 2 Developer

    Join Date
    Apr 2008
    Location
    California
    Posts
    357
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    Re: How do you set up an RPG in MMFD2?

    Well, since no one answered yet, I reprogrammed the game. Even though the game can't currently reproduce the proper effect based on mathematics. It still has the same basic effect.

  10. #110
    Clicker Multimedia Fusion 2 Developer

    Join Date
    Nov 2006
    Posts
    696
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    Re: How do you set up an RPG in MMFD2?

    I think you mean is it possible to set up the frame like a coordinate plane in mathemetics where quadrant I is (+,+), II is (-,+), III is (-,-) and IV is (+,-). That's not how computers look at a plane. They see it as quadrant I being in lower right, quadrant II in the lower left, III in the upper left and IV in the upper right.

    There is no way to change this in MMF2 because it is just the way the computer does things. Sorry, you'll just have to learn this new coordinate system.

    (sorry if I misinterpreted the question)

Page 11 of 12 FirstFirst ... 9 10 11 12 LastLast

Similar Threads

  1. My MMFD2 suddendly will not run!
    By Keli in forum Multimedia Fusion 2 - Technical Support
    Replies: 3
    Last Post: 16th April 2011, 12:22 PM
  2. I have an update problem with MMFD2.
    By Iwantmyrpg in forum Multimedia Fusion 2 - Technical Support
    Replies: 9
    Last Post: 10th July 2008, 02:24 AM
  3. Sound Problems With MMFD2 Demo in Vista
    By Collision_Cat in forum Multimedia Fusion 2 - Technical Support
    Replies: 3
    Last Post: 10th February 2008, 10:27 AM

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •