Skip to content

Commit 5e1f8d3

Browse files
authored
v1.2 update
adds draggable menu, rank revealer, use spam and flash reducer.
2 parents d69a3c1 + 08856da commit 5e1f8d3

5 files changed

Lines changed: 443 additions & 345 deletions

File tree

.gitignore

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -348,3 +348,9 @@ MigrationBackup/
348348

349349
# Ionide (cross platform F# VS Code tools) working folder
350350
.ionide/
351+
352+
# Output directory
353+
Output/*
354+
355+
# VS stuff
356+
SingleFile/SingleFile/*

README.md

Lines changed: 16 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,12 @@
33
This is a featured CS:GO internal cheat written in less than 1000 lines, and in one C++ file. I encourage you to submit feature suggestions and issues with the cheat!
44

55
## features
6-
* gui
6+
* draggable gui
77

88
![gui image](img/img1.png)
99

10+
thanks es3n1n for making the menu draggable!
11+
1012
* config system
1113
* bhop
1214
* auto pistol
@@ -23,10 +25,21 @@ This is a featured CS:GO internal cheat written in less than 1000 lines, and in
2325
* noscope crosshair
2426
* recoil crosshair
2527
* auto accept
26-
* configurable triggerbot
28+
* triggerbot
2729
* radar
30+
* rankrevealer
31+
* use spam
32+
* flash reducer
2833

2934
## config
30-
a simple config system is included with this cheat. there is currently only one config, however we plan to expand this.. the save & load buttons operate on a config file "Counter-Strike: Global Offensive\singlefile.cfg", where the config is stored as a number.
35+
a simple config system is included with this cheat. there is currently only one config, however we plan to expand this.. the save & load buttons operate on a config file "Counter-Strike: Global Offensive\singlefile.cfg", where the config is stored as a binary representation of the config structure. Unfortunately, a more user editable config system such as JSON is not possible due to size constraints.
3136
## code style
3237
this was programmed with the intention of being a single-file cheat, as well as a target line count of under 1000. i achieved both of these with the initial version i am posting.
38+
39+
## changelog
40+
### v1.0
41+
adds esp, as well as basic misc.
42+
## v1.1
43+
adds triggerbot, radar, and other misc functions
44+
## v1.2
45+
adds draggable menu, rank revealer, use spam and flash reducer

SingleFile/SingleFile.vcxproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='SingleFile|Win32'">
3333
<LinkIncremental>true</LinkIncremental>
3434
<TargetName>SingleFile</TargetName>
35-
<OutDir>$(SolutionDir)\Output</OutDir>
35+
<OutDir>$(SolutionDir)\Output\</OutDir>
3636
</PropertyGroup>
3737
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='SingleFile|Win32'">
3838
<ClCompile>

0 commit comments

Comments
 (0)