h1z1-server 0.19.3-3 → 0.19.3-4

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.
Files changed (166) hide show
  1. package/CODE_OF_CONDUCT.md +76 -76
  2. package/CONTRIBUTING.md +19 -19
  3. package/data/npcs.json +1862 -1862
  4. package/package.json +1 -1
  5. package/src/clients/gatewayclient.js +107 -107
  6. package/src/clients/loginclient.ts +228 -228
  7. package/src/clients/soeclient.js +321 -321
  8. package/src/clients/zoneclient.ts +172 -172
  9. package/src/packets/ClientProtocol/ClientProtocol_1080/abilities.ts +114 -114
  10. package/src/packets/ClientProtocol/ClientProtocol_1080/ability.ts +38 -38
  11. package/src/packets/ClientProtocol/ClientProtocol_1080/achievement.ts +62 -62
  12. package/src/packets/ClientProtocol/ClientProtocol_1080/acquaintance.ts +14 -14
  13. package/src/packets/ClientProtocol/ClientProtocol_1080/activityManager.ts +17 -17
  14. package/src/packets/ClientProtocol/ClientProtocol_1080/activityService.ts +18 -18
  15. package/src/packets/ClientProtocol/ClientProtocol_1080/base.ts +3363 -3363
  16. package/src/packets/ClientProtocol/ClientProtocol_1080/character.ts +293 -293
  17. package/src/packets/ClientProtocol/ClientProtocol_1080/chat.ts +57 -57
  18. package/src/packets/ClientProtocol/ClientProtocol_1080/clientUpdate.ts +328 -328
  19. package/src/packets/ClientProtocol/ClientProtocol_1080/coinStore.ts +100 -100
  20. package/src/packets/ClientProtocol/ClientProtocol_1080/collision.ts +31 -31
  21. package/src/packets/ClientProtocol/ClientProtocol_1080/combat.ts +25 -25
  22. package/src/packets/ClientProtocol/ClientProtocol_1080/command.ts +636 -636
  23. package/src/packets/ClientProtocol/ClientProtocol_1080/construction.ts +56 -56
  24. package/src/packets/ClientProtocol/ClientProtocol_1080/container.ts +83 -83
  25. package/src/packets/ClientProtocol/ClientProtocol_1080/currency.ts +26 -26
  26. package/src/packets/ClientProtocol/ClientProtocol_1080/definitionFilter.ts +73 -73
  27. package/src/packets/ClientProtocol/ClientProtocol_1080/deployable.ts +19 -19
  28. package/src/packets/ClientProtocol/ClientProtocol_1080/effects.ts +176 -176
  29. package/src/packets/ClientProtocol/ClientProtocol_1080/equipment.ts +111 -111
  30. package/src/packets/ClientProtocol/ClientProtocol_1080/experience.ts +85 -85
  31. package/src/packets/ClientProtocol/ClientProtocol_1080/facility.ts +171 -171
  32. package/src/packets/ClientProtocol/ClientProtocol_1080/friend.ts +100 -100
  33. package/src/packets/ClientProtocol/ClientProtocol_1080/guild.ts +31 -31
  34. package/src/packets/ClientProtocol/ClientProtocol_1080/h1z1packets.ts +126 -126
  35. package/src/packets/ClientProtocol/ClientProtocol_1080/implant.ts +20 -20
  36. package/src/packets/ClientProtocol/ClientProtocol_1080/inGamePurchase.ts +362 -362
  37. package/src/packets/ClientProtocol/ClientProtocol_1080/items.ts +38 -38
  38. package/src/packets/ClientProtocol/ClientProtocol_1080/loadout.ts +88 -88
  39. package/src/packets/ClientProtocol/ClientProtocol_1080/lobby.ts +24 -24
  40. package/src/packets/ClientProtocol/ClientProtocol_1080/lobbyGameDefinition.ts +35 -35
  41. package/src/packets/ClientProtocol/ClientProtocol_1080/loot.ts +14 -14
  42. package/src/packets/ClientProtocol/ClientProtocol_1080/mapRegion.ts +110 -110
  43. package/src/packets/ClientProtocol/ClientProtocol_1080/metaGameEvent.ts +23 -23
  44. package/src/packets/ClientProtocol/ClientProtocol_1080/missions.ts +33 -33
  45. package/src/packets/ClientProtocol/ClientProtocol_1080/mount.ts +86 -86
  46. package/src/packets/ClientProtocol/ClientProtocol_1080/operation.ts +25 -25
  47. package/src/packets/ClientProtocol/ClientProtocol_1080/profileStats.ts +33 -33
  48. package/src/packets/ClientProtocol/ClientProtocol_1080/quickChat.ts +49 -49
  49. package/src/packets/ClientProtocol/ClientProtocol_1080/ragdoll.ts +14 -14
  50. package/src/packets/ClientProtocol/ClientProtocol_1080/recipe.ts +35 -35
  51. package/src/packets/ClientProtocol/ClientProtocol_1080/referenceData.ts +113 -113
  52. package/src/packets/ClientProtocol/ClientProtocol_1080/rewardBuffs.ts +20 -20
  53. package/src/packets/ClientProtocol/ClientProtocol_1080/shared.ts +1779 -1779
  54. package/src/packets/ClientProtocol/ClientProtocol_1080/skill.ts +37 -37
  55. package/src/packets/ClientProtocol/ClientProtocol_1080/staticFacilityInfo.ts +41 -41
  56. package/src/packets/ClientProtocol/ClientProtocol_1080/target.ts +14 -14
  57. package/src/packets/ClientProtocol/ClientProtocol_1080/ui.ts +37 -37
  58. package/src/packets/ClientProtocol/ClientProtocol_1080/vehicle.ts +380 -380
  59. package/src/packets/ClientProtocol/ClientProtocol_1080/voice.ts +41 -41
  60. package/src/packets/ClientProtocol/ClientProtocol_1080/wallOfData.ts +43 -43
  61. package/src/packets/ClientProtocol/ClientProtocol_1080/weapon.ts +274 -274
  62. package/src/packets/ClientProtocol/ClientProtocol_1080/wordFilter.ts +22 -22
  63. package/src/packets/ClientProtocol/ClientProtocol_1080/zoneSetting.ts +35 -35
  64. package/src/packets/ClientProtocol/ClientProtocol_860/abilities.ts +207 -207
  65. package/src/packets/ClientProtocol/ClientProtocol_860/ability.ts +361 -361
  66. package/src/packets/ClientProtocol/ClientProtocol_860/achievement.ts +62 -62
  67. package/src/packets/ClientProtocol/ClientProtocol_860/acquaintance.ts +45 -45
  68. package/src/packets/ClientProtocol/ClientProtocol_860/activityManager.ts +17 -17
  69. package/src/packets/ClientProtocol/ClientProtocol_860/activityService.ts +18 -18
  70. package/src/packets/ClientProtocol/ClientProtocol_860/base.ts +2455 -2455
  71. package/src/packets/ClientProtocol/ClientProtocol_860/chat.ts +63 -63
  72. package/src/packets/ClientProtocol/ClientProtocol_860/clientPcData.ts +30 -30
  73. package/src/packets/ClientProtocol/ClientProtocol_860/coinStore.ts +100 -100
  74. package/src/packets/ClientProtocol/ClientProtocol_860/collision.ts +31 -31
  75. package/src/packets/ClientProtocol/ClientProtocol_860/combat.ts +173 -173
  76. package/src/packets/ClientProtocol/ClientProtocol_860/command.ts +645 -645
  77. package/src/packets/ClientProtocol/ClientProtocol_860/construction.ts +42 -42
  78. package/src/packets/ClientProtocol/ClientProtocol_860/container.ts +30 -30
  79. package/src/packets/ClientProtocol/ClientProtocol_860/currency.ts +26 -26
  80. package/src/packets/ClientProtocol/ClientProtocol_860/definitionFilter.ts +73 -73
  81. package/src/packets/ClientProtocol/ClientProtocol_860/deployable.ts +19 -19
  82. package/src/packets/ClientProtocol/ClientProtocol_860/dto.ts +73 -73
  83. package/src/packets/ClientProtocol/ClientProtocol_860/effects.ts +176 -176
  84. package/src/packets/ClientProtocol/ClientProtocol_860/equipment.ts +112 -112
  85. package/src/packets/ClientProtocol/ClientProtocol_860/experience.ts +85 -85
  86. package/src/packets/ClientProtocol/ClientProtocol_860/facility.ts +185 -185
  87. package/src/packets/ClientProtocol/ClientProtocol_860/friend.ts +100 -100
  88. package/src/packets/ClientProtocol/ClientProtocol_860/guild.ts +31 -31
  89. package/src/packets/ClientProtocol/ClientProtocol_860/h1z1packets.ts +134 -134
  90. package/src/packets/ClientProtocol/ClientProtocol_860/implant.ts +20 -20
  91. package/src/packets/ClientProtocol/ClientProtocol_860/inGamePurchase.ts +362 -362
  92. package/src/packets/ClientProtocol/ClientProtocol_860/items.ts +38 -38
  93. package/src/packets/ClientProtocol/ClientProtocol_860/loadout.ts +110 -110
  94. package/src/packets/ClientProtocol/ClientProtocol_860/lobby.ts +24 -24
  95. package/src/packets/ClientProtocol/ClientProtocol_860/lobbyGameDefinition.ts +35 -35
  96. package/src/packets/ClientProtocol/ClientProtocol_860/loot.ts +34 -34
  97. package/src/packets/ClientProtocol/ClientProtocol_860/mapRegion.ts +110 -110
  98. package/src/packets/ClientProtocol/ClientProtocol_860/metaGameEvent.ts +23 -23
  99. package/src/packets/ClientProtocol/ClientProtocol_860/missions.ts +33 -33
  100. package/src/packets/ClientProtocol/ClientProtocol_860/mount.ts +121 -121
  101. package/src/packets/ClientProtocol/ClientProtocol_860/operation.ts +39 -39
  102. package/src/packets/ClientProtocol/ClientProtocol_860/playerUpdate.ts +1463 -1463
  103. package/src/packets/ClientProtocol/ClientProtocol_860/profileStats.ts +154 -154
  104. package/src/packets/ClientProtocol/ClientProtocol_860/quickChat.ts +49 -49
  105. package/src/packets/ClientProtocol/ClientProtocol_860/ragdoll.ts +146 -146
  106. package/src/packets/ClientProtocol/ClientProtocol_860/recipe.ts +96 -96
  107. package/src/packets/ClientProtocol/ClientProtocol_860/referenceData.ts +56 -56
  108. package/src/packets/ClientProtocol/ClientProtocol_860/rewardBuffs.ts +20 -20
  109. package/src/packets/ClientProtocol/ClientProtocol_860/shared.ts +1954 -1954
  110. package/src/packets/ClientProtocol/ClientProtocol_860/skill.ts +89 -89
  111. package/src/packets/ClientProtocol/ClientProtocol_860/staticFacilityInfo.ts +41 -41
  112. package/src/packets/ClientProtocol/ClientProtocol_860/target.ts +124 -124
  113. package/src/packets/ClientProtocol/ClientProtocol_860/thrustPad.ts +18 -18
  114. package/src/packets/ClientProtocol/ClientProtocol_860/ui.ts +83 -83
  115. package/src/packets/ClientProtocol/ClientProtocol_860/vehicle.ts +411 -411
  116. package/src/packets/ClientProtocol/ClientProtocol_860/voice.ts +39 -39
  117. package/src/packets/ClientProtocol/ClientProtocol_860/wallOfData.ts +61 -61
  118. package/src/packets/ClientProtocol/ClientProtocol_860/warpgate.ts +22 -22
  119. package/src/packets/ClientProtocol/ClientProtocol_860/weapon.ts +274 -274
  120. package/src/packets/ClientProtocol/ClientProtocol_860/wordFilter.ts +22 -22
  121. package/src/packets/ClientProtocol/ClientProtocol_860/zoneSetting.ts +35 -35
  122. package/src/packets/LoginUdp/LoginUdp_11/loginTunnelPackets.ts +43 -43
  123. package/src/packets/LoginUdp/LoginUdp_11/loginpackets.ts +471 -471
  124. package/src/packets/LoginUdp/LoginUdp_9/loginTunnelPackets.ts +43 -43
  125. package/src/packets/LoginUdp/LoginUdp_9/loginpackets.ts +441 -441
  126. package/src/packets/gatewaypackets.ts +73 -73
  127. package/src/packets/packettable.ts +33 -33
  128. package/src/protocols/gatewayprotocol.ts +122 -122
  129. package/src/protocols/h1emuprotocol.ts +175 -175
  130. package/src/protocols/h1z1protocol.ts +675 -675
  131. package/src/protocols/loginprotocol.ts +139 -139
  132. package/src/protocols/loginprotocol2016.ts +141 -141
  133. package/src/protocols/soeprotocol.ts +620 -620
  134. package/src/servers/H1emuServer/h1emuLoginServer.ts +64 -64
  135. package/src/servers/H1emuServer/h1emuZoneServer.ts +123 -123
  136. package/src/servers/H1emuServer/shared/h1emuclient.ts +29 -29
  137. package/src/servers/H1emuServer/shared/h1emuserver.ts +112 -112
  138. package/src/servers/LoginServer/workers/httpServer.ts +120 -109
  139. package/src/servers/SoeServer/soeclient.ts +64 -64
  140. package/src/servers/SoeServer/soeinputstream.ts +226 -226
  141. package/src/servers/SoeServer/soeoutputstream.ts +120 -120
  142. package/src/servers/ZoneServer/classes/character.ts +200 -200
  143. package/src/servers/ZoneServer/classes/vehicles.ts +115 -115
  144. package/src/servers/ZoneServer/classes/zoneclient.ts +96 -96
  145. package/src/servers/ZoneServer/commands/admin.ts +34 -34
  146. package/src/servers/ZoneServer/commands/dev.ts +255 -255
  147. package/src/servers/ZoneServer/commands/hax.ts +1088 -1088
  148. package/src/servers/ZoneServer/workers/createBaseEntities.ts +1207 -1207
  149. package/src/servers/ZoneServer/workers/dynamicWeather.ts +416 -416
  150. package/src/servers/ZoneServer2016/classes/character.ts +51 -51
  151. package/src/servers/ZoneServer2016/classes/vehicle.ts +111 -111
  152. package/src/servers/ZoneServer2016/classes/worldobjectmanager.ts +994 -994
  153. package/src/servers/ZoneServer2016/classes/zoneclient.ts +32 -32
  154. package/src/servers/ZoneServer2016/commands/admin.ts +104 -104
  155. package/src/servers/ZoneServer2016/commands/dev.ts +962 -962
  156. package/src/servers/ZoneServer2016/commands/hax.ts +794 -794
  157. package/src/servers/ZoneServer2016/workers/dynamicWeather.ts +373 -373
  158. package/src/servers/shared/workers/udpServerWorker.ts +68 -68
  159. package/src/types/gatewayserver.ts +34 -34
  160. package/src/types/loginserver.ts +78 -78
  161. package/src/types/packets.ts +2499 -2499
  162. package/src/types/shared.ts +24 -24
  163. package/src/types/soeserver.ts +35 -35
  164. package/src/types/zonedata.ts +27 -27
  165. package/src/types/zoneserver.ts +629 -629
  166. package/src/utils/utils.ts +319 -319
