Frictional Games Forum (read-only)

Full Version: Some scripting sign questions
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hi!

I have skimmed through the wiki and I couldn't find expressions for how to write:

Greater than:
Lesser than:
Greater than or equal to:
Lesser than or equal to:

I know that:
Equal to: ==
Not equal to: !=

Always appreciate any help given Smile
I think you can find those somewhere here...
http://www.angelcode.com/angelscript/sdk...words.html

It doesn't really tell what those mean though. But that page should have the answers, somewhere.
Since it doesn't really label it, then I'll have to! Tongue

Greater than: >
Lesser than: <
Greater than or equal to: >=
Lesser than or equal to: <=

And to add to this...

And = &&
Or = || (The button below the backspace and above the enter keys + shift)
(08-25-2011, 01:12 PM)Kyle Wrote: [ -> ]Since it doesn't really label it, then I'll have to! Tongue

Greater than: >
Lesser than: <
Greater than or equal to: >=
Lesser than or equal to: <=

And to add to this...

And = &&
Or = || (The button below the backspace and above the enter keys + shift)

Thank you.