Difference between revisions of "Abs"

From the Oblivion ConstructionSet Wiki
Jump to navigation Jump to search
imported>Haama
(Category links)
imported>DragoonWraith
(Just isn't the right place for this.)
 
(2 intermediate revisions by one other user not shown)
(No difference)

Latest revision as of 21:19, 25 April 2010

A command for Oblivion Script Extender

Syntax:

abs [float]

Returns the absolute value of a number, i.e. it's distance from zero, i.e. always positive

Example[edit | edit source]

set n to abs -54

n = 54

set n to abs 54

n = 54