Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
TheLazySquid
GitHub Repository: TheLazySquid/GimkitCheat
Path: blob/main/src/main.ts
8160 views
1
import createHud from "./hud/core";
2
import socketManager from './network/socketManager'
3
import { exposeValues } from "./exposeValues";
4
5
// confirm that no amplitude.com script exists
6
let gameLoaded = document.querySelector('script[src*="amplitude.com"]') !== null;
7
8
if(gameLoaded) {
9
alert("This script can only be run before you join the game. Please reload the page and try again.")
10
} else {
11
exposeValues();
12
13
socketManager.setup();
14
createHud();
15
}
16