23.03.2010, 17:36
Quote:
|
Originally Posted by laser50
can i do Only = or should i rwally do >=?
|
variable = 1 (means that its now assigned to the number 1)
== compares it
variable == 1 (checks to see if the variable is the same as 1)
>= greater than or equal to
variable >= 1 (my recommendation) (checks to see if the variable is 1 or over)

