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
  • CheatVar FindGlobalVar(string group_name, string name);
  • CheatVar FindTeamVar(string group_name, string name, int team);
  • CheatVar FindWeaponVar(string group_name, string name);
  1. Methods

Config

PreviousConVarNextGlobals

Last updated 5 years ago

Config -- Cheat variable storage. 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 . Thats how to get group_name and name.

CheatVar FindGlobalVar(string group_name, string name);

Global settings used by cheat.

CheatVar FindTeamVar(string group_name, string name, int team);

Settings used by cheat for specified team. Team: 0 -Enemies, 1 - Teammates, 2 - Local Player

CheatVar FindWeaponVar(string group_name, string name);

Settings used by cheat with active weapon.

here