sqr

Multiplies a number by itself and so returns the square of that number. EG: sqr(5) would return 25 since 5*5=25.

 

Syntax:

sqr(val);

ArgumentTypeDescription
valRealThe number to square.

 

Returns:

Real

 

Example:

score += sqr(dmg);

The above code will add on the square of the variable "dmg" to the score.