-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathflood basic.js
72 lines (63 loc) · 2.67 KB
/
flood basic.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
const apiInfo = {
infoFromCode:'https://www.gimkit.com/api/matchmaker/find-info-from-code',
matchMaker:'https://www.gimkit.com/api/matchmaker/join'
};
const findRoom = async roomCode => {
const r = await fetch(apiInfo.infoFromCode,{
method: 'post',
headers: {
'Content-Type': 'application/json',
},
body:JSON.stringify({
"code": String(roomCode),
})
});
return r.json();
};
const getIntent = async (n, c) => {
const roomId = await findRoom(c);
const r = await fetch(apiInfo.matchMaker,{
method: 'post',
headers: {
'Content-Type': 'application/json',
},
body:JSON.stringify({
"roomId": roomId.roomId,
"name": n,
"clientType": `Gimkit Web Client V3.1`
})
});
return r.json();
}
const join = async(c, p) => {
const r = await getIntent(p, c)
const server = `${r.serverUrl}/matchmake/joinById/${r.roomId}`
const room = await fetch(server,{
method: 'post',
headers: {
'Content-Type': 'application/json',
},
body:JSON.stringify({
"intentId": r.intentId
})
})
const roomData = await room.json();
//socket
const httpToWss = r.serverUrl.replace('https', 'wss');
const processId = roomData.room.processId;
const roomId = roomData.room.roomId;
const sessionId = roomData.sessionId;
const socketUri = `${httpToWss}/${processId}/${roomId}?sessionId=${sessionId}`;
const socket = new WebSocket(socketUri);
socket.addEventListener('open', () => {
return true;
});
};
(async G =>{
const n = prompt('Names');
const a = prompt('Amount');
const p = prompt('Pin');
for(i=0;i<a;i++){
await join(p, n)
};
})()