Users browsing this thread: 1 Guest(s)
Game Maker and 5 Other Discussions thread
#3
The OP makes my head hurt. Why did you just list a bunch of search engines? And why does this thread have 6 topics? Also:

Code:
var Kylee,KyleePlus; //These variables are declared, but never defined

if (keyboard_check_pressed(ord("L"))){
  Kylee = choose(KyleePlus+1,KyleePlus+12){ //KyleePlus is being used in an expression without a value, this would cause an error
    if (Kylee=KyleePlus+1){
      /*Be nice to know what Kylee is and why you choose to do this instead of simply doing this:
      if(choose(0, 1)){ <YOUR CODE HERE> };*/
      hspeed = 0;
      KyleePlus = 0; //If you're going to assign KyleePlus to 0 AFTER you're done with it, why even have the variable at all? It's not keeping count or doing anything useful, and it was undefined the whole time it was being used.
  }
}
//Missing the last curly brace here
Reply
Thanked by:


Messages In This Thread
RE: Game Maker and 5 Other Discussions thread - by Kelvin - 10-18-2014, 12:34 PM

Forum Jump: