Neverlose
  • List of all methods
  • Methods
    • CGlobalVarsBase
    • CUserCmd
    • C_BaseEntity
    • C_BasePlayer
    • Cheat
    • CheatVar
    • CheatVars
    • Color
    • ConVar
    • Config
    • Globals
    • ICvar
    • IEngineClient
    • IEntityList
    • IGameEvent
    • IMaterial
    • IMaterialSystem
    • INetChannelInfo
    • IRender
    • Panorama
    • QAngle
    • Utils
    • Vector
    • Vector2
    • trace_t
Powered by GitBook
On this page
  • bool GetBool();
  • float GetFloat();
  • int GetInt();
  • void SetBool(bool value);
  • void SetInt(int value);
  • void SetFloat( float value);
  1. Methods

CheatVar

PreviousCheatNextCheatVars

Last updated 5 years ago

CheatVar -- Cheat variable. Basically, allows you to get variables used in neverlose.cc menu. Designed to use the same API as Valve's ConVar.

List of all cheat variables . Can be found by API.

bool GetBool();

Return CheatVar value as an bool. Used In switches (checkboxes)

float GetFloat();

Return CheatVar value as an float. Used in Sliders with floating point.

int GetInt();

Return CheatVar value as an int. Used in Sliders with integer numbers.

void SetBool(bool value);

Set CheatVar value as an bool. Used In switches (checkboxes)

void SetInt(int value);

Set CheatVar value as an int. Used in Sliders with integer numbers.

void SetFloat( float value);

Set CheatVar value as an float. Used in Sliders with floating point.

here
Config