Cvarlist Savage 1
From Newerth: Savage Wiki
Discription
Variables are often referred to as CVars (or Console Variables). They are pieces of data temporarily stored in memory and are essential to any form of scripting or programming.
Variables can be any of these types:
- Bool (Boolean) -- A simple true or false.
- Float (Floating Point) -- An Arbitrary real number.
- Int (Integer) -- A highest number.
- String -- A series of characters.
They are usually quite interchangeable and can be compared against each other without problems. Care may need to be taken so that you don't get your variable types mixed up though.


