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.
- package/AUTHORS +6 -0
- package/CODE_OF_CONDUCT.md +76 -76
- package/CONTRIBUTING.md +19 -19
- package/LICENSE +2 -2
- package/data/npcs.json +1862 -1862
- package/h1z1-server.js +2 -2
- package/mongodb/h1server/servers.bson +0 -0
- package/mongodb/h1server/servers.metadata.json +1 -1
- package/mongodb/h1server/spawns.metadata.json +1 -1
- package/mongodb/h1server/weathers.metadata.json +1 -1
- package/mongodb/h1server/zone-whitelist.bson +0 -0
- package/mongodb/h1server/zone-whitelist.metadata.json +1 -1
- package/package.json +22 -15
- package/scripts/fixSignatures.ts +26 -0
- package/signature-header.txt +13 -0
- package/src/clients/gatewayclient.js +2 -2
- package/src/clients/loginclient.ts +2 -2
- package/src/clients/soeclient.js +2 -2
- package/src/clients/zoneclient.ts +2 -2
- package/src/packets/ClientProtocol/ClientProtocol_1080/abilities.ts +114 -0
- package/src/packets/ClientProtocol/ClientProtocol_1080/ability.ts +38 -0
- package/src/packets/ClientProtocol/ClientProtocol_1080/achievement.ts +62 -0
- package/src/packets/ClientProtocol/ClientProtocol_1080/acquaintance.ts +14 -0
- package/src/packets/ClientProtocol/ClientProtocol_1080/activityManager.ts +17 -0
- package/src/packets/ClientProtocol/ClientProtocol_1080/activityService.ts +18 -0
- package/src/packets/ClientProtocol/ClientProtocol_1080/base.ts +3363 -0
- package/src/packets/ClientProtocol/ClientProtocol_1080/character.ts +293 -0
- package/src/packets/ClientProtocol/ClientProtocol_1080/chat.ts +57 -0
- package/src/packets/ClientProtocol/ClientProtocol_1080/clientUpdate.ts +328 -0
- package/src/packets/ClientProtocol/ClientProtocol_1080/coinStore.ts +100 -0
- package/src/packets/ClientProtocol/ClientProtocol_1080/collision.ts +31 -0
- package/src/packets/ClientProtocol/ClientProtocol_1080/combat.ts +25 -0
- package/src/packets/ClientProtocol/ClientProtocol_1080/command.ts +636 -0
- package/src/packets/ClientProtocol/ClientProtocol_1080/construction.ts +56 -0
- package/src/packets/ClientProtocol/ClientProtocol_1080/container.ts +83 -0
- package/src/packets/ClientProtocol/ClientProtocol_1080/currency.ts +26 -0
- package/src/packets/ClientProtocol/ClientProtocol_1080/definitionFilter.ts +73 -0
- package/src/packets/ClientProtocol/ClientProtocol_1080/deployable.ts +19 -0
- package/src/packets/ClientProtocol/ClientProtocol_1080/effects.ts +176 -0
- package/src/packets/ClientProtocol/ClientProtocol_1080/equipment.ts +111 -0
- package/src/packets/ClientProtocol/ClientProtocol_1080/experience.ts +85 -0
- package/src/packets/ClientProtocol/ClientProtocol_1080/facility.ts +171 -0
- package/src/packets/ClientProtocol/ClientProtocol_1080/friend.ts +100 -0
- package/src/packets/ClientProtocol/ClientProtocol_1080/guild.ts +31 -0
- package/src/packets/ClientProtocol/ClientProtocol_1080/h1z1packets.ts +109 -8887
- package/src/packets/ClientProtocol/ClientProtocol_1080/implant.ts +20 -0
- package/src/packets/ClientProtocol/ClientProtocol_1080/inGamePurchase.ts +362 -0
- package/src/packets/ClientProtocol/ClientProtocol_1080/items.ts +38 -0
- package/src/packets/ClientProtocol/ClientProtocol_1080/loadout.ts +88 -0
- package/src/packets/ClientProtocol/ClientProtocol_1080/lobby.ts +24 -0
- package/src/packets/ClientProtocol/ClientProtocol_1080/lobbyGameDefinition.ts +35 -0
- package/src/packets/ClientProtocol/ClientProtocol_1080/loot.ts +14 -0
- package/src/packets/ClientProtocol/ClientProtocol_1080/mapRegion.ts +110 -0
- package/src/packets/ClientProtocol/ClientProtocol_1080/metaGameEvent.ts +23 -0
- package/src/packets/ClientProtocol/ClientProtocol_1080/missions.ts +33 -0
- package/src/packets/ClientProtocol/ClientProtocol_1080/mount.ts +86 -0
- package/src/packets/ClientProtocol/ClientProtocol_1080/operation.ts +25 -0
- package/src/packets/ClientProtocol/ClientProtocol_1080/profileStats.ts +33 -0
- package/src/packets/ClientProtocol/ClientProtocol_1080/quickChat.ts +49 -0
- package/src/packets/ClientProtocol/ClientProtocol_1080/ragdoll.ts +14 -0
- package/src/packets/ClientProtocol/ClientProtocol_1080/recipe.ts +35 -0
- package/src/packets/ClientProtocol/ClientProtocol_1080/referenceData.ts +113 -0
- package/src/packets/ClientProtocol/ClientProtocol_1080/rewardBuffs.ts +20 -0
- package/src/packets/ClientProtocol/ClientProtocol_1080/shared.ts +1779 -0
- package/src/packets/ClientProtocol/ClientProtocol_1080/skill.ts +37 -0
- package/src/packets/ClientProtocol/ClientProtocol_1080/staticFacilityInfo.ts +41 -0
- package/src/packets/ClientProtocol/ClientProtocol_1080/target.ts +14 -0
- package/src/packets/ClientProtocol/ClientProtocol_1080/ui.ts +37 -0
- package/src/packets/ClientProtocol/ClientProtocol_1080/vehicle.ts +380 -0
- package/src/packets/ClientProtocol/ClientProtocol_1080/voice.ts +41 -0
- package/src/packets/ClientProtocol/ClientProtocol_1080/wallOfData.ts +43 -0
- package/src/packets/ClientProtocol/ClientProtocol_1080/weapon.ts +274 -0
- package/src/packets/ClientProtocol/ClientProtocol_1080/wordFilter.ts +22 -0
- package/src/packets/ClientProtocol/ClientProtocol_1080/zoneSetting.ts +35 -0
- package/src/packets/ClientProtocol/ClientProtocol_860/abilities.ts +207 -0
- package/src/packets/ClientProtocol/ClientProtocol_860/ability.ts +361 -0
- package/src/packets/ClientProtocol/ClientProtocol_860/achievement.ts +62 -0
- package/src/packets/ClientProtocol/ClientProtocol_860/acquaintance.ts +45 -0
- package/src/packets/ClientProtocol/ClientProtocol_860/activityManager.ts +17 -0
- package/src/packets/ClientProtocol/ClientProtocol_860/activityService.ts +18 -0
- package/src/packets/ClientProtocol/ClientProtocol_860/base.ts +2455 -0
- package/src/packets/ClientProtocol/ClientProtocol_860/chat.ts +63 -0
- package/src/packets/ClientProtocol/ClientProtocol_860/clientPcData.ts +30 -0
- package/src/packets/ClientProtocol/ClientProtocol_860/clientUpdate.ts +433 -0
- package/src/packets/ClientProtocol/ClientProtocol_860/coinStore.ts +100 -0
- package/src/packets/ClientProtocol/ClientProtocol_860/collision.ts +31 -0
- package/src/packets/ClientProtocol/ClientProtocol_860/combat.ts +173 -0
- package/src/packets/ClientProtocol/ClientProtocol_860/command.ts +645 -0
- package/src/packets/ClientProtocol/ClientProtocol_860/construction.ts +42 -0
- package/src/packets/ClientProtocol/ClientProtocol_860/container.ts +30 -0
- package/src/packets/ClientProtocol/ClientProtocol_860/currency.ts +26 -0
- package/src/packets/ClientProtocol/ClientProtocol_860/definitionFilter.ts +73 -0
- package/src/packets/ClientProtocol/ClientProtocol_860/deployable.ts +19 -0
- package/src/packets/ClientProtocol/ClientProtocol_860/dto.ts +73 -0
- package/src/packets/ClientProtocol/ClientProtocol_860/effects.ts +176 -0
- package/src/packets/ClientProtocol/ClientProtocol_860/equipment.ts +112 -0
- package/src/packets/ClientProtocol/ClientProtocol_860/experience.ts +85 -0
- package/src/packets/ClientProtocol/ClientProtocol_860/facility.ts +185 -0
- package/src/packets/ClientProtocol/ClientProtocol_860/friend.ts +100 -0
- package/src/packets/ClientProtocol/ClientProtocol_860/guild.ts +31 -0
- package/src/packets/ClientProtocol/ClientProtocol_860/h1z1packets.ts +116 -10324
- package/src/packets/ClientProtocol/ClientProtocol_860/implant.ts +20 -0
- package/src/packets/ClientProtocol/ClientProtocol_860/inGamePurchase.ts +362 -0
- package/src/packets/ClientProtocol/ClientProtocol_860/items.ts +38 -0
- package/src/packets/ClientProtocol/ClientProtocol_860/loadout.ts +110 -0
- package/src/packets/ClientProtocol/ClientProtocol_860/lobby.ts +24 -0
- package/src/packets/ClientProtocol/ClientProtocol_860/lobbyGameDefinition.ts +35 -0
- package/src/packets/ClientProtocol/ClientProtocol_860/loot.ts +34 -0
- package/src/packets/ClientProtocol/ClientProtocol_860/mapRegion.ts +110 -0
- package/src/packets/ClientProtocol/ClientProtocol_860/metaGameEvent.ts +23 -0
- package/src/packets/ClientProtocol/ClientProtocol_860/missions.ts +33 -0
- package/src/packets/ClientProtocol/ClientProtocol_860/mount.ts +121 -0
- package/src/packets/ClientProtocol/ClientProtocol_860/operation.ts +39 -0
- package/src/packets/ClientProtocol/ClientProtocol_860/playerUpdate.ts +1463 -0
- package/src/packets/ClientProtocol/ClientProtocol_860/profileStats.ts +154 -0
- package/src/packets/ClientProtocol/ClientProtocol_860/quickChat.ts +49 -0
- package/src/packets/ClientProtocol/ClientProtocol_860/ragdoll.ts +146 -0
- package/src/packets/ClientProtocol/ClientProtocol_860/recipe.ts +96 -0
- package/src/packets/ClientProtocol/ClientProtocol_860/referenceData.ts +56 -0
- package/src/packets/ClientProtocol/ClientProtocol_860/rewardBuffs.ts +20 -0
- package/src/packets/ClientProtocol/ClientProtocol_860/shared.ts +1954 -0
- package/src/packets/ClientProtocol/ClientProtocol_860/skill.ts +89 -0
- package/src/packets/ClientProtocol/ClientProtocol_860/staticFacilityInfo.ts +41 -0
- package/src/packets/ClientProtocol/ClientProtocol_860/target.ts +124 -0
- package/src/packets/ClientProtocol/ClientProtocol_860/thrustPad.ts +18 -0
- package/src/packets/ClientProtocol/ClientProtocol_860/ui.ts +83 -0
- package/src/packets/ClientProtocol/ClientProtocol_860/vehicle.ts +411 -0
- package/src/packets/ClientProtocol/ClientProtocol_860/voice.ts +39 -0
- package/src/packets/ClientProtocol/ClientProtocol_860/wallOfData.ts +61 -0
- package/src/packets/ClientProtocol/ClientProtocol_860/warpgate.ts +22 -0
- package/src/packets/ClientProtocol/ClientProtocol_860/weapon.ts +274 -0
- package/src/packets/ClientProtocol/ClientProtocol_860/wordFilter.ts +22 -0
- package/src/packets/ClientProtocol/ClientProtocol_860/zoneSetting.ts +35 -0
- package/src/packets/LoginUdp/LoginUdp_11/loginTunnelPackets.ts +2 -2
- package/src/packets/LoginUdp/LoginUdp_11/loginpackets.ts +2 -2
- package/src/packets/LoginUdp/LoginUdp_9/loginTunnelPackets.ts +2 -2
- package/src/packets/LoginUdp/LoginUdp_9/loginpackets.ts +2 -2
- package/src/packets/gatewaypackets.ts +2 -2
- package/src/packets/packettable.ts +4 -8
- package/src/protocols/gatewayprotocol.ts +2 -2
- package/src/protocols/h1emuprotocol.ts +2 -2
- package/src/protocols/h1z1protocol.ts +3 -3
- package/src/protocols/loginprotocol.ts +12 -38
- package/src/protocols/loginprotocol2016.ts +141 -0
- package/src/protocols/soeprotocol.ts +2 -2
- package/src/servers/GatewayServer/gatewayserver.ts +2 -2
- package/src/servers/H1emuServer/h1emuLoginServer.ts +2 -2
- package/src/servers/H1emuServer/h1emuZoneServer.ts +2 -2
- package/src/servers/H1emuServer/shared/h1emuclient.ts +2 -2
- package/src/servers/H1emuServer/shared/h1emuserver.ts +2 -2
- package/src/servers/LoginServer/loginserver.ts +973 -935
- package/src/servers/LoginServer/workers/httpServer.ts +2 -2
- package/src/servers/SoeServer/soeclient.ts +2 -4
- package/src/servers/SoeServer/soeinputstream.ts +2 -2
- package/src/servers/SoeServer/soeoutputstream.ts +2 -2
- package/src/servers/SoeServer/soeserver.ts +7 -11
- package/src/servers/ZoneServer/classes/character.ts +13 -8
- package/src/servers/ZoneServer/classes/vehicles.ts +3 -3
- package/src/servers/ZoneServer/classes/zoneclient.ts +4 -3
- package/src/servers/ZoneServer/commands/admin.ts +2 -2
- package/src/servers/ZoneServer/commands/dev.ts +3 -11
- package/src/servers/ZoneServer/commands/hax.ts +40 -23
- package/src/servers/ZoneServer/workers/createBaseEntities.ts +5 -4
- package/src/servers/ZoneServer/workers/dynamicWeather.ts +11 -11
- package/src/servers/ZoneServer/zonepackethandlers.ts +76 -23
- package/src/servers/ZoneServer/zoneserver.ts +112 -60
- package/src/servers/ZoneServer2016/classes/character.ts +2 -2
- package/src/servers/ZoneServer2016/classes/vehicle.ts +2 -2
- package/src/servers/ZoneServer2016/classes/worldobjectmanager.ts +2 -2
- package/src/servers/ZoneServer2016/classes/zoneclient.ts +2 -2
- package/src/servers/ZoneServer2016/commands/admin.ts +2 -2
- package/src/servers/ZoneServer2016/commands/dev.ts +2 -2
- package/src/servers/ZoneServer2016/commands/hax.ts +2 -2
- package/src/servers/ZoneServer2016/workers/dynamicWeather.ts +2 -2
- package/src/servers/ZoneServer2016/zonepackethandlers.ts +2 -2
- package/src/servers/ZoneServer2016/zoneserver.ts +13 -6
- package/src/servers/shared/workers/udpServerWorker.ts +2 -2
- package/src/types/gatewayserver.ts +13 -0
- package/src/types/loginserver.ts +13 -1
- package/src/types/packets.ts +2499 -2484
- package/src/types/shared.ts +13 -0
- package/src/types/soeserver.ts +13 -0
- package/src/types/zonedata.ts +13 -0
- package/src/types/zoneserver.ts +14 -1
- package/src/utils/utils.ts +34 -3
- package/tsconfig.json +1 -1
- package/tsconfigs/tsconfig-2015-login.json +25 -0
- package/tsconfigs/tsconfig-2015-zone.json +20 -0
- package/tsconfigs/tsconfig-2015.json +19 -0
- package/tsconfigs/tsconfig-2016-login.json +25 -0
- package/tsconfigs/tsconfig-2016-zone.json +20 -0
- 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>
|
package/CODE_OF_CONDUCT.md
CHANGED
|
@@ -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
|
-
|
|
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
|
|
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.
|