Myths you know

Status
Not open for further replies.
  • 21
    Posts
    11
    Years
    • Seen Jan 27, 2015
    I looked up on wikiHow eHow YouTube Google AOL Ask Blekko Bing Yahoo
    etc. about 52 myths before.


    Myth: In GML (Game Maker Language) if relative without at least one error is impossible.


    Truth:

    Code:
    Create Event:
    Misty_Plus = 0;
    Misty = 12;
    
    
    
    Step Event:
    if (Misty_Plus <> 0)
    {
      Misty += Misty_Plus;
      Misty_Plus = 0;
    }
    if (Misty_Plus = 12)
    {
      x += 12;
    }
    
    
    
    K press event:
    Misty_Plus = 12;
    False as up above example proves.
     
    Status
    Not open for further replies.
    Back
    Top