Page 1 of 1

Script Functions

PostPosted: Sat Nov 15, 2008 2:56 am
by BlarghNRawr
i know how to use:

=
==
>
<
&&



...But what else is there?
like:

lessthan or equal to
greaterthan or equal to
not equal to

things like this... i just relearned some of the symbols for these in math class, but there is none on the keyboard, so...
How???

just curious, but could probably help me in future

Re: Script Functions

PostPosted: Sat Nov 15, 2008 3:53 am
by DilloDude
Code: Select all
<=    //less than or equal to
>=    //greater than or equal to
!=    //not equall to (! means 'not')
||    //or

Re: Script Functions

PostPosted: Sat Nov 15, 2008 7:32 pm
by BlarghNRawr
hey thnx thats what i needed