Int

From Game Editor

Revision as of 18:41, 25 November 2009 by Asmodeus (Talk | contribs)
(diff) ← Older revision | Current revision (diff) | Newer revision → (diff)
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"