Int

From Game Editor

Jump to: navigation, search

With int you can create a variable for just that script.

int stands for integer and denotes a whole number or non-decimal if you will.

SYNTAX:

int var1, var2, var3;

var1 = 1;
var2 = 1;

if(monsterkilled == 1)

{
  var3 = 1;
}
Retrieved from "http://game-editor.com/Int"