h1z1-server 0.19.2-0 → 0.19.3-2

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 (192) hide show
  1. package/AUTHORS +6 -0
  2. package/CODE_OF_CONDUCT.md +76 -76
  3. package/CONTRIBUTING.md +19 -19
  4. package/LICENSE +2 -2
  5. package/data/npcs.json +1862 -1862
  6. package/h1z1-server.js +2 -2
  7. package/mongodb/h1server/servers.bson +0 -0
  8. package/mongodb/h1server/servers.metadata.json +1 -1
  9. package/mongodb/h1server/spawns.metadata.json +1 -1
  10. package/mongodb/h1server/weathers.metadata.json +1 -1
  11. package/mongodb/h1server/zone-whitelist.bson +0 -0
  12. package/mongodb/h1server/zone-whitelist.metadata.json +1 -1
  13. package/package.json +22 -15
  14. package/scripts/fixSignatures.ts +26 -0
  15. package/signature-header.txt +13 -0
  16. package/src/clients/gatewayclient.js +2 -2
  17. package/src/clients/loginclient.ts +2 -2
  18. package/src/clients/soeclient.js +2 -2
  19. package/src/clients/zoneclient.ts +2 -2
  20. package/src/packets/ClientProtocol/ClientProtocol_1080/abilities.ts +114 -0
  21. package/src/packets/ClientProtocol/ClientProtocol_1080/ability.ts +38 -0
  22. package/src/packets/ClientProtocol/ClientProtocol_1080/achievement.ts +62 -0
  23. package/src/packets/ClientProtocol/ClientProtocol_1080/acquaintance.ts +14 -0
  24. package/src/packets/ClientProtocol/ClientProtocol_1080/activityManager.ts +17 -0
  25. package/src/packets/ClientProtocol/ClientProtocol_1080/activityService.ts +18 -0
  26. package/src/packets/ClientProtocol/ClientProtocol_1080/base.ts +3363 -0
  27. package/src/packets/ClientProtocol/ClientProtocol_1080/character.ts +293 -0
  28. package/src/packets/ClientProtocol/ClientProtocol_1080/chat.ts +57 -0
  29. package/src/packets/ClientProtocol/ClientProtocol_1080/clientUpdate.ts +328 -0
  30. package/src/packets/ClientProtocol/ClientProtocol_1080/coinStore.ts +100 -0
  31. package/src/packets/ClientProtocol/ClientProtocol_1080/collision.ts +31 -0
  32. package/src/packets/ClientProtocol/ClientProtocol_1080/combat.ts +25 -0
  33. package/src/packets/ClientProtocol/ClientProtocol_1080/command.ts +636 -0
  34. package/src/packets/ClientProtocol/ClientProtocol_1080/construction.ts +56 -0
  35. package/src/packets/ClientProtocol/ClientProtocol_1080/container.ts +83 -0
  36. package/src/packets/ClientProtocol/ClientProtocol_1080/currency.ts +26 -0
  37. package/src/packets/ClientProtocol/ClientProtocol_1080/definitionFilter.ts +73 -0
  38. package/src/packets/ClientProtocol/ClientProtocol_1080/deployable.ts +19 -0
  39. package/src/packets/ClientProtocol/ClientProtocol_1080/effects.ts +176 -0
  40. package/src/packets/ClientProtocol/ClientProtocol_1080/equipment.ts +111 -0
  41. package/src/packets/ClientProtocol/ClientProtocol_1080/experience.ts +85 -0
  42. package/src/packets/ClientProtocol/ClientProtocol_1080/facility.ts +171 -0
  43. package/src/packets/ClientProtocol/ClientProtocol_1080/friend.ts +100 -0
  44. package/src/packets/ClientProtocol/ClientProtocol_1080/guild.ts +31 -0
  45. package/src/packets/ClientProtocol/ClientProtocol_1080/h1z1packets.ts +109 -8887
  46. package/src/packets/ClientProtocol/ClientProtocol_1080/implant.ts +20 -0
  47. package/src/packets/ClientProtocol/ClientProtocol_1080/inGamePurchase.ts +362 -0
  48. package/src/packets/ClientProtocol/ClientProtocol_1080/items.ts +38 -0
  49. package/src/packets/ClientProtocol/ClientProtocol_1080/loadout.ts +88 -0
  50. package/src/packets/ClientProtocol/ClientProtocol_1080/lobby.ts +24 -0
  51. package/src/packets/ClientProtocol/ClientProtocol_1080/lobbyGameDefinition.ts +35 -0
  52. package/src/packets/ClientProtocol/ClientProtocol_1080/loot.ts +14 -0
  53. package/src/packets/ClientProtocol/ClientProtocol_1080/mapRegion.ts +110 -0
  54. package/src/packets/ClientProtocol/ClientProtocol_1080/metaGameEvent.ts +23 -0
  55. package/src/packets/ClientProtocol/ClientProtocol_1080/missions.ts +33 -0
  56. package/src/packets/ClientProtocol/ClientProtocol_1080/mount.ts +86 -0
  57. package/src/packets/ClientProtocol/ClientProtocol_1080/operation.ts +25 -0
  58. package/src/packets/ClientProtocol/ClientProtocol_1080/profileStats.ts +33 -0
  59. package/src/packets/ClientProtocol/ClientProtocol_1080/quickChat.ts +49 -0
  60. package/src/packets/ClientProtocol/ClientProtocol_1080/ragdoll.ts +14 -0
  61. package/src/packets/ClientProtocol/ClientProtocol_1080/recipe.ts +35 -0
  62. package/src/packets/ClientProtocol/ClientProtocol_1080/referenceData.ts +113 -0
  63. package/src/packets/ClientProtocol/ClientProtocol_1080/rewardBuffs.ts +20 -0
  64. package/src/packets/ClientProtocol/ClientProtocol_1080/shared.ts +1779 -0
  65. package/src/packets/ClientProtocol/ClientProtocol_1080/skill.ts +37 -0
  66. package/src/packets/ClientProtocol/ClientProtocol_1080/staticFacilityInfo.ts +41 -0
  67. package/src/packets/ClientProtocol/ClientProtocol_1080/target.ts +14 -0
  68. package/src/packets/ClientProtocol/ClientProtocol_1080/ui.ts +37 -0
  69. package/src/packets/ClientProtocol/ClientProtocol_1080/vehicle.ts +380 -0
  70. package/src/packets/ClientProtocol/ClientProtocol_1080/voice.ts +41 -0
  71. package/src/packets/ClientProtocol/ClientProtocol_1080/wallOfData.ts +43 -0
  72. package/src/packets/ClientProtocol/ClientProtocol_1080/weapon.ts +274 -0
  73. package/src/packets/ClientProtocol/ClientProtocol_1080/wordFilter.ts +22 -0
  74. package/src/packets/ClientProtocol/ClientProtocol_1080/zoneSetting.ts +35 -0
  75. package/src/packets/ClientProtocol/ClientProtocol_860/abilities.ts +207 -0
  76. package/src/packets/ClientProtocol/ClientProtocol_860/ability.ts +361 -0
  77. package/src/packets/ClientProtocol/ClientProtocol_860/achievement.ts +62 -0
  78. package/src/packets/ClientProtocol/ClientProtocol_860/acquaintance.ts +45 -0
  79. package/src/packets/ClientProtocol/ClientProtocol_860/activityManager.ts +17 -0
  80. package/src/packets/ClientProtocol/ClientProtocol_860/activityService.ts +18 -0
  81. package/src/packets/ClientProtocol/ClientProtocol_860/base.ts +2455 -0
  82. package/src/packets/ClientProtocol/ClientProtocol_860/chat.ts +63 -0
  83. package/src/packets/ClientProtocol/ClientProtocol_860/clientPcData.ts +30 -0
  84. package/src/packets/ClientProtocol/ClientProtocol_860/clientUpdate.ts +433 -0
  85. package/src/packets/ClientProtocol/ClientProtocol_860/coinStore.ts +100 -0
  86. package/src/packets/ClientProtocol/ClientProtocol_860/collision.ts +31 -0
  87. package/src/packets/ClientProtocol/ClientProtocol_860/combat.ts +173 -0
  88. package/src/packets/ClientProtocol/ClientProtocol_860/command.ts +645 -0
  89. package/src/packets/ClientProtocol/ClientProtocol_860/construction.ts +42 -0
  90. package/src/packets/ClientProtocol/ClientProtocol_860/container.ts +30 -0
  91. package/src/packets/ClientProtocol/ClientProtocol_860/currency.ts +26 -0
  92. package/src/packets/ClientProtocol/ClientProtocol_860/definitionFilter.ts +73 -0
  93. package/src/packets/ClientProtocol/ClientProtocol_860/deployable.ts +19 -0
  94. package/src/packets/ClientProtocol/ClientProtocol_860/dto.ts +73 -0
  95. package/src/packets/ClientProtocol/ClientProtocol_860/effects.ts +176 -0
  96. package/src/packets/ClientProtocol/ClientProtocol_860/equipment.ts +112 -0
  97. package/src/packets/ClientProtocol/ClientProtocol_860/experience.ts +85 -0
  98. package/src/packets/ClientProtocol/ClientProtocol_860/facility.ts +185 -0
  99. package/src/packets/ClientProtocol/ClientProtocol_860/friend.ts +100 -0
  100. package/src/packets/ClientProtocol/ClientProtocol_860/guild.ts +31 -0
  101. package/src/packets/ClientProtocol/ClientProtocol_860/h1z1packets.ts +116 -10324
  102. package/src/packets/ClientProtocol/ClientProtocol_860/implant.ts +20 -0
  103. package/src/packets/ClientProtocol/ClientProtocol_860/inGamePurchase.ts +362 -0
  104. package/src/packets/ClientProtocol/ClientProtocol_860/items.ts +38 -0
  105. package/src/packets/ClientProtocol/ClientProtocol_860/loadout.ts +110 -0
  106. package/src/packets/ClientProtocol/ClientProtocol_860/lobby.ts +24 -0
  107. package/src/packets/ClientProtocol/ClientProtocol_860/lobbyGameDefinition.ts +35 -0
  108. package/src/packets/ClientProtocol/ClientProtocol_860/loot.ts +34 -0
  109. package/src/packets/ClientProtocol/ClientProtocol_860/mapRegion.ts +110 -0
  110. package/src/packets/ClientProtocol/ClientProtocol_860/metaGameEvent.ts +23 -0
  111. package/src/packets/ClientProtocol/ClientProtocol_860/missions.ts +33 -0
  112. package/src/packets/ClientProtocol/ClientProtocol_860/mount.ts +121 -0
  113. package/src/packets/ClientProtocol/ClientProtocol_860/operation.ts +39 -0
  114. package/src/packets/ClientProtocol/ClientProtocol_860/playerUpdate.ts +1463 -0
  115. package/src/packets/ClientProtocol/ClientProtocol_860/profileStats.ts +154 -0
  116. package/src/packets/ClientProtocol/ClientProtocol_860/quickChat.ts +49 -0
  117. package/src/packets/ClientProtocol/ClientProtocol_860/ragdoll.ts +146 -0
  118. package/src/packets/ClientProtocol/ClientProtocol_860/recipe.ts +96 -0
  119. package/src/packets/ClientProtocol/ClientProtocol_860/referenceData.ts +56 -0
  120. package/src/packets/ClientProtocol/ClientProtocol_860/rewardBuffs.ts +20 -0
  121. package/src/packets/ClientProtocol/ClientProtocol_860/shared.ts +1954 -0
  122. package/src/packets/ClientProtocol/ClientProtocol_860/skill.ts +89 -0
  123. package/src/packets/ClientProtocol/ClientProtocol_860/staticFacilityInfo.ts +41 -0
  124. package/src/packets/ClientProtocol/ClientProtocol_860/target.ts +124 -0
  125. package/src/packets/ClientProtocol/ClientProtocol_860/thrustPad.ts +18 -0
  126. package/src/packets/ClientProtocol/ClientProtocol_860/ui.ts +83 -0
  127. package/src/packets/ClientProtocol/ClientProtocol_860/vehicle.ts +411 -0
  128. package/src/packets/ClientProtocol/ClientProtocol_860/voice.ts +39 -0
  129. package/src/packets/ClientProtocol/ClientProtocol_860/wallOfData.ts +61 -0
  130. package/src/packets/ClientProtocol/ClientProtocol_860/warpgate.ts +22 -0
  131. package/src/packets/ClientProtocol/ClientProtocol_860/weapon.ts +274 -0
  132. package/src/packets/ClientProtocol/ClientProtocol_860/wordFilter.ts +22 -0
  133. package/src/packets/ClientProtocol/ClientProtocol_860/zoneSetting.ts +35 -0
  134. package/src/packets/LoginUdp/LoginUdp_11/loginTunnelPackets.ts +2 -2
  135. package/src/packets/LoginUdp/LoginUdp_11/loginpackets.ts +2 -2
  136. package/src/packets/LoginUdp/LoginUdp_9/loginTunnelPackets.ts +2 -2
  137. package/src/packets/LoginUdp/LoginUdp_9/loginpackets.ts +2 -2
  138. package/src/packets/gatewaypackets.ts +2 -2
  139. package/src/packets/packettable.ts +4 -8
  140. package/src/protocols/gatewayprotocol.ts +2 -2
  141. package/src/protocols/h1emuprotocol.ts +2 -2
  142. package/src/protocols/h1z1protocol.ts +3 -3
  143. package/src/protocols/loginprotocol.ts +12 -38
  144. package/src/protocols/loginprotocol2016.ts +141 -0
  145. package/src/protocols/soeprotocol.ts +2 -2
  146. package/src/servers/GatewayServer/gatewayserver.ts +2 -2
  147. package/src/servers/H1emuServer/h1emuLoginServer.ts +2 -2
  148. package/src/servers/H1emuServer/h1emuZoneServer.ts +2 -2
  149. package/src/servers/H1emuServer/shared/h1emuclient.ts +2 -2
  150. package/src/servers/H1emuServer/shared/h1emuserver.ts +2 -2
  151. package/src/servers/LoginServer/loginserver.ts +973 -935
  152. package/src/servers/LoginServer/workers/httpServer.ts +2 -2
  153. package/src/servers/SoeServer/soeclient.ts +2 -4
  154. package/src/servers/SoeServer/soeinputstream.ts +2 -2
  155. package/src/servers/SoeServer/soeoutputstream.ts +2 -2
  156. package/src/servers/SoeServer/soeserver.ts +7 -11
  157. package/src/servers/ZoneServer/classes/character.ts +13 -8
  158. package/src/servers/ZoneServer/classes/vehicles.ts +3 -3
  159. package/src/servers/ZoneServer/classes/zoneclient.ts +4 -3
  160. package/src/servers/ZoneServer/commands/admin.ts +2 -2
  161. package/src/servers/ZoneServer/commands/dev.ts +3 -11
  162. package/src/servers/ZoneServer/commands/hax.ts +40 -23
  163. package/src/servers/ZoneServer/workers/createBaseEntities.ts +5 -4
  164. package/src/servers/ZoneServer/workers/dynamicWeather.ts +11 -11
  165. package/src/servers/ZoneServer/zonepackethandlers.ts +76 -23
  166. package/src/servers/ZoneServer/zoneserver.ts +112 -60
  167. package/src/servers/ZoneServer2016/classes/character.ts +2 -2
  168. package/src/servers/ZoneServer2016/classes/vehicle.ts +2 -2
  169. package/src/servers/ZoneServer2016/classes/worldobjectmanager.ts +2 -2
  170. package/src/servers/ZoneServer2016/classes/zoneclient.ts +2 -2
  171. package/src/servers/ZoneServer2016/commands/admin.ts +2 -2
  172. package/src/servers/ZoneServer2016/commands/dev.ts +2 -2
  173. package/src/servers/ZoneServer2016/commands/hax.ts +2 -2
  174. package/src/servers/ZoneServer2016/workers/dynamicWeather.ts +2 -2
  175. package/src/servers/ZoneServer2016/zonepackethandlers.ts +2 -2
  176. package/src/servers/ZoneServer2016/zoneserver.ts +13 -6
  177. package/src/servers/shared/workers/udpServerWorker.ts +2 -2
  178. package/src/types/gatewayserver.ts +13 -0
  179. package/src/types/loginserver.ts +13 -1
  180. package/src/types/packets.ts +2499 -2484
  181. package/src/types/shared.ts +13 -0
  182. package/src/types/soeserver.ts +13 -0
  183. package/src/types/zonedata.ts +13 -0
  184. package/src/types/zoneserver.ts +14 -1
  185. package/src/utils/utils.ts +34 -3
  186. package/tsconfig.json +1 -1
  187. package/tsconfigs/tsconfig-2015-login.json +25 -0
  188. package/tsconfigs/tsconfig-2015-zone.json +20 -0
  189. package/tsconfigs/tsconfig-2015.json +19 -0
  190. package/tsconfigs/tsconfig-2016-login.json +25 -0
  191. package/tsconfigs/tsconfig-2016-zone.json +20 -0
  192. package/tsconfigs/tsconfig-2016.json +18 -0
package/AUTHORS ADDED
@@ -0,0 +1,6 @@
1
+ avcio9 <79534197+avcio9@users.noreply.github.com>
2
+ Haxmax <63957530+thegrreat1@users.noreply.github.com>
3
+ Kent1 <quentingruber@gmail.com>
4
+ Rhett <49372771+RhettVX@users.noreply.github.com>
5
+ Torenka <legende_91@msn.com>
6
+ Z1Meme <47575543+Z1Meme@users.noreply.github.com>
@@ -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
package/LICENSE CHANGED
@@ -633,7 +633,7 @@ the "copyright" line and a pointer to where the full notice is found.
633
633
 
634
634
  h1z1-server is a library that emulate a h1z1 server
635
635
  Copyright (C) 2020 - 2021 Quentin Gruber
636
- Copyright (C) 2021 H1emu community
636
+ copyright (C) 2021 - 2022 H1emu community
637
637
 
638
638
  This program is free software: you can redistribute it and/or modify
639
639
  it under the terms of the GNU General Public License as published by
@@ -654,7 +654,7 @@ Also add information on how to contact you by electronic and paper mail.
654
654
  notice like this when it starts in an interactive mode:
655
655
 
656
656
  h1z1-server Copyright (C) 2020 - 2021 Quentin Gruber
657
- h1z1-server Copyright (C) 2021 H1emu community
657
+ h1z1-server copyright (C) 2021 - 2022 H1emu community
658
658
  This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'.
659
659
  This is free software, and you are welcome to redistribute it
660
660
  under certain conditions; type `show c' for details.