gsc tutorial

  1. CabCon

    Tutorial Basic GSC Coding: While, Break and Wait

    This is the next tutorial about basic gsc coding, I´ll explain at first the "while" command, this command what it does is to repeat something continuously (with a wait beetween repetitions). Its structure is the following: while( something ) { WHAT YOU WANT TO REPEAT wait ( THE FRECUENCY YOU...
  2. CabCon

    Tutorial Basic GSC Coding: For

    This is the next tutorial about basic GSC coding, this time is about the "for" command. Its use is nearly the same as the "while", it repeats something until you stop it and with a frequency you add, its "basic" structure is the following: for( ; ; ) { CODES wait ( TIME ); } You can add...
  3. CabCon

    Tutorial Basic GSC Coding: If, Else and Else If

    Today I am going to explain the "if", "else if" and "else" command. The "if" checks if what its inside it is true or false and if its true, it does what its inside the "if". If what is inside the "if" is false and you have defined a "else", the program will run what you wrote in the else, this 3...
Top