HomeUser Control Panel (unavailable in archive)ForumsTutorialsArt GalleryResourcesMaps

Math

04-05-2005, 01:28 AM#1
Zandose
How can I reverse a number from + to - ?

I've tried this but it didnt work.
Code:
(100 - (100 + 100))
04-05-2005, 06:21 AM#2
Raptor--
number * (-1)

alternatively

(0 - number)