User Tag List

Page 2 of 2 FirstFirst 1 2
Results 11 to 14 of 14

Thread: How to make blocks appear one after another?

  1. #11
    Clicker Fusion 2.5 DeveloperFusion 2.5+ DLCSWF Export Module
    N64Mario's Avatar
    Join Date
    Nov 2008
    Location
    USA
    Posts
    1,308
    Mentioned
    15 Post(s)
    Tagged
    0 Thread(s)

    Re: How to make blocks appear one after another?

    Okay. I think I got a general idea how spread value works.....
    Although I don't understand why I need to start with 'start of frame: spread value a ("block")' before it actually works. The counter starts at 0, and the starting value a of block is 50. I have the condition 'always: add 1 to counter' done.

    I noticed in my spread test app, it only spreads by 1. So if the start value is 50, spread goes 51, 52, 53, ec. Is it possible to spread it by any other number other than 1? For example, start value 50, then next value 55, then 60. or by 10, so 50, 60, 70, etc? Or is the spread value only limited to by 1?

    So after the blocks appear, how would i make them invisible again in a certain time, and re-appear in sequence, ala pattern?

  2. #12
    Clicker Multimedia Fusion 2 DeveloperSWF Export Module
    RickyRombo's Avatar
    Join Date
    Mar 2008
    Location
    Somewhere between here and there
    Posts
    3,167
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    Re: How to make blocks appear one after another?

    Have the block's value equal 0.

    Start of frame: Spread value 0 in alterable value a of block, set alterable value a of block to alterable value a("block")*5, add 50 to alterable value a of block

    In that order as well

    EDIT: Also, to have the counter stop and count backwards, use the Select Object extension.

    [Group: Count up]
    Always: Add 1 to counter

    Select 1 block by alterable value (1),
    Counter >= Alterable value a("block"): Deactivate group Count up

    (event that triggers countdown: Activate group countdown)

    [Group: countdown]
    Always: Subtract 1 from counter

    counter <= 0: Deactivate group countdown

    The deactivation isn't really necessary change it to whatever you want!

  3. #13
    Clicker Fusion 2.5 DeveloperFusion 2.5+ DLCSWF Export Module
    N64Mario's Avatar
    Join Date
    Nov 2008
    Location
    USA
    Posts
    1,308
    Mentioned
    15 Post(s)
    Tagged
    0 Thread(s)

    Re: How to make blocks appear one after another?

    Okay, i have another question.

    Say the spread value works like this.
    1, 2, 3, 4, 5

    at value 1, 1 block appears
    at value 2, 1 block appears at another place
    at value 3, 3 blocks appear simultaneously at different spots
    at value 4, 2 blocks appear simultaneously at different spots
    at value 5, 3 blocks appear simultaneously at different spots
    at value 6, 1 block appears at another place

    If there is a spread value being used, is this doable? Where some blocks appear at the same time at some spread values, while others appear at different spread values?

  4. #14
    No Products Registered

    Join Date
    Sep 2006
    Location
    Germany
    Posts
    861
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    Re: How to make blocks appear one after another?

    well spread value is really used only to identify items with unique numbers.

    If you want some sort of pattern then you should go with array or ini. In ini it could look like this:

    Code:
    [Pattern]
    1=456
    2=335
    3=565
    
    [456]
    Totalobjects=2
    1X=320
    1Y=230
    2X=64
    2Y=128
    
    [335]
    Totalobjects=4
    ...
    So First you would read group pattern, the number in front would be the assoiciated active with the current ID gained throught start of frame spread value.

    The second number would be the pattern type. Those could be reusable.

    After that you could have pattern groups that contain the total number of objects to get created and then also the associated X/Y values. You could add more data like type if active and so one.

    To get started with inis there are good tutorials available.

Page 2 of 2 FirstFirst 1 2

Similar Threads

  1. blocks merging into one another when moving by x
    By lembi2001 in forum Multimedia Fusion 2 - Technical Support
    Replies: 9
    Last Post: 31st March 2010, 01:30 PM
  2. Select adjacent blocks
    By Jacob in forum Multimedia Fusion 2 - Technical Support
    Replies: 16
    Last Post: 31st March 2010, 02:07 AM
  3. Pushing blocks?
    By Mdsx in forum Multimedia Fusion 2 - Technical Support
    Replies: 3
    Last Post: 13th December 2009, 07:08 AM
  4. How to make Blocks Change color in MMF2
    By OldGuy in forum Multimedia Fusion 2 - Technical Support
    Replies: 2
    Last Post: 28th October 2008, 07:50 AM
  5. Dropping blocks
    By RobTheBuilder in forum Multimedia Fusion 2 - Technical Support
    Replies: 1
    Last Post: 24th November 2007, 10:50 PM

Posting Permissions

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