-
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fixxed some formatting and added a site for upcoming cs2-esp
- Loading branch information
Showing
9 changed files
with
506 additions
and
250 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,65 @@ | ||
<!DOCTYPE html> | ||
<html> | ||
<head> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | ||
<title>CS2-ESP</title> | ||
<link rel="stylesheet" type="text/css" href="styles.css"> | ||
</head> | ||
<body> | ||
<div class="topnav"> | ||
<div class="logo"> | ||
<h2>Maxiwee</h2> | ||
</div> | ||
<div class="hamburger-menu"> | ||
<div></div> | ||
<div></div> | ||
<div></div> | ||
</div> | ||
<div class="menu"> | ||
<a href="/">Home</a> | ||
<a href="mailto:[email protected]">Email</a> | ||
<a href="https://twitter.com/maxiwee_">Twitter</a> | ||
<a href="mytweaks/">My iOS Tweaks</a> | ||
<a href="/">Back home</a> | ||
<a href="https://paypal.me/maxiwee69">Donations</a> | ||
</div> | ||
</div> | ||
<div class="about"> | ||
<h2>About this project</h2> | ||
<p> | ||
This is a simple External read only ESP for CS2. | ||
</p> | ||
<p> | ||
I would not recommend to use this on your main account as this is more like a thing for me to learn how to make an ESP and game cheats in general. | ||
</p> | ||
<p> | ||
I will try to keep this page updated as much as possible. But I am a lazy person so don't expect too much. | ||
</p> | ||
<p> | ||
You may ask why won't you release it now? It sounds pretty finished, right? | ||
</p> | ||
<p> | ||
Well, I don't want to update it every time the game gets updated. So I will have to implement a patchfinder to automatically find the offsets for the ESP. This will take some time and I am not sure if I will ever finish it. But I will try my best | ||
</p> | ||
<p> | ||
Now you may ask yourself what is the reason for the countdown? Well I want to motivate myself to finish this project. | ||
</p> | ||
<p> | ||
I am a very lazy person and I need some motivation to finish this project. So I thought why not make a countdown and publish it on my website. This way I will have to finish it before the countdown ends. | ||
</p> | ||
</div> | ||
<div class="cs2-esp"> | ||
<h2>CS2 ESP</h2> | ||
<p> | ||
ESP for cs2 will be published soon... | ||
</p> | ||
</div> | ||
<div id="countdown"> | ||
<p id="days"></p> | ||
<p id="hours"></p> | ||
<p id="minutes"></p> | ||
<p id="seconds"></p> | ||
</div> | ||
<script src="timer.js"></script> | ||
</body> | ||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,91 @@ | ||
/* Body styles */ | ||
body { | ||
margin: 0; | ||
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; | ||
overflow-x: hidden; | ||
flex-direction: column; | ||
background-color: #1a1a2e; /* Softer dark blue */ | ||
color: #e0e0e0; /* Lighter text color */ | ||
padding: 20px; | ||
display: flex; | ||
flex-direction: column; | ||
min-height: 100vh; | ||
} | ||
|
||
html { | ||
height: 100%; | ||
} | ||
|
||
/* Hamburger menu styles */ | ||
.hamburger-menu { | ||
position: fixed; | ||
top: 20px; | ||
right: 20px; | ||
display: flex; | ||
flex-direction: column; | ||
justify-content: space-around; | ||
width: 2rem; | ||
height: 2rem; | ||
background: transparent; | ||
border: none; | ||
cursor: pointer; | ||
padding: 0; | ||
z-index: 10; | ||
} | ||
|
||
.logo { | ||
margin-top: -20px; | ||
} | ||
|
||
.hamburger-menu div { | ||
width: 2rem; | ||
height: 0.25rem; | ||
background: #e0e0e0; /* Lighter color for the hamburger menu */ | ||
border-radius: 10px; | ||
transition: all 0.3s linear; | ||
position: relative; | ||
transform-origin: 1px; | ||
} | ||
|
||
/* Menu styles */ | ||
.menu { | ||
transform: translateX(100%); | ||
position: fixed; | ||
top: 0; | ||
right: 0; | ||
height: 100vh; | ||
width: 200px; | ||
background: #0a0a15; /* Darker blue */ | ||
padding: 1rem; | ||
box-sizing: border-box; | ||
transition: transform 0.3s ease-in-out; | ||
} | ||
|
||
.menu a { | ||
display: block; /* Each link will take up its own line */ | ||
color: #e0e0e0; /* Lighter color for the links */ | ||
text-decoration: none; | ||
font-size: 1.2rem; | ||
transition: color 0.3s linear; | ||
margin-bottom: 1rem; /* Add some space between the links */ | ||
} | ||
|
||
.menu a:hover { | ||
color: #ddd; /* Change this to match your design */ | ||
} | ||
|
||
.menu.active { | ||
transform: translateX(0); | ||
} | ||
|
||
.about { | ||
justify-content: center; | ||
padding-top: 20px; | ||
} | ||
|
||
|
||
#countdown { | ||
display: flex; | ||
justify-content: center; /* Adjust this as needed */ | ||
font-size: 2em; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,44 @@ | ||
// Set the date we're counting down to | ||
var countDownDate = new Date("Feb 3, 2024 23:59:59").getTime(); | ||
|
||
// Update the count down every 1 second | ||
var countdownfunction = setInterval(function() { | ||
|
||
// Get today's date and time | ||
var now = new Date().getTime(); | ||
|
||
// Find the distance between now and the count down date | ||
var distance = countDownDate - now; | ||
|
||
// Time calculations for days, hours, minutes and seconds | ||
var days = Math.floor(distance / (1000 * 60 * 60 * 24)); | ||
var hours = Math.floor((distance % (1000 * 60 * 60 * 24)) / (1000 * 60 * 60)); | ||
var minutes = Math.floor((distance % (1000 * 60 * 60)) / (1000 * 60)); | ||
var seconds = Math.floor((distance % (1000 * 60)) / 1000); | ||
|
||
// Display the result in the elements with id="days", "hours", "minutes", and "seconds" | ||
document.getElementById("days").innerHTML = days + "d "; | ||
document.getElementById("hours").innerHTML = hours + "h "; | ||
document.getElementById("minutes").innerHTML = minutes + "m "; | ||
document.getElementById("seconds").innerHTML = seconds + "s "; | ||
|
||
// If the count down is finished, write some text | ||
if (distance < 0) { | ||
clearInterval(countdownfunction); | ||
document.getElementById("countdown").innerHTML = "RELEASED!"; | ||
} | ||
}, 1000); | ||
|
||
|
||
const hamburgerMenu = document.querySelector('.hamburger-menu'); | ||
const menu = document.querySelector('.menu'); | ||
|
||
hamburgerMenu.addEventListener('click', () => { | ||
menu.classList.toggle('active'); | ||
}); | ||
|
||
document.addEventListener('click', (event) => { | ||
if (!menu.contains(event.target) && !hamburgerMenu.contains(event.target)) { | ||
menu.classList.remove('active'); | ||
} | ||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,19 +1,24 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<html> | ||
<head> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | ||
</script> | ||
<meta charset="UTF-8"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | ||
<meta charset="UTF-8"> | ||
<title>Maxiwee</title> | ||
<link href="style.css" rel="stylesheet" type="text/css"> | ||
<meta name="description" content="This is Maxiwee's personal website showcasing his projects."> | ||
</head> | ||
<meta | ||
name="description" | ||
content="Some of my projects"> | ||
<body> | ||
<body> | ||
<div class="topnav"> | ||
<div class="logo">Maxiwee</div> | ||
<div class="contact"> | ||
<div class="logo"> | ||
<h2>Maxiwee</h2> | ||
</div> | ||
<div class="hamburger-menu"> | ||
<div></div> | ||
<div></div> | ||
<div></div> | ||
</div> | ||
<div class="menu"> | ||
<a href="/">Home</a> | ||
<a href="mailto:[email protected]">Email</a> | ||
<a href="https://twitter.com/maxiwee_">Twitter</a> | ||
<a href="mytweaks/">My iOS Tweaks</a> | ||
|
@@ -26,15 +31,24 @@ <h2>About these projects</h2> | |
<p> | ||
Here are some of my projects that I worked on for some time and that I think are worth sharing. | ||
</p> | ||
<p> | ||
I will try to keep this page updated as much as possible. But I am a lazy person so don't expect too much. | ||
</p> | ||
<p> | ||
If you want to see some of my other projects that I am working on you can check out my GitHub page. | ||
</p> | ||
<p> | ||
The interesting stuff will follow soon so be sure to check back regularly... | ||
</p> | ||
<p> | ||
I will try to keep this page updated as much as possible. But I am a lazy person so don't expect too much. | ||
</p> | ||
<p> | ||
If you want to see some of my other projects that I am working on you can check out my GitHub page. | ||
</p> | ||
<p> | ||
The interesting stuff will follow soon so be sure to check back regularly... | ||
</p> | ||
</div> | ||
<div class="cs2-esp"> | ||
<h2>CS2 ESP</h2> | ||
<p> | ||
ESP for cs2 will be published soon... | ||
</p> | ||
<p> | ||
Check here for updates: <a href="/cs2-esp">CS2 ESP</a> | ||
</p> | ||
</div> | ||
<div class="dll-injector"> | ||
<h2>DLL Injector</h2> | ||
|
@@ -45,24 +59,24 @@ <h2>DLL Injector</h2> | |
It is not the best but it works. | ||
</p> | ||
<p> | ||
You can find the source code and the binaries on it's <a href="https://github.com/maxiwee69/dll-injector".>Github</a> | ||
You can find the source code and the binaries on its <a href="https://github.com/maxiwee69/dll-injector">Github</a> | ||
</p> | ||
</div> | ||
<div class="dll-injection-checker"> | ||
<h2>DLL Injection Checker</h2> | ||
<p> | ||
This is a simple DLL injection checker that I wrote in C++. | ||
</p> | ||
<p> | ||
It is not the best but it works. | ||
</p> | ||
<p> | ||
You can find the source code and the binaries on it's <a href="https://github.com/maxiwee69/injection-checker">Github</a> | ||
</p> | ||
<h2>DLL Injection Checker</h2> | ||
<p> | ||
This is a simple DLL injection checker that I wrote in C++. | ||
</p> | ||
<p> | ||
It is not the best but it works. | ||
</p> | ||
<p> | ||
You can find the source code and the binaries on its <a href="https://github.com/maxiwee69/injection-checker">Github</a> | ||
</p> | ||
</div> | ||
<div> | ||
<h2>More projects coming soon...</h2> | ||
<h2>More projects coming soon...</h2> | ||
</div> | ||
|
||
<script src="timer.js"></script> | ||
</body> | ||
</html> | ||
</html> |
Oops, something went wrong.