@@ -1,76 +1,76 @@
1
- # Contributor Covenant Code of Conduct
2
-
3
- ## Our Pledge
4
-
5
- In the interest of fostering an open and welcoming environment, we as
6
- contributors and maintainers pledge to making participation in our project and
7
- our community a harassment-free experience for everyone, regardless of age, body
8
- size, disability, ethnicity, sex characteristics, gender identity and expression,
9
- level of experience, education, socio-economic status, nationality, personal
10
- appearance, race, religion, or sexual identity and orientation.
11
-
12
- ## Our Standards
13
-
14
- Examples of behavior that contributes to creating a positive environment
15
- include:
16
-
17
- * Using welcoming and inclusive language
18
- * Being respectful of differing viewpoints and experiences
19
- * Gracefully accepting constructive criticism
20
- * Focusing on what is best for the community
21
- * Showing empathy towards other community members
22
-
23
- Examples of unacceptable behavior by participants include:
24
-
25
- * The use of sexualized language or imagery and unwelcome sexual attention or
26
- advances
27
- * Trolling, insulting/derogatory comments, and personal or political attacks
28
- * Public or private harassment
29
- * Publishing others' private information, such as a physical or electronic
30
- address, without explicit permission
31
- * Other conduct which could reasonably be considered inappropriate in a
32
- professional setting
33
-
34
- ## Our Responsibilities
35
-
36
- Project maintainers are responsible for clarifying the standards of acceptable
37
- behavior and are expected to take appropriate and fair corrective action in
38
- response to any instances of unacceptable behavior.
39
-
40
- Project maintainers have the right and responsibility to remove, edit, or
41
- reject comments, commits, code, wiki edits, issues, and other contributions
42
- that are not aligned to this Code of Conduct, or to ban temporarily or
43
- permanently any contributor for other behaviors that they deem inappropriate,
44
- threatening, offensive, or harmful.
45
-
46
- ## Scope
47
-
48
- This Code of Conduct applies both within project spaces and in public spaces
49
- when an individual is representing the project or its community. Examples of
50
- representing a project or community include using an official project e-mail
51
- address, posting via an official social media account, or acting as an appointed
52
- representative at an online or offline event. Representation of a project may be
53
- further defined and clarified by project maintainers.
54
-
55
- ## Enforcement
56
-
57
- Instances of abusive, harassing, or otherwise unacceptable behavior may be
58
- reported by contacting the project team on Discord ( Found a server invitation link here : http://h1emu.com ). All
59
- complaints will be reviewed and investigated and will result in a response that
60
- is deemed necessary and appropriate to the circumstances. The project team is
61
- obligated to maintain confidentiality with regard to the reporter of an incident.
62
- Further details of specific enforcement policies may be posted separately.
63
-
64
- Project maintainers who do not follow or enforce the Code of Conduct in good
65
- faith may face temporary or permanent repercussions as determined by other
66
- members of the project's leadership.
67
-
68
- ## Attribution
69
-
70
- This Code of Conduct is adapted from the [Contributor Covenant][homepage], version 1.4,
71
- available at https://www.contributor-covenant.org/version/1/4/code-of-conduct.html
72
-
73
- [homepage]: https://www.contributor-covenant.org
74
-
75
- For answers to common questions about this code of conduct, see
76
- https://www.contributor-covenant.org/faq
1
+ # Contributor Covenant Code of Conduct
2
+
3
+ ## Our Pledge
4
+
5
+ In the interest of fostering an open and welcoming environment, we as
6
+ contributors and maintainers pledge to making participation in our project and
7
+ our community a harassment-free experience for everyone, regardless of age, body
8
+ size, disability, ethnicity, sex characteristics, gender identity and expression,
9
+ level of experience, education, socio-economic status, nationality, personal
10
+ appearance, race, religion, or sexual identity and orientation.
11
+
12
+ ## Our Standards
13
+
14
+ Examples of behavior that contributes to creating a positive environment
15
+ include:
16
+
17
+ * Using welcoming and inclusive language
18
+ * Being respectful of differing viewpoints and experiences
19
+ * Gracefully accepting constructive criticism
20
+ * Focusing on what is best for the community
21
+ * Showing empathy towards other community members
22
+
23
+ Examples of unacceptable behavior by participants include:
24
+
25
+ * The use of sexualized language or imagery and unwelcome sexual attention or
26
+ advances
27
+ * Trolling, insulting/derogatory comments, and personal or political attacks
28
+ * Public or private harassment
29
+ * Publishing others' private information, such as a physical or electronic
30
+ address, without explicit permission
31
+ * Other conduct which could reasonably be considered inappropriate in a
32
+ professional setting
33
+
34
+ ## Our Responsibilities
35
+
36
+ Project maintainers are responsible for clarifying the standards of acceptable
37
+ behavior and are expected to take appropriate and fair corrective action in
38
+ response to any instances of unacceptable behavior.
39
+
40
+ Project maintainers have the right and responsibility to remove, edit, or
41
+ reject comments, commits, code, wiki edits, issues, and other contributions
42
+ that are not aligned to this Code of Conduct, or to ban temporarily or
43
+ permanently any contributor for other behaviors that they deem inappropriate,
44
+ threatening, offensive, or harmful.
45
+
46
+ ## Scope
47
+
48
+ This Code of Conduct applies both within project spaces and in public spaces
49
+ when an individual is representing the project or its community. Examples of
50
+ representing a project or community include using an official project e-mail
51
+ address, posting via an official social media account, or acting as an appointed
52
+ representative at an online or offline event. Representation of a project may be
53
+ further defined and clarified by project maintainers.
54
+
55
+ ## Enforcement
56
+
57
+ Instances of abusive, harassing, or otherwise unacceptable behavior may be
58
+ reported by contacting the project team on Discord ( Found a server invitation link here : http://h1emu.com ). All
59
+ complaints will be reviewed and investigated and will result in a response that
60
+ is deemed necessary and appropriate to the circumstances. The project team is
61
+ obligated to maintain confidentiality with regard to the reporter of an incident.
62
+ Further details of specific enforcement policies may be posted separately.
63
+
64
+ Project maintainers who do not follow or enforce the Code of Conduct in good
65
+ faith may face temporary or permanent repercussions as determined by other
66
+ members of the project's leadership.
67
+
68
+ ## Attribution
69
+
70
+ This Code of Conduct is adapted from the [Contributor Covenant][homepage], version 1.4,
71
+ available at https://www.contributor-covenant.org/version/1/4/code-of-conduct.html
72
+
73
+ [homepage]: https://www.contributor-covenant.org
74
+
75
+ For answers to common questions about this code of conduct, see
76
+ https://www.contributor-covenant.org/faq
package/CONTRIBUTING.md CHANGED
@@ -1,19 +1,19 @@
1
- # Contributing to h1z1-server
2
-
3
- :+1::tada: First off, thanks for taking the time to contribute! :tada::+1:
4
-
5
- The following is a set of guidelines for contributing to H1emu and its packages, which are hosted in the [H1emu Organization](https://github.com/H1emu) on GitHub.
6
- These are mostly guidelines, not rules. Use your best judgment, and feel free to propose changes to this document in a pull request.
7
-
8
- #### Table Of Contents
9
-
10
- * [Code of Conduct](https://github.com/QuentinGruber/h1z1-server/blob/master/CODE_OF_CONDUCT.md)
11
- * [Setup h1z1](https://github.com/QuentinGruber/h1z1-server#setup-h1z1)
12
- * [Setup dev environnement](https://github.com/H1emu/h1emu-server-dev)
13
- * [Submitting a pull request / a change](#git-flow)
14
-
15
- #### git-flow
16
-
17
- h1z1-server work with git flow watch this video if you don't know what it is i left you some documentation:
18
- * git-flow workflow : https://www.youtube.com/watch?v=1SXpE08hvGs
19
- * git-flow cheatsheet : https://danielkummer.github.io/git-flow-cheatsheet/index.html
1
+ # Contributing to h1z1-server
2
+
3
+ :+1::tada: First off, thanks for taking the time to contribute! :tada::+1:
4
+
5
+ The following is a set of guidelines for contributing to H1emu and its packages, which are hosted in the [H1emu Organization](https://github.com/H1emu) on GitHub.
6
+ These are mostly guidelines, not rules. Use your best judgment, and feel free to propose changes to this document in a pull request.
7
+
8
+ #### Table Of Contents
9
+
10
+ * [Code of Conduct](https://github.com/QuentinGruber/h1z1-server/blob/master/CODE_OF_CONDUCT.md)
11
+ * [Setup h1z1](https://github.com/QuentinGruber/h1z1-server#setup-h1z1)
12
+ * [Setup dev environnement](https://github.com/H1emu/h1emu-server-dev)
13
+ * [Submitting a pull request / a change](#git-flow)
14
+
15
+ #### git-flow
16
+
17
+ h1z1-server work with git flow watch this video if you don't know what it is i left you some documentation:
18
+ * git-flow workflow : https://www.youtube.com/watch?v=1SXpE08hvGs
19
+ * git-flow cheatsheet : https://danielkummer.github.io/git-flow-cheatsheet/index.html