Welcome to the Creatures Wiki! Log in and join the community.

DIVV

From Creatures Wiki
Revision as of 19:51, 7 June 2018 by Pilla (talk | contribs) (rewording first sentence)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

DIVV is a CAOS command used to divide integer and float variables.

Usage[edit]

Syntax: DIVV var (variable) x (int or float)

Divides var by x, so var = var / x.

If both var and x are integers, integer division is used. This takes the floor, so 17 / 9 = 1. If either argument is a float, floating point division is used, and var will be a float after the operation. If you need to perform floating point division with two integer variables, consider ITOF.

Example[edit]

This is equivalent to MODV va00 va01, where va00 and va01 are both integer.

SETV va02 va00
DIVV va02 va01
MULV va02 va01
SUBV va00 va02

See also[edit]