All Projects → aixxe → Chameleon

aixxe / Chameleon

Licence: GPL-2.0 license
Basic skin & knife changer for Counter-Strike: Global Offensive

Programming Languages

C++
36643 projects - #6 most used programming language
objective c
16641 projects - #2 most used programming language
c
50402 projects - #5 most used programming language

Projects that are alternatives of or similar to Chameleon

Osiris
Free open-source game cheat for Counter-Strike: Global Offensive, written in modern C++. GUI powered by Dear ImGui.
Stars: ✭ 1,851 (+3091.38%)
Mutual labels:  internal, csgo
Public
The game is about a group of "terrorists" who have traitors among them, out to kill everyone who's not a traitor.
Stars: ✭ 94 (+62.07%)
Mutual labels:  csgo
openapi-filter
Filter internal paths, operations, parameters, schemas etc from OpenAPI/Swagger/AsyncAPI definitions
Stars: ✭ 112 (+93.1%)
Mutual labels:  internal
SteamBuff Market-WalletBalance
饰品筛选倒余额 比例自定义 已适配buff c5game igxe
Stars: ✭ 66 (+13.79%)
Mutual labels:  csgo
valve-matchmaking-ip-ranges
Lists of locations & IP addresses of Valve servers
Stars: ✭ 69 (+18.97%)
Mutual labels:  csgo
Python-CSGO-Cheat
All-in-one, undetected CSGO cheat written in Python.
Stars: ✭ 175 (+201.72%)
Mutual labels:  csgo
csgo-league-web
League web panel
Stars: ✭ 42 (-27.59%)
Mutual labels:  csgo
SourceRenderer
A tiny 3D engine that loads and renders Source engine maps - Also known as dreieck.exe
Stars: ✭ 32 (-44.83%)
Mutual labels:  csgo
software-project-blueprint
Project blueprint for Fintech Open Source Foundation hosted projects.
Stars: ✭ 21 (-63.79%)
Mutual labels:  internal
ButOSX
CSGO Cheat Base for MacOSX. Written in C++ & Objective C. Menu Powered by ImGui. Includes Apple TouchBar API.
Stars: ✭ 58 (+0%)
Mutual labels:  csgo
CSGO-Offset-Scanner
Java Based Cross-Platform CSGO Offset and Netvar Scanner
Stars: ✭ 28 (-51.72%)
Mutual labels:  csgo
CallAdmin
CallAdmin is a multilingual sourcemod plugin which provides in-game report functionality
Stars: ✭ 52 (-10.34%)
Mutual labels:  csgo
InternalAccessibleCompilerForUnity
Compile a c# project to a internal accessible dll (for Unity)
Stars: ✭ 20 (-65.52%)
Mutual labels:  internal
le chiffre
CS:GO external cheat.
Stars: ✭ 227 (+291.38%)
Mutual labels:  csgo
csgo-mm-server-picker
🌐 The new server picker for CS:GO matchmaking - Available on Windows & Linux
Stars: ✭ 150 (+158.62%)
Mutual labels:  csgo
CSGOItemDB
An API to retrieve accurate CS:GO prices for high- and low-tier items
Stars: ✭ 35 (-39.66%)
Mutual labels:  csgo
rush-b
Find your ideal gun to Rush B 🏃
Stars: ✭ 17 (-70.69%)
Mutual labels:  csgo
steam-hour-boost
🔧 Script for idling, boosting playtime in hours, for chosen game without using computer resources. CSGO test successfully.
Stars: ✭ 21 (-63.79%)
Mutual labels:  csgo
hexen-dll-injector
HEX-EN DLL Injector
Stars: ✭ 20 (-65.52%)
Mutual labels:  csgo
steam community market
Get item prices and volumes from the Steam Community Market using Python 3
Stars: ✭ 24 (-58.62%)
Mutual labels:  csgo

Chameleon

Description

Chameleon is a bare minimum internal skin & knife changer for Counter-Strike: Global Offensive.

Only the absolute essential classes and methods are implemented.

Usage

  • Clone or download from the archive link, extract and open in Visual Studio.
  • Define your skin override information and viewmodel replacement indexes in Skins.h.
// Example to replace the default CT knife with a ★ Karambit | Fade.
inline void SetSkinConfig() {
	g_SkinChangerCfg[WEAPON_KNIFE].iItemDefinitionIndex = WEAPON_KNIFE_KARAMBIT;
	g_SkinChangerCfg[WEAPON_KNIFE].nFallbackPaintKit = 38;
	g_SkinChangerCfg[WEAPON_KNIFE].iEntityQuality = 3;
}
 
inline void SetModelConfig() {
	int nOriginalKnifeCT = g_ModelInfo->GetModelIndex("models/weapons/v_knife_default_ct.mdl");
	g_ViewModelCfg[nOriginalKnifeCT] = "models/weapons/v_knife_karam.mdl";
}

inline void SetKillIconCfg() {
	// Define replacement kill icons. (these only apply to you)
	g_KillIconCfg["knife_default_ct"] = "knife_karambit";
	g_KillIconCfg["knife_t"] = "knife_m9_bayonet";
}
  • Compile and inject into csgo.exe using your preferred injector.

Credits

Special thanks to:

  • @AlvyPiper for teaching me how to do everything without the Source SDK.
  • The UnKnoWnCheaTs CS:GO community for their research on the subject.
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].