Frictional Games Forum (read-only)
Some scripting sign questions - Printable Version

+- Frictional Games Forum (read-only) (https://www.frictionalgames.com/forum)
+-- Forum: Amnesia: The Dark Descent (https://www.frictionalgames.com/forum/forum-6.html)
+--- Forum: Custom Stories, TCs & Mods - Development (https://www.frictionalgames.com/forum/forum-38.html)
+--- Thread: Some scripting sign questions (/thread-9970.html)



Some scripting sign questions - Acies - 08-25-2011

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


RE: Some scripting sign questions - Khyrpa - 08-25-2011

I think you can find those somewhere here...
http://www.angelcode.com/angelscript/sdk/docs/manual/doc_reserved_keywords.html

It doesn't really tell what those mean though. But that page should have the answers, somewhere.


RE: Some scripting sign questions - Kyle - 08-25-2011

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)


RE: Some scripting sign questions - Acies - 08-25-2011

(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.