User Tag List

Results 1 to 5 of 5

Thread: Can anyone help me please?

  1. #1
    Clicker Fusion 2.5 DeveloperAndroid Export ModuleHTML5 Export ModuleSWF Export Module
    ineke's Avatar
    Join Date
    Jan 2011
    Location
    Netherlands / Spain
    Posts
    310
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    Can anyone help me please?

    Hi,
    I'm a very beginner, make some tutorials but now I want to make a simple 1+1=2 math or sums or how do you call it game. I want make the numbers myself but how can I let mmf2 make the calculation and put the sums on the screen at random. Hope you'll understand what I mean, sorry for my bad english.
    Ineke

  2. #2
    No Products Registered

    Join Date
    Feb 2011
    Posts
    30
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    Re: Can anyone help me please?

    Hi, most calculations are made using the expression editor.
    I made a really simple calculator for you to check out.
    http://www.imstockhaus.com//simplecalculator.mfa
    keep in mind its simple and wont show decimals.

    Didnt really understand with putting the sums on the screen at random, but added a big random button for you to show how to make a random number if thats what you mean.

  3. #3
    Clicker Fusion 2.5 MacFusion 2.5 DeveloperAndroid Export ModuleHTML5 Export ModuleiOS Export ModuleSWF Export ModuleXNA Export ModuleUnicode Add-on
    Fusion 2.5 (Steam)Fusion 2.5 Developer (Steam)Fusion 2.5+ DLC (Steam)Android Export Module (Steam)HTML5 Export Module (Steam)iOS Export Module (Steam)Universal Windows Platform Export Module (Steam)Firefly 3D Module (Steam)
    Phi's Avatar
    Join Date
    Jan 2010
    Location
    England
    Posts
    1,964
    Mentioned
    25 Post(s)
    Tagged
    0 Thread(s)

    Re: Can anyone help me please?

    It would be quite easy, all you need is 3 random numbers:
    Number 2 could shown what sign it is (eg add)
    then just set
    Global Value A to random(max number you want)
    Global Value B to random(4)+1
    Global Value C to random(max number you want)
    If Global Value B = 1
    Set Question box to str$(Global Value A)+"+"+str$(Global Value C)
    If Global Value B = 2
    Set Question box to str$(Global Value A)+"-"+str$(Global Value C)
    ...
    If User pressed Enter and Global Value B = 1 (add), and Compare two general values: what the user put in = Global Value A+Global Value C -> yay, they've got it right
    If User pressed Enter and Global Value B = 1 (add), and Compare two general values: what the user put in <> (different to) Global Value A+Global Value C -> booh, they got it wrong.

    If User pressed Enter and Global Value B = 2 (subtract), and Compare two general values: what the user put in = Global Value A-Global Value C -> yay, they've got it right
    If User pressed Enter and Global Value B = 2 (subtract), and Compare two general values: what the user put in <> (different to) Global Value A-Global Value C -> booh, they got it wrong.

    ... and so on. If you don't understand it, reread it - there is a Chocobreak Tutorial for MMF2 if you check under the menu item Help>Tutorial

  4. #4
    Clicker Fusion 2.5 DeveloperAndroid Export ModuleHTML5 Export ModuleSWF Export Module
    ineke's Avatar
    Join Date
    Jan 2011
    Location
    Netherlands / Spain
    Posts
    310
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    Re: Can anyone help me please?

    Wow I didn't see I have two answers. I'll try them. Thank you both so much for answering. I did the chocobreak tutorial and a lot more, but sometimes it's the language problem I don't understand a lot off things. Thanks thanks thanks.

  5. #5
    Clicker Fusion 2.5 DeveloperAndroid Export ModuleHTML5 Export ModuleSWF Export Module
    ineke's Avatar
    Join Date
    Jan 2011
    Location
    Netherlands / Spain
    Posts
    310
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    Re: Can anyone help me please?

    Everything works fine now. Thanks.

Posting Permissions

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