yolkbot 1.3.11 → 1.4.1
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/README.md +7 -7
- package/browser/build/global.js +1 -123
- package/browser/build/module.js +1 -123
- package/dist/api.js +1 -3
- package/dist/bot/GamePlayer.js +1 -3
- package/dist/bot.js +1 -3
- package/dist/comm/CommIn.js +1 -3
- package/dist/comm/CommOut.js +1 -3
- package/dist/comm/index.js +1 -3
- package/dist/constants/CloseCode.js +1 -3
- package/dist/constants/CommCode.js +1 -3
- package/dist/constants/challenges.js +1 -3
- package/dist/constants/guns.js +1 -3
- package/dist/constants/index.js +1 -3
- package/dist/constants/items.js +1 -3
- package/dist/constants/maps.js +1 -3
- package/dist/constants/regions.js +1 -3
- package/dist/dispatches/BanPlayerDispatch.js +1 -3
- package/dist/dispatches/BootPlayerDispatch.js +1 -3
- package/dist/dispatches/ChatDispatch.js +1 -3
- package/dist/dispatches/FireDispatch.js +1 -3
- package/dist/dispatches/GameOptionsDispatch.js +1 -3
- package/dist/dispatches/GoToAmmoDispatch.js +1 -3
- package/dist/dispatches/GoToCoopDispatch.js +1 -3
- package/dist/dispatches/GoToGrenadeDispatch.js +1 -3
- package/dist/dispatches/GoToPlayerDispatch.js +1 -3
- package/dist/dispatches/GoToSpatulaDispatch.js +1 -3
- package/dist/dispatches/LookAtDispatch.js +1 -3
- package/dist/dispatches/LookAtPosDispatch.js +1 -3
- package/dist/dispatches/MeleeDispatch.js +1 -3
- package/dist/dispatches/MovementDispatch.js +1 -3
- package/dist/dispatches/PauseDispatch.js +1 -3
- package/dist/dispatches/ReloadDispatch.js +1 -3
- package/dist/dispatches/ReportPlayerDispatch.js +1 -3
- package/dist/dispatches/ResetGameDispatch.js +1 -3
- package/dist/dispatches/SaveLoadoutDispatch.js +1 -3
- package/dist/dispatches/SpawnDispatch.js +1 -3
- package/dist/dispatches/SwapWeaponDispatch.js +1 -3
- package/dist/dispatches/SwitchTeamDispatch.js +1 -3
- package/dist/dispatches/ThrowGrenadeDispatch.js +1 -3
- package/dist/dispatches/index.js +1 -3
- package/dist/env/fetch.js +10 -12
- package/dist/env/globals.js +1 -3
- package/dist/index.js +2 -10
- package/dist/matchmaker.js +1 -3
- package/dist/pathing/astar.js +1 -3
- package/dist/pathing/binaryheap.js +1 -3
- package/dist/pathing/mapnode.js +1 -3
- package/dist/socket.js +1 -3
- package/dist/types/api.d.ts +1 -1
- package/dist/types/matchmaker.d.ts +1 -1
- package/dist/types/wasm/bytes.d.ts +1 -0
- package/dist/types/wasm/direct.d.ts +3 -0
- package/dist/types/wasm/legacy.d.ts +63 -0
- package/dist/types/wasm/util.d.ts +9 -0
- package/dist/util.js +1 -3
- package/dist/wasm/bytes.js +1 -3
- package/dist/wasm/direct.js +1 -0
- package/dist/wasm/legacy.js +1 -0
- package/dist/wasm/util.js +1 -0
- package/package.json +17 -9
- package/dist/types/wasm/wrapper.d.ts +0 -10
- package/dist/wasm/imports.js +0 -125
- package/dist/wasm/utils.js +0 -3
- package/dist/wasm/wrapper.js +0 -3
package/README.md
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
<div align='center'>
|
|
2
2
|
<picture>
|
|
3
|
-
<source media="(prefers-color-scheme: dark)" srcset="https://
|
|
4
|
-
<source media="(prefers-color-scheme: light)" srcset="https://
|
|
5
|
-
<img src="https://
|
|
3
|
+
<source media="(prefers-color-scheme: dark)" srcset="https://yolkbot.xyz/banners/dark.png">
|
|
4
|
+
<source media="(prefers-color-scheme: light)" srcset="https://yolkbot.xyz/banners/light.png">
|
|
5
|
+
<img src="https://yolkbot.xyz/banners/light.png" width="60%">
|
|
6
6
|
</picture>
|
|
7
7
|
<h3>a simple, fast, multipurpose, & always working shell shockers bot library!</h3>
|
|
8
8
|
<p>
|
|
9
9
|
<a href='https://github.com/yolkorg/yolkbot'>github</a> |
|
|
10
|
-
<a href='https://
|
|
10
|
+
<a href='https://yolkbot.xyz/docs'>documentation</a> |
|
|
11
11
|
<a href='https://npmjs.com/yolkbot'>npm</a> |
|
|
12
12
|
<a href='https://discord.gg/VUVRmmCXzN'>discord</a>
|
|
13
13
|
</p>
|
|
@@ -17,9 +17,9 @@
|
|
|
17
17
|
|
|
18
18
|
<h3 align='center'>getting started</h3>
|
|
19
19
|
<p align='center'>
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
20
|
+
yolkbot is fast, optimized, and easy to use! a bot that joins a game can be made in 3 lines of code...wow!<br>
|
|
21
|
+
to get started with yolkbot, start with the <a href="https://yolkbot.xyz/docs">documentation</a>.<br>
|
|
22
|
+
if you ever get confused, you can join the <a href="https://discord.gg/VUVRmmCXzN">discord server</a>!<br>
|
|
23
23
|
</p>
|
|
24
24
|
|
|
25
25
|
<br>
|