Set

From Hercules Wiki
Revision as of 19:41, 13 January 2013 by Nameless2you (Talk | contribs)

(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to: navigation, search

As of r15982 the usage of set has become obsolete and is no longer a requirement.

Syntax

  • set <variable>,<expression>;
  • set(<variable>,<expression>)
  • <variable> = <expression>;

Description

This command will set a variable to the value that the expression results in.

This is the most basic script command and is used a lot whenever you try to do anything more advanced than just printing text into a message box.

Returns the variable reference (since trunk r12870).

Examples

set .@x,100;  // will make .@x equal 100.

set .@x,1+5/8+9;  // will compute 1+5/8+9 (which is, surprisingly, 10 - remember, all numbers are integer in this language) and make .@x equal it.

or

.@x = 100;  // will make .@x equal 100.

.@x = 1+5/8+9;  // will compute 1+5/8+9 (which is, surprisingly, 10 - remember, all numbers are integer in this language) and make .@x equal it.

For more information read: r15982: Script Engine Update