Skip to content

Commit

Permalink
fixxed some formatting and added a site for upcoming cs2-esp
Browse files Browse the repository at this point in the history
  • Loading branch information
maxiwee69 committed Jan 24, 2024
1 parent e109b8d commit a51b6a1
Show file tree
Hide file tree
Showing 9 changed files with 506 additions and 250 deletions.
65 changes: 65 additions & 0 deletions cs2-esp/index.html
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>
91 changes: 91 additions & 0 deletions cs2-esp/styles.css
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;
}
44 changes: 44 additions & 0 deletions cs2-esp/timer.js
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');
}
});
8 changes: 3 additions & 5 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,6 @@ <h2>Maxiwee</h2>
<div></div>
<div></div>
</div>

<div class="menu">
<a href="learntotweak/">Learn to create your own iOS tweak</a>
<a href="projects">Projects</a>
Expand All @@ -29,13 +28,13 @@ <h2>Maxiwee</h2>
<div class="about">
<h2>About Me</h2>
<p>
Hi, I am Maxiwee I am some random 16 year old from Berlin,
Hi, I am Maxiwee. I am some random 16 year old from Berlin,
</p>
<p>
that likes to develop some stuff and you know some security research but only as a hobby
</p>
<p>
bc I suck at both, but if you need someone that has some Swift/Objective-C knowledge and some basic knowledge of C and C++
because I suck at both, but if you need someone that has some Swift/Objective-C knowledge and some basic knowledge of C and C++
</p>
<p>
you can contact me via Twitter or Email.
Expand All @@ -44,5 +43,4 @@ <h2>About Me</h2>
<script src="script.js"></script>
<script defer src="https://static.cloudflareinsights.com/beacon.min.js/v84a3a4012de94ce1a686ba8c167c359c1696973893317" integrity="sha512-euoFGowhlaLqXsPWQ48qSkBSCFs3DPRyiwVu3FjR96cMPx+Fr+gpWRhIafcHwqwCqWS42RZhIudOvEI+Ckf6MA==" data-cf-beacon='{"rayId":"849bb3882b9562d4","r":1,"version":"2024.1.0","token":"6841afb174354017a288ea06aef0eee8"}' crossorigin="anonymous"></script>
</body>
</html>

</html>
80 changes: 47 additions & 33 deletions projects/index.html
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>
Expand All @@ -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>
Expand All @@ -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>
Loading

0 comments on commit a51b6a1

Please sign in to comment.