yolkbot 1.0.16 → 1.0.18
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/browser/build/global.js +123 -1
- package/browser/build/module.js +123 -1
- package/dist/bot/GamePlayer.js +1 -1
- package/dist/bot.js +1 -1
- package/dist/constants/changelog.js +1 -1
- package/dist/constants/guns.js +1 -1
- package/dist/constants/housePromo.js +1 -1
- package/dist/constants/index.js +1 -1
- package/dist/constants/items.js +1 -1
- package/dist/constants/language.js +47 -1
- package/dist/constants/maps.js +1 -1
- package/dist/constants/shellNews.js +1 -1
- package/dist/constants/shellYoutube.js +1 -1
- package/dist/constants/shopItems.js +1 -1
- package/dist/constants/sounds.js +1 -1
- package/dist/dispatches/GameOptionsDispatch.js +1 -1
- package/dist/dispatches/MeleeDispatch.js +1 -1
- package/dist/dispatches/MovementDispatch.js +1 -1
- package/dist/dispatches/SaveLoadoutDispatch.js +1 -1
- package/dist/matchmaker.js +1 -1
- package/dist/types/bot.d.ts +25 -16
- package/dist/types/constants/guns.d.ts +0 -4
- package/dist/types/constants/index.d.ts +59 -39
- package/dist/types/matchmaker.d.ts +2 -2
- package/dist/wasm/bytes.js +1 -1
- package/dist/wasm/imports.js +123 -1
- package/dist/wasm/utils.js +1 -1
- package/dist/wasm/wrapper.js +1 -1
- package/package.json +1 -1
|
@@ -2,41 +2,49 @@ import { AUG, CSG1, DozenGauge, Eggk47, M24, RPEGG, SMG } from './guns';
|
|
|
2
2
|
|
|
3
3
|
export { findItemById } from './findItemById';
|
|
4
4
|
|
|
5
|
-
export declare const
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
5
|
+
export declare const ChatFlag: {
|
|
6
|
+
None: number;
|
|
7
|
+
Pinned: number;
|
|
8
|
+
Team: number;
|
|
9
|
+
Mod: number;
|
|
10
|
+
Server: number;
|
|
9
11
|
}
|
|
10
12
|
|
|
11
13
|
export declare const ChiknWinnerDailyLimit: number;
|
|
12
14
|
|
|
13
|
-
export declare const
|
|
14
|
-
|
|
15
|
-
|
|
15
|
+
export declare const CollectType: {
|
|
16
|
+
Ammo: number;
|
|
17
|
+
Grenade: number;
|
|
16
18
|
};
|
|
17
19
|
|
|
18
20
|
export declare const CoopStates: {
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
21
|
+
Start: number;
|
|
22
|
+
Score: number;
|
|
23
|
+
Win: number;
|
|
24
|
+
Capturing: number;
|
|
25
|
+
Contested: number;
|
|
26
|
+
Takeover: number;
|
|
27
|
+
Abandoned: number;
|
|
28
|
+
Unclaimed: number;
|
|
27
29
|
};
|
|
28
30
|
|
|
29
31
|
export declare const FirebaseKey: string;
|
|
30
32
|
|
|
31
|
-
export declare const SyncRate: number;
|
|
32
33
|
export declare const FramesBetweenSyncs: number;
|
|
33
34
|
|
|
34
|
-
export declare const
|
|
35
|
-
|
|
36
|
-
|
|
35
|
+
export declare const GameAction: {
|
|
36
|
+
Reset: number;
|
|
37
|
+
Pause: number;
|
|
38
|
+
};
|
|
39
|
+
|
|
40
|
+
export declare const GameMode: {
|
|
41
|
+
FFA: number;
|
|
42
|
+
Team: number;
|
|
43
|
+
Spatula: number;
|
|
44
|
+
KOTC: number;
|
|
37
45
|
};
|
|
38
46
|
|
|
39
|
-
export declare const
|
|
47
|
+
export declare const RawGameModes: {
|
|
40
48
|
ffa: number;
|
|
41
49
|
team: number;
|
|
42
50
|
spatula: number;
|
|
@@ -44,16 +52,18 @@ export declare const GameModes: {
|
|
|
44
52
|
};
|
|
45
53
|
|
|
46
54
|
export declare const GameOptionFlags: {
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
55
|
+
Locked: number;
|
|
56
|
+
NoTeamChange: number;
|
|
57
|
+
NoTeamShuffle: number;
|
|
50
58
|
};
|
|
51
59
|
|
|
60
|
+
export declare const GunEquipTime: number;
|
|
61
|
+
|
|
52
62
|
export declare const GunList: Array<typeof Eggk47 | typeof DozenGauge | typeof CSG1 | typeof RPEGG | typeof SMG | typeof M24 | typeof AUG>;
|
|
53
63
|
|
|
54
64
|
export declare const IsBrowser: boolean;
|
|
55
65
|
|
|
56
|
-
export declare const
|
|
66
|
+
export declare const ItemType: {
|
|
57
67
|
Hat: number;
|
|
58
68
|
Stamp: number;
|
|
59
69
|
Primary: number;
|
|
@@ -62,15 +72,15 @@ export declare const ItemTypes: {
|
|
|
62
72
|
Melee: number;
|
|
63
73
|
};
|
|
64
74
|
|
|
65
|
-
export declare const
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
75
|
+
export declare const Movement: {
|
|
76
|
+
Forward: number;
|
|
77
|
+
Backward: number;
|
|
78
|
+
Left: number;
|
|
79
|
+
Right: number;
|
|
80
|
+
Jump: number;
|
|
81
|
+
Fire: number;
|
|
82
|
+
Melee: number;
|
|
83
|
+
Scope: number;
|
|
74
84
|
};
|
|
75
85
|
|
|
76
86
|
export declare const PlayTypes: {
|
|
@@ -81,7 +91,7 @@ export declare const PlayTypes: {
|
|
|
81
91
|
|
|
82
92
|
export declare const ProxiesEnabled: boolean;
|
|
83
93
|
|
|
84
|
-
export declare const
|
|
94
|
+
export declare const ShellStreak: {
|
|
85
95
|
HardBoiled: number;
|
|
86
96
|
EggBreaker: number;
|
|
87
97
|
Restock: number;
|
|
@@ -90,7 +100,17 @@ export declare const ShellStreaks: {
|
|
|
90
100
|
MiniEgg: number;
|
|
91
101
|
};
|
|
92
102
|
|
|
93
|
-
export declare const
|
|
103
|
+
export declare const SocialMedia: {
|
|
104
|
+
Facebook: number;
|
|
105
|
+
Instagram: number;
|
|
106
|
+
Tiktok: number;
|
|
107
|
+
Discord: number;
|
|
108
|
+
Youtube: number;
|
|
109
|
+
Twitter: number;
|
|
110
|
+
Twitch: number;
|
|
111
|
+
};
|
|
112
|
+
|
|
113
|
+
export declare const ReverseSocialMedia: {
|
|
94
114
|
0: string;
|
|
95
115
|
1: string;
|
|
96
116
|
2: string;
|
|
@@ -100,7 +120,7 @@ export declare const SocialMedias: {
|
|
|
100
120
|
6: string;
|
|
101
121
|
};
|
|
102
122
|
|
|
103
|
-
export declare const
|
|
123
|
+
export declare const SocialReward: {
|
|
104
124
|
Discord: string;
|
|
105
125
|
Tiktok: string;
|
|
106
126
|
Instagram: string;
|
|
@@ -112,9 +132,9 @@ export declare const SocialRewards: {
|
|
|
112
132
|
|
|
113
133
|
export declare const StateBufferSize: number;
|
|
114
134
|
|
|
115
|
-
export declare const
|
|
116
|
-
|
|
117
|
-
|
|
135
|
+
export declare const Team: {
|
|
136
|
+
Blue: number;
|
|
137
|
+
Red: number;
|
|
118
138
|
};
|
|
119
139
|
|
|
120
140
|
export declare const URLRewards: string[];
|
|
@@ -13,7 +13,7 @@ interface MatchmakerParams {
|
|
|
13
13
|
|
|
14
14
|
export interface Region {
|
|
15
15
|
id: string;
|
|
16
|
-
|
|
16
|
+
sub: string;
|
|
17
17
|
};
|
|
18
18
|
|
|
19
19
|
export interface FindGameParams {
|
|
@@ -69,4 +69,4 @@ export declare class Matchmaker {
|
|
|
69
69
|
off(event: string, callback: Function): void;
|
|
70
70
|
}
|
|
71
71
|
|
|
72
|
-
export default Matchmaker;
|
|
72
|
+
export default Matchmaker;
|