@kar-mi/spirit-vale-tools-capture 2.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.
Files changed (183) hide show
  1. package/README.md +71 -0
  2. package/dist/capture/adapter-selection.d.ts +9 -0
  3. package/dist/capture/adapter-selection.d.ts.map +1 -0
  4. package/dist/capture/ip-address.d.ts +2 -0
  5. package/dist/capture/ip-address.d.ts.map +1 -0
  6. package/dist/capture/link-layer.d.ts +10 -0
  7. package/dist/capture/link-layer.d.ts.map +1 -0
  8. package/dist/capture/npcap.d.ts +38 -0
  9. package/dist/capture/npcap.d.ts.map +1 -0
  10. package/dist/capture/packet-capture.d.ts +51 -0
  11. package/dist/capture/packet-capture.d.ts.map +1 -0
  12. package/dist/capture/packet-parser.d.ts +11 -0
  13. package/dist/capture/packet-parser.d.ts.map +1 -0
  14. package/dist/capture/target-tracker.d.ts +37 -0
  15. package/dist/capture/target-tracker.d.ts.map +1 -0
  16. package/dist/capture.d.ts +5 -0
  17. package/dist/capture.d.ts.map +1 -0
  18. package/dist/capture.js +16008 -0
  19. package/dist/fishnet/boss-gravestone.d.ts +16 -0
  20. package/dist/fishnet/boss-gravestone.d.ts.map +1 -0
  21. package/dist/fishnet/builtin-maps.d.ts +10424 -0
  22. package/dist/fishnet/builtin-maps.d.ts.map +1 -0
  23. package/dist/fishnet/character-data-schema.d.ts +3 -0
  24. package/dist/fishnet/character-data-schema.d.ts.map +1 -0
  25. package/dist/fishnet/decoder.d.ts +12 -0
  26. package/dist/fishnet/decoder.d.ts.map +1 -0
  27. package/dist/fishnet/definitions/codecs.d.ts +12 -0
  28. package/dist/fishnet/definitions/codecs.d.ts.map +1 -0
  29. package/dist/fishnet/definitions/protocol.d.ts +101 -0
  30. package/dist/fishnet/definitions/protocol.d.ts.map +1 -0
  31. package/dist/fishnet/definitions/rpc-map.d.ts +61 -0
  32. package/dist/fishnet/definitions/rpc-map.d.ts.map +1 -0
  33. package/dist/fishnet/eternal-tower-tracker.d.ts +24 -0
  34. package/dist/fishnet/eternal-tower-tracker.d.ts.map +1 -0
  35. package/dist/fishnet/field-decoder.d.ts +19 -0
  36. package/dist/fishnet/field-decoder.d.ts.map +1 -0
  37. package/dist/fishnet/map-definitions/current-build.d.ts +3 -0
  38. package/dist/fishnet/map-definitions/current-build.d.ts.map +1 -0
  39. package/dist/fishnet/map-definitions/index.d.ts +3 -0
  40. package/dist/fishnet/map-definitions/index.d.ts.map +1 -0
  41. package/dist/fishnet/message-parser.d.ts +17 -0
  42. package/dist/fishnet/message-parser.d.ts.map +1 -0
  43. package/dist/fishnet/monster-directory.d.ts +40 -0
  44. package/dist/fishnet/monster-directory.d.ts.map +1 -0
  45. package/dist/fishnet/network-transform-decoder.d.ts +25 -0
  46. package/dist/fishnet/network-transform-decoder.d.ts.map +1 -0
  47. package/dist/fishnet/protocol.d.ts +21 -0
  48. package/dist/fishnet/protocol.d.ts.map +1 -0
  49. package/dist/fishnet/quaternion-compression.d.ts +6 -0
  50. package/dist/fishnet/quaternion-compression.d.ts.map +1 -0
  51. package/dist/fishnet/recovery-style.d.ts +5 -0
  52. package/dist/fishnet/recovery-style.d.ts.map +1 -0
  53. package/dist/fishnet/rpc-definitions/broadcasts.d.ts +23 -0
  54. package/dist/fishnet/rpc-definitions/broadcasts.d.ts.map +1 -0
  55. package/dist/fishnet/rpc-definitions/current-build.d.ts +8501 -0
  56. package/dist/fishnet/rpc-definitions/current-build.d.ts.map +1 -0
  57. package/dist/fishnet/rpc-definitions/fishnet/network-animator.d.ts +42 -0
  58. package/dist/fishnet/rpc-definitions/fishnet/network-animator.d.ts.map +1 -0
  59. package/dist/fishnet/rpc-definitions/fishnet/network-transform.d.ts +138 -0
  60. package/dist/fishnet/rpc-definitions/fishnet/network-transform.d.ts.map +1 -0
  61. package/dist/fishnet/rpc-definitions/fishnet/predicted-owner.d.ts +26 -0
  62. package/dist/fishnet/rpc-definitions/fishnet/predicted-owner.d.ts.map +1 -0
  63. package/dist/fishnet/rpc-definitions/game/base-unit-controller.d.ts +122 -0
  64. package/dist/fishnet/rpc-definitions/game/base-unit-controller.d.ts.map +1 -0
  65. package/dist/fishnet/rpc-definitions/game/combat-component.d.ts +44 -0
  66. package/dist/fishnet/rpc-definitions/game/combat-component.d.ts.map +1 -0
  67. package/dist/fishnet/rpc-definitions/game/health-component.d.ts +306 -0
  68. package/dist/fishnet/rpc-definitions/game/health-component.d.ts.map +1 -0
  69. package/dist/fishnet/rpc-definitions/game/loot-drop.d.ts +104 -0
  70. package/dist/fishnet/rpc-definitions/game/loot-drop.d.ts.map +1 -0
  71. package/dist/fishnet/rpc-definitions/game/monster-controller.d.ts +144 -0
  72. package/dist/fishnet/rpc-definitions/game/monster-controller.d.ts.map +1 -0
  73. package/dist/fishnet/rpc-definitions/game/move-component.d.ts +74 -0
  74. package/dist/fishnet/rpc-definitions/game/move-component.d.ts.map +1 -0
  75. package/dist/fishnet/rpc-definitions/game/player-controller/chat-presence.d.ts +332 -0
  76. package/dist/fishnet/rpc-definitions/game/player-controller/chat-presence.d.ts.map +1 -0
  77. package/dist/fishnet/rpc-definitions/game/player-controller/endgame-pvp.d.ts +89 -0
  78. package/dist/fishnet/rpc-definitions/game/player-controller/endgame-pvp.d.ts.map +1 -0
  79. package/dist/fishnet/rpc-definitions/game/player-controller/guild.d.ts +393 -0
  80. package/dist/fishnet/rpc-definitions/game/player-controller/guild.d.ts.map +1 -0
  81. package/dist/fishnet/rpc-definitions/game/player-controller/index.d.ts +23 -0
  82. package/dist/fishnet/rpc-definitions/game/player-controller/index.d.ts.map +1 -0
  83. package/dist/fishnet/rpc-definitions/game/player-controller/party.d.ts +168 -0
  84. package/dist/fishnet/rpc-definitions/game/player-controller/party.d.ts.map +1 -0
  85. package/dist/fishnet/rpc-definitions/game/player-controller/trade-market.d.ts +232 -0
  86. package/dist/fishnet/rpc-definitions/game/player-controller/trade-market.d.ts.map +1 -0
  87. package/dist/fishnet/rpc-definitions/game/player-controller/traversal-session.d.ts +58 -0
  88. package/dist/fishnet/rpc-definitions/game/player-controller/traversal-session.d.ts.map +1 -0
  89. package/dist/fishnet/rpc-definitions/game/player-save/character-build.d.ts +266 -0
  90. package/dist/fishnet/rpc-definitions/game/player-save/character-build.d.ts.map +1 -0
  91. package/dist/fishnet/rpc-definitions/game/player-save/character-data.d.ts +991 -0
  92. package/dist/fishnet/rpc-definitions/game/player-save/character-data.d.ts.map +1 -0
  93. package/dist/fishnet/rpc-definitions/game/player-save/cosmetics-progression.d.ts +126 -0
  94. package/dist/fishnet/rpc-definitions/game/player-save/cosmetics-progression.d.ts.map +1 -0
  95. package/dist/fishnet/rpc-definitions/game/player-save/debug.d.ts +46 -0
  96. package/dist/fishnet/rpc-definitions/game/player-save/debug.d.ts.map +1 -0
  97. package/dist/fishnet/rpc-definitions/game/player-save/economy-world-storage.d.ts +224 -0
  98. package/dist/fishnet/rpc-definitions/game/player-save/economy-world-storage.d.ts.map +1 -0
  99. package/dist/fishnet/rpc-definitions/game/player-save/index.d.ts +1860 -0
  100. package/dist/fishnet/rpc-definitions/game/player-save/index.d.ts.map +1 -0
  101. package/dist/fishnet/rpc-definitions/game/player-save/session-character.d.ts +72 -0
  102. package/dist/fishnet/rpc-definitions/game/player-save/session-character.d.ts.map +1 -0
  103. package/dist/fishnet/rpc-definitions/game/player-save/social-account.d.ts +107 -0
  104. package/dist/fishnet/rpc-definitions/game/player-save/social-account.d.ts.map +1 -0
  105. package/dist/fishnet/rpc-definitions/game/player-save/vending.d.ts +98 -0
  106. package/dist/fishnet/rpc-definitions/game/player-save/vending.d.ts.map +1 -0
  107. package/dist/fishnet/rpc-definitions/game/skills-component.d.ts +453 -0
  108. package/dist/fishnet/rpc-definitions/game/skills-component.d.ts.map +1 -0
  109. package/dist/fishnet/rpc-definitions/game/status-component.d.ts +146 -0
  110. package/dist/fishnet/rpc-definitions/game/status-component.d.ts.map +1 -0
  111. package/dist/fishnet/rpc-definitions/game/summoning-component.d.ts +82 -0
  112. package/dist/fishnet/rpc-definitions/game/summoning-component.d.ts.map +1 -0
  113. package/dist/fishnet/rpc-definitions/generated/base-unit-controller.d.ts +76 -0
  114. package/dist/fishnet/rpc-definitions/generated/base-unit-controller.d.ts.map +1 -0
  115. package/dist/fishnet/rpc-definitions/generated/boss-grave-stone.d.ts +24 -0
  116. package/dist/fishnet/rpc-definitions/generated/boss-grave-stone.d.ts.map +1 -0
  117. package/dist/fishnet/rpc-definitions/generated/broadcasts.d.ts +20 -0
  118. package/dist/fishnet/rpc-definitions/generated/broadcasts.d.ts.map +1 -0
  119. package/dist/fishnet/rpc-definitions/generated/combat-component.d.ts +82 -0
  120. package/dist/fishnet/rpc-definitions/generated/combat-component.d.ts.map +1 -0
  121. package/dist/fishnet/rpc-definitions/generated/engine/network-animator.d.ts +18 -0
  122. package/dist/fishnet/rpc-definitions/generated/engine/network-animator.d.ts.map +1 -0
  123. package/dist/fishnet/rpc-definitions/generated/engine/network-transform.d.ts +67 -0
  124. package/dist/fishnet/rpc-definitions/generated/engine/network-transform.d.ts.map +1 -0
  125. package/dist/fishnet/rpc-definitions/generated/engine/predicted-owner.d.ts +11 -0
  126. package/dist/fishnet/rpc-definitions/generated/engine/predicted-owner.d.ts.map +1 -0
  127. package/dist/fishnet/rpc-definitions/generated/health-component.d.ts +157 -0
  128. package/dist/fishnet/rpc-definitions/generated/health-component.d.ts.map +1 -0
  129. package/dist/fishnet/rpc-definitions/generated/index.d.ts +10280 -0
  130. package/dist/fishnet/rpc-definitions/generated/index.d.ts.map +1 -0
  131. package/dist/fishnet/rpc-definitions/generated/loot-drop.d.ts +49 -0
  132. package/dist/fishnet/rpc-definitions/generated/loot-drop.d.ts.map +1 -0
  133. package/dist/fishnet/rpc-definitions/generated/manifest.d.ts +7 -0
  134. package/dist/fishnet/rpc-definitions/generated/manifest.d.ts.map +1 -0
  135. package/dist/fishnet/rpc-definitions/generated/monster-controller.d.ts +111 -0
  136. package/dist/fishnet/rpc-definitions/generated/monster-controller.d.ts.map +1 -0
  137. package/dist/fishnet/rpc-definitions/generated/move-component.d.ts +48 -0
  138. package/dist/fishnet/rpc-definitions/generated/move-component.d.ts.map +1 -0
  139. package/dist/fishnet/rpc-definitions/generated/player-controller.d.ts +3265 -0
  140. package/dist/fishnet/rpc-definitions/generated/player-controller.d.ts.map +1 -0
  141. package/dist/fishnet/rpc-definitions/generated/player-save.d.ts +5954 -0
  142. package/dist/fishnet/rpc-definitions/generated/player-save.d.ts.map +1 -0
  143. package/dist/fishnet/rpc-definitions/generated/prefabs.d.ts +119 -0
  144. package/dist/fishnet/rpc-definitions/generated/prefabs.d.ts.map +1 -0
  145. package/dist/fishnet/rpc-definitions/generated/skills-component.d.ts +230 -0
  146. package/dist/fishnet/rpc-definitions/generated/skills-component.d.ts.map +1 -0
  147. package/dist/fishnet/rpc-definitions/generated/status-component.d.ts +112 -0
  148. package/dist/fishnet/rpc-definitions/generated/status-component.d.ts.map +1 -0
  149. package/dist/fishnet/rpc-definitions/generated/summoning-component.d.ts +56 -0
  150. package/dist/fishnet/rpc-definitions/generated/summoning-component.d.ts.map +1 -0
  151. package/dist/fishnet/rpc-definitions/index.d.ts +10418 -0
  152. package/dist/fishnet/rpc-definitions/index.d.ts.map +1 -0
  153. package/dist/fishnet/rpc-definitions/prefabs.d.ts +112 -0
  154. package/dist/fishnet/rpc-definitions/prefabs.d.ts.map +1 -0
  155. package/dist/fishnet/rpc-resolution.d.ts +65 -0
  156. package/dist/fishnet/rpc-resolution.d.ts.map +1 -0
  157. package/dist/fishnet/semantic-definitions.d.ts +40 -0
  158. package/dist/fishnet/semantic-definitions.d.ts.map +1 -0
  159. package/dist/fishnet/semantic-map.d.ts +23 -0
  160. package/dist/fishnet/semantic-map.d.ts.map +1 -0
  161. package/dist/fishnet/session-decoder.d.ts +19 -0
  162. package/dist/fishnet/session-decoder.d.ts.map +1 -0
  163. package/dist/fishnet/spawn-parser.d.ts +25 -0
  164. package/dist/fishnet/spawn-parser.d.ts.map +1 -0
  165. package/dist/fishnet/types.d.ts +5 -0
  166. package/dist/fishnet/types.d.ts.map +1 -0
  167. package/dist/fishnet/wire-reader.d.ts +28 -0
  168. package/dist/fishnet/wire-reader.d.ts.map +1 -0
  169. package/dist/fishnet/wire-reader.js +140 -0
  170. package/dist/game-build.d.ts +5 -0
  171. package/dist/game-build.d.ts.map +1 -0
  172. package/dist/index.d.ts +26 -0
  173. package/dist/index.d.ts.map +1 -0
  174. package/dist/index.js +15413 -0
  175. package/dist/litenetlib/decoder.d.ts +7 -0
  176. package/dist/litenetlib/decoder.d.ts.map +1 -0
  177. package/dist/litenetlib/types.d.ts +58 -0
  178. package/dist/litenetlib/types.d.ts.map +1 -0
  179. package/dist/text-format.d.ts +4 -0
  180. package/dist/text-format.d.ts.map +1 -0
  181. package/dist/types.d.ts +53 -0
  182. package/dist/types.d.ts.map +1 -0
  183. package/package.json +36 -0
@@ -0,0 +1,393 @@
1
+ export declare const playerControllerGuildRpcs: readonly [{
2
+ readonly wireHash: 105;
3
+ readonly packetKind: "serverRpc";
4
+ readonly methodName: "Guild_Create_S";
5
+ readonly parameters: readonly [{
6
+ readonly name: "name";
7
+ readonly typeName: "System.String";
8
+ }];
9
+ }, {
10
+ readonly wireHash: 106;
11
+ readonly packetKind: "serverRpc";
12
+ readonly methodName: "Guild_Rename_S";
13
+ readonly parameters: readonly [{
14
+ readonly name: "name";
15
+ readonly typeName: "System.String";
16
+ }];
17
+ }, {
18
+ readonly wireHash: 107;
19
+ readonly packetKind: "serverRpc";
20
+ readonly methodName: "Guild_Disband_S";
21
+ readonly parameters: readonly [{
22
+ readonly name: "confirmName";
23
+ readonly typeName: "System.String";
24
+ }];
25
+ }, {
26
+ readonly wireHash: 108;
27
+ readonly packetKind: "serverRpc";
28
+ readonly methodName: "Guild_Invite_S";
29
+ readonly parameters: readonly [{
30
+ readonly name: "characterName";
31
+ readonly typeName: "System.String";
32
+ }];
33
+ }, {
34
+ readonly wireHash: 109;
35
+ readonly packetKind: "serverRpc";
36
+ readonly methodName: "Guild_InviteById_S";
37
+ readonly parameters: readonly [{
38
+ readonly name: "accountId";
39
+ readonly typeName: "System.String";
40
+ }];
41
+ }, {
42
+ readonly wireHash: 110;
43
+ readonly packetKind: "serverRpc";
44
+ readonly methodName: "Guild_AcceptInvite_S";
45
+ readonly parameters: readonly [{
46
+ readonly name: "guildId";
47
+ readonly typeName: "System.String";
48
+ }];
49
+ }, {
50
+ readonly wireHash: 111;
51
+ readonly packetKind: "serverRpc";
52
+ readonly methodName: "Guild_DeclineInvite_S";
53
+ readonly parameters: readonly [{
54
+ readonly name: "guildId";
55
+ readonly typeName: "System.String";
56
+ }];
57
+ }, {
58
+ readonly wireHash: 112;
59
+ readonly packetKind: "serverRpc";
60
+ readonly methodName: "Guild_Kick_S";
61
+ readonly parameters: readonly [{
62
+ readonly name: "characterId";
63
+ readonly typeName: "System.String";
64
+ }];
65
+ }, {
66
+ readonly wireHash: 113;
67
+ readonly packetKind: "serverRpc";
68
+ readonly methodName: "Guild_Leave_S";
69
+ }, {
70
+ readonly wireHash: 114;
71
+ readonly packetKind: "serverRpc";
72
+ readonly methodName: "Guild_LeaveAndPass_S";
73
+ readonly parameters: readonly [{
74
+ readonly name: "newMasterId";
75
+ readonly typeName: "System.String";
76
+ }];
77
+ }, {
78
+ readonly wireHash: 115;
79
+ readonly packetKind: "serverRpc";
80
+ readonly methodName: "Guild_Transfer_S";
81
+ readonly parameters: readonly [{
82
+ readonly name: "newMasterId";
83
+ readonly typeName: "System.String";
84
+ }];
85
+ }, {
86
+ readonly wireHash: 116;
87
+ readonly packetKind: "serverRpc";
88
+ readonly methodName: "Guild_SetMemberRank_S";
89
+ readonly parameters: readonly [{
90
+ readonly name: "charId";
91
+ readonly typeName: "System.String";
92
+ }, {
93
+ readonly name: "rankId";
94
+ readonly typeName: "System.String";
95
+ }];
96
+ }, {
97
+ readonly wireHash: 117;
98
+ readonly packetKind: "serverRpc";
99
+ readonly methodName: "Guild_EditRank_S";
100
+ readonly parameters: readonly [{
101
+ readonly name: "rankId";
102
+ readonly typeName: "System.String";
103
+ }, {
104
+ readonly name: "displayName";
105
+ readonly typeName: "System.String";
106
+ }, {
107
+ readonly name: "taxPercent";
108
+ readonly typeName: "System.Single";
109
+ }, {
110
+ readonly name: "permissions";
111
+ readonly typeName: "System.Int32";
112
+ }, {
113
+ readonly name: "storageAccess";
114
+ readonly typeName: "System.Int32";
115
+ }];
116
+ }, {
117
+ readonly wireHash: 118;
118
+ readonly packetKind: "serverRpc";
119
+ readonly methodName: "Guild_AddRank_S";
120
+ }, {
121
+ readonly wireHash: 119;
122
+ readonly packetKind: "serverRpc";
123
+ readonly methodName: "Guild_RemoveRank_S";
124
+ readonly parameters: readonly [{
125
+ readonly name: "rankId";
126
+ readonly typeName: "System.String";
127
+ }];
128
+ }, {
129
+ readonly wireHash: 120;
130
+ readonly packetKind: "serverRpc";
131
+ readonly methodName: "Guild_MoveRank_S";
132
+ readonly parameters: readonly [{
133
+ readonly name: "rankId";
134
+ readonly typeName: "System.String";
135
+ }, {
136
+ readonly name: "direction";
137
+ readonly typeName: "System.Int32";
138
+ }];
139
+ }, {
140
+ readonly wireHash: 121;
141
+ readonly packetKind: "serverRpc";
142
+ readonly methodName: "Guild_SpendSkill_S";
143
+ readonly parameters: readonly [{
144
+ readonly name: "nodeId";
145
+ readonly typeName: "System.String";
146
+ }];
147
+ }, {
148
+ readonly wireHash: 122;
149
+ readonly packetKind: "serverRpc";
150
+ readonly methodName: "Guild_SetNotice_S";
151
+ readonly parameters: readonly [{
152
+ readonly name: "shortMsg";
153
+ readonly typeName: "System.String";
154
+ }, {
155
+ readonly name: "longMsg";
156
+ readonly typeName: "System.String";
157
+ }];
158
+ }, {
159
+ readonly wireHash: 123;
160
+ readonly packetKind: "serverRpc";
161
+ readonly methodName: "Guild_SetDiscord_S";
162
+ readonly parameters: readonly [{
163
+ readonly name: "url";
164
+ readonly typeName: "System.String";
165
+ }];
166
+ }, {
167
+ readonly wireHash: 124;
168
+ readonly packetKind: "serverRpc";
169
+ readonly methodName: "Guild_StorageTransaction_S";
170
+ readonly parameters: readonly [{
171
+ readonly name: "transaction";
172
+ readonly typeName: "Transaction";
173
+ }];
174
+ }, {
175
+ readonly wireHash: 125;
176
+ readonly packetKind: "serverRpc";
177
+ readonly methodName: "Guild_OpenStorage_S";
178
+ }, {
179
+ readonly wireHash: 126;
180
+ readonly packetKind: "serverRpc";
181
+ readonly methodName: "Guild_CloseStorage_S";
182
+ }, {
183
+ readonly wireHash: 127;
184
+ readonly packetKind: "serverRpc";
185
+ readonly methodName: "Guild_SetEmblem_S";
186
+ readonly parameters: readonly [{
187
+ readonly name: "index";
188
+ readonly typeName: "System.Int32";
189
+ }];
190
+ }, {
191
+ readonly wireHash: 128;
192
+ readonly packetKind: "serverRpc";
193
+ readonly methodName: "Guild_SetCustomEmblem_S";
194
+ readonly parameters: readonly [{
195
+ readonly name: "png";
196
+ readonly typeName: "System.Byte[]";
197
+ }];
198
+ }, {
199
+ readonly wireHash: 129;
200
+ readonly packetKind: "serverRpc";
201
+ readonly methodName: "Guild_RequestEmblem_S";
202
+ readonly parameters: readonly [{
203
+ readonly name: "guildId";
204
+ readonly typeName: "System.String";
205
+ }];
206
+ }, {
207
+ readonly wireHash: 130;
208
+ readonly packetKind: "serverRpc";
209
+ readonly methodName: "Guild_SetNameColor_S";
210
+ readonly parameters: readonly [{
211
+ readonly name: "hex";
212
+ readonly typeName: "System.String";
213
+ }];
214
+ }, {
215
+ readonly wireHash: 131;
216
+ readonly packetKind: "serverRpc";
217
+ readonly methodName: "Guild_SetMuted_S";
218
+ readonly parameters: readonly [{
219
+ readonly name: "muted";
220
+ readonly typeName: "System.Boolean";
221
+ }];
222
+ }, {
223
+ readonly wireHash: 132;
224
+ readonly packetKind: "serverRpc";
225
+ readonly methodName: "Guild_SetRecruitment_S";
226
+ readonly parameters: readonly [{
227
+ readonly name: "mode";
228
+ readonly typeName: "System.Int32";
229
+ }, {
230
+ readonly name: "message";
231
+ readonly typeName: "System.String";
232
+ }];
233
+ }, {
234
+ readonly wireHash: 133;
235
+ readonly packetKind: "serverRpc";
236
+ readonly methodName: "Guild_Apply_S";
237
+ readonly parameters: readonly [{
238
+ readonly name: "guildId";
239
+ readonly typeName: "System.String";
240
+ }, {
241
+ readonly name: "message";
242
+ readonly typeName: "System.String";
243
+ }];
244
+ }, {
245
+ readonly wireHash: 134;
246
+ readonly packetKind: "serverRpc";
247
+ readonly methodName: "Guild_CancelApplication_S";
248
+ readonly parameters: readonly [{
249
+ readonly name: "guildId";
250
+ readonly typeName: "System.String";
251
+ }];
252
+ }, {
253
+ readonly wireHash: 135;
254
+ readonly packetKind: "serverRpc";
255
+ readonly methodName: "Guild_AcceptApplication_S";
256
+ readonly parameters: readonly [{
257
+ readonly name: "applicantCharId";
258
+ readonly typeName: "System.String";
259
+ }];
260
+ }, {
261
+ readonly wireHash: 136;
262
+ readonly packetKind: "serverRpc";
263
+ readonly methodName: "Guild_RejectApplication_S";
264
+ readonly parameters: readonly [{
265
+ readonly name: "applicantCharId";
266
+ readonly typeName: "System.String";
267
+ }];
268
+ }, {
269
+ readonly wireHash: 137;
270
+ readonly packetKind: "serverRpc";
271
+ readonly methodName: "Guild_Browse_S";
272
+ readonly parameters: readonly [{
273
+ readonly name: "query";
274
+ readonly typeName: "System.String";
275
+ }, {
276
+ readonly name: "page";
277
+ readonly typeName: "System.Int32";
278
+ }];
279
+ }, {
280
+ readonly wireHash: 138;
281
+ readonly packetKind: "serverRpc";
282
+ readonly methodName: "Guild_RequestPending_S";
283
+ }, {
284
+ readonly wireHash: 139;
285
+ readonly packetKind: "serverRpc";
286
+ readonly methodName: "Guild_RequestAuditLog_S";
287
+ readonly parameters: readonly [{
288
+ readonly name: "page";
289
+ readonly typeName: "System.Int32";
290
+ }];
291
+ }, {
292
+ readonly wireHash: 140;
293
+ readonly packetKind: "serverRpc";
294
+ readonly methodName: "Guild_RequestPresence_S";
295
+ }, {
296
+ readonly wireHash: 141;
297
+ readonly packetKind: "targetRpc";
298
+ readonly methodName: "GuildStorageLockResult_T";
299
+ readonly parameters: readonly [{
300
+ readonly name: "acquired";
301
+ readonly typeName: "System.Boolean";
302
+ }, {
303
+ readonly name: "holderName";
304
+ readonly typeName: "System.String";
305
+ }];
306
+ }, {
307
+ readonly wireHash: 142;
308
+ readonly packetKind: "targetRpc";
309
+ readonly methodName: "GuildStorageLockExpired_T";
310
+ }, {
311
+ readonly wireHash: 143;
312
+ readonly packetKind: "targetRpc";
313
+ readonly methodName: "GuildStorageTransactionFailed_T";
314
+ readonly parameters: readonly [{
315
+ readonly name: "msg";
316
+ readonly typeName: "System.String";
317
+ }];
318
+ }, {
319
+ readonly wireHash: 144;
320
+ readonly packetKind: "targetRpc";
321
+ readonly methodName: "UpdateGuild_T";
322
+ readonly parameters: readonly [{
323
+ readonly name: "guild";
324
+ readonly typeName: "GuildData";
325
+ }];
326
+ }, {
327
+ readonly wireHash: 145;
328
+ readonly packetKind: "targetRpc";
329
+ readonly methodName: "GuildEmblemResult_T";
330
+ readonly parameters: readonly [{
331
+ readonly name: "guildId";
332
+ readonly typeName: "System.String";
333
+ }, {
334
+ readonly name: "stamp";
335
+ readonly typeName: "System.String";
336
+ }, {
337
+ readonly name: "png";
338
+ readonly typeName: "System.Byte[]";
339
+ }];
340
+ }, {
341
+ readonly wireHash: 146;
342
+ readonly packetKind: "targetRpc";
343
+ readonly methodName: "GuildInvite_T";
344
+ readonly parameters: readonly [{
345
+ readonly name: "guildId";
346
+ readonly typeName: "System.String";
347
+ }, {
348
+ readonly name: "guildName";
349
+ readonly typeName: "System.String";
350
+ }, {
351
+ readonly name: "inviterName";
352
+ readonly typeName: "System.String";
353
+ }];
354
+ }, {
355
+ readonly wireHash: 147;
356
+ readonly packetKind: "targetRpc";
357
+ readonly methodName: "GuildBrowseResults_T";
358
+ readonly parameters: readonly [{
359
+ readonly name: "entries";
360
+ readonly typeName: "GuildBrowseEntry[]";
361
+ }, {
362
+ readonly name: "page";
363
+ readonly typeName: "System.Int32";
364
+ }];
365
+ }, {
366
+ readonly wireHash: 148;
367
+ readonly packetKind: "targetRpc";
368
+ readonly methodName: "GuildPendingResults_T";
369
+ readonly parameters: readonly [{
370
+ readonly name: "entries";
371
+ readonly typeName: "GuildBrowseEntry[]";
372
+ }];
373
+ }, {
374
+ readonly wireHash: 149;
375
+ readonly packetKind: "targetRpc";
376
+ readonly methodName: "GuildAuditResults_T";
377
+ readonly parameters: readonly [{
378
+ readonly name: "entries";
379
+ readonly typeName: "GuildAuditEntry[]";
380
+ }, {
381
+ readonly name: "page";
382
+ readonly typeName: "System.Int32";
383
+ }];
384
+ }, {
385
+ readonly wireHash: 150;
386
+ readonly packetKind: "targetRpc";
387
+ readonly methodName: "GuildPresenceResults_T";
388
+ readonly parameters: readonly [{
389
+ readonly name: "presence";
390
+ readonly typeName: "GuildMemberPresence[]";
391
+ }];
392
+ }];
393
+ //# sourceMappingURL=guild.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"guild.d.ts","sourceRoot":"","sources":["../../../../../src/fishnet/rpc-definitions/game/player-controller/guild.ts"],"names":[],"mappings":"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"}
@@ -0,0 +1,23 @@
1
+ export declare class PlayerControllerRpcDefinition {
2
+ private constructor();
3
+ static readonly typeName = "PlayerController";
4
+ static readonly syncTypes: readonly [{
5
+ readonly index: 5;
6
+ readonly name: "VisualData";
7
+ readonly typeName: "CharacterVisualDto";
8
+ readonly fields: readonly [{
9
+ readonly name: "Appearance";
10
+ readonly typeName: "CharacterAppearanceDto";
11
+ readonly fields: readonly [{
12
+ readonly name: "DisplayName";
13
+ readonly typeName: "System.String";
14
+ readonly codec: "stringUtf8Packed";
15
+ }, {
16
+ readonly name: "Archetype";
17
+ readonly typeName: "Archetype";
18
+ readonly codec: "packedInt32";
19
+ }];
20
+ }];
21
+ }];
22
+ }
23
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../src/fishnet/rpc-definitions/game/player-controller/index.ts"],"names":[],"mappings":"AAEA,qBAAa,6BAA6B;IACxC,OAAO,eAAiB;IAExB,MAAM,CAAC,QAAQ,CAAC,QAAQ,sBAAsB;IAC9C,MAAM,CAAC,QAAQ,CAAC,SAAS;wBAEZ,CAAC;uBACF,YAAY;2BACR,oBAAoB;;2BAGpB,YAAY;+BACR,wBAAwB;;+BAGxB,aAAa;mCACT,eAAe;gCAClB,kBAAkB;;+BAGnB,WAAW;mCACP,WAAW;gCACd,aAAa;;;OAMwB;CAC3D"}
@@ -0,0 +1,168 @@
1
+ export declare const playerControllerPartyRpcs: readonly [{
2
+ readonly wireHash: 40;
3
+ readonly packetKind: "serverRpc";
4
+ readonly methodName: "SendPartyInvite";
5
+ readonly parameters: readonly [{
6
+ readonly name: "playerId";
7
+ readonly typeName: "System.String";
8
+ }];
9
+ }, {
10
+ readonly wireHash: 41;
11
+ readonly packetKind: "serverRpc";
12
+ readonly methodName: "RequestJoinParty";
13
+ readonly parameters: readonly [{
14
+ readonly name: "partyId";
15
+ readonly typeName: "System.Int32";
16
+ }];
17
+ }, {
18
+ readonly wireHash: 42;
19
+ readonly packetKind: "targetRpc";
20
+ readonly methodName: "ShowPartyInvite_T";
21
+ readonly parameters: readonly [{
22
+ readonly name: "inviterName";
23
+ readonly typeName: "System.String";
24
+ }, {
25
+ readonly name: "inviterId";
26
+ readonly typeName: "System.String";
27
+ }];
28
+ }, {
29
+ readonly wireHash: 43;
30
+ readonly packetKind: "targetRpc";
31
+ readonly methodName: "ShowJoinRequest_T";
32
+ readonly parameters: readonly [{
33
+ readonly name: "requesterName";
34
+ readonly typeName: "System.String";
35
+ }, {
36
+ readonly name: "requesterId";
37
+ readonly typeName: "System.String";
38
+ }, {
39
+ readonly name: "partyId";
40
+ readonly typeName: "System.Int32";
41
+ }];
42
+ }, {
43
+ readonly wireHash: 44;
44
+ readonly packetKind: "serverRpc";
45
+ readonly methodName: "AcceptPartyInvite";
46
+ readonly parameters: readonly [{
47
+ readonly name: "inviterId";
48
+ readonly typeName: "System.String";
49
+ }];
50
+ }, {
51
+ readonly wireHash: 45;
52
+ readonly packetKind: "serverRpc";
53
+ readonly methodName: "AcceptPartyRequestJoin";
54
+ readonly parameters: readonly [{
55
+ readonly name: "requesterId";
56
+ readonly typeName: "System.String";
57
+ }, {
58
+ readonly name: "partyId";
59
+ readonly typeName: "System.Int32";
60
+ }];
61
+ }, {
62
+ readonly wireHash: 46;
63
+ readonly packetKind: "serverRpc";
64
+ readonly methodName: "DeclinePartyInvite";
65
+ readonly parameters: readonly [{
66
+ readonly name: "inviterId";
67
+ readonly typeName: "System.String";
68
+ }];
69
+ }, {
70
+ readonly wireHash: 47;
71
+ readonly packetKind: "serverRpc";
72
+ readonly methodName: "DeclinePartyRequestJoin";
73
+ readonly parameters: readonly [{
74
+ readonly name: "requesterId";
75
+ readonly typeName: "System.String";
76
+ }, {
77
+ readonly name: "partyId";
78
+ readonly typeName: "System.Int32";
79
+ }];
80
+ }, {
81
+ readonly wireHash: 48;
82
+ readonly packetKind: "serverRpc";
83
+ readonly methodName: "CreateParty";
84
+ }, {
85
+ readonly wireHash: 49;
86
+ readonly packetKind: "serverRpc";
87
+ readonly methodName: "LeaveParty_S";
88
+ }, {
89
+ readonly wireHash: 50;
90
+ readonly packetKind: "targetRpc";
91
+ readonly methodName: "UpdateParty_T";
92
+ readonly parameters: readonly [{
93
+ readonly name: "party";
94
+ readonly typeName: "Party";
95
+ }];
96
+ }, {
97
+ readonly wireHash: 51;
98
+ readonly packetKind: "serverRpc";
99
+ readonly methodName: "KickFromParty";
100
+ readonly parameters: readonly [{
101
+ readonly name: "playerId";
102
+ readonly typeName: "System.String";
103
+ }];
104
+ }, {
105
+ readonly wireHash: 52;
106
+ readonly packetKind: "serverRpc";
107
+ readonly methodName: "PromotePartyLeader";
108
+ readonly parameters: readonly [{
109
+ readonly name: "playerId";
110
+ readonly typeName: "System.String";
111
+ }];
112
+ }, {
113
+ readonly wireHash: 53;
114
+ readonly packetKind: "serverRpc";
115
+ readonly methodName: "SetPartyName";
116
+ readonly parameters: readonly [{
117
+ readonly name: "value";
118
+ readonly typeName: "System.String";
119
+ }];
120
+ }, {
121
+ readonly wireHash: 54;
122
+ readonly packetKind: "serverRpc";
123
+ readonly methodName: "SetPartyExp";
124
+ readonly parameters: readonly [{
125
+ readonly name: "value";
126
+ readonly typeName: "PartyShareType";
127
+ }];
128
+ }, {
129
+ readonly wireHash: 55;
130
+ readonly packetKind: "serverRpc";
131
+ readonly methodName: "SetPartyDrops";
132
+ readonly parameters: readonly [{
133
+ readonly name: "value";
134
+ readonly typeName: "PartyShareType";
135
+ }];
136
+ }, {
137
+ readonly wireHash: 56;
138
+ readonly packetKind: "serverRpc";
139
+ readonly methodName: "SetPartyLevelRange";
140
+ readonly parameters: readonly [{
141
+ readonly name: "min";
142
+ readonly typeName: "System.Int32";
143
+ }, {
144
+ readonly name: "max";
145
+ readonly typeName: "System.Int32";
146
+ }];
147
+ }, {
148
+ readonly wireHash: 57;
149
+ readonly packetKind: "serverRpc";
150
+ readonly methodName: "SetPartyPublic";
151
+ readonly parameters: readonly [{
152
+ readonly name: "value";
153
+ readonly typeName: "System.Boolean";
154
+ }];
155
+ }, {
156
+ readonly wireHash: 58;
157
+ readonly packetKind: "serverRpc";
158
+ readonly methodName: "RequestPartyList_S";
159
+ }, {
160
+ readonly wireHash: 59;
161
+ readonly packetKind: "targetRpc";
162
+ readonly methodName: "RequestPartyList_T";
163
+ readonly parameters: readonly [{
164
+ readonly name: "items";
165
+ readonly typeName: "System.Collections.Generic.List`1[[Party, Assembly-CSharp, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]]";
166
+ }];
167
+ }];
168
+ //# sourceMappingURL=party.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"party.d.ts","sourceRoot":"","sources":["../../../../../src/fishnet/rpc-definitions/game/player-controller/party.ts"],"names":[],"mappings":"AAEA,eAAO,MAAM,yBAAyB;uBAEtB,EAAE;yBACA,WAAW;yBACX,iBAAiB;;uBAGnB,UAAU;2BACN,eAAe;;;uBAKnB,EAAE;yBACA,WAAW;yBACX,kBAAkB;;uBAGpB,SAAS;2BACL,cAAc;;;uBAKlB,EAAE;yBACA,WAAW;yBACX,mBAAmB;;uBAGrB,aAAa;2BACT,eAAe;;uBAGnB,WAAW;2BACP,eAAe;;;uBAKnB,EAAE;yBACA,WAAW;yBACX,mBAAmB;;uBAGrB,eAAe;2BACX,eAAe;;uBAGnB,aAAa;2BACT,eAAe;;uBAGnB,SAAS;2BACL,cAAc;;;uBAKlB,EAAE;yBACA,WAAW;yBACX,mBAAmB;;uBAGrB,WAAW;2BACP,eAAe;;;uBAKnB,EAAE;yBACA,WAAW;yBACX,wBAAwB;;uBAG1B,aAAa;2BACT,eAAe;;uBAGnB,SAAS;2BACL,cAAc;;;uBAKlB,EAAE;yBACA,WAAW;yBACX,oBAAoB;;uBAGtB,WAAW;2BACP,eAAe;;;uBAKnB,EAAE;yBACA,WAAW;yBACX,yBAAyB;;uBAG3B,aAAa;2BACT,eAAe;;uBAGnB,SAAS;2BACL,cAAc;;;uBAKlB,EAAE;yBACA,WAAW;yBACX,aAAa;;uBAGf,EAAE;yBACA,WAAW;yBACX,cAAc;;uBAGhB,EAAE;yBACA,WAAW;yBACX,eAAe;;uBAGjB,OAAO;2BACH,OAAO;;;uBAKX,EAAE;yBACA,WAAW;yBACX,eAAe;;uBAGjB,UAAU;2BACN,eAAe;;;uBAKnB,EAAE;yBACA,WAAW;yBACX,oBAAoB;;uBAGtB,UAAU;2BACN,eAAe;;;uBAKnB,EAAE;yBACA,WAAW;yBACX,cAAc;;uBAGhB,OAAO;2BACH,eAAe;;;uBAKnB,EAAE;yBACA,WAAW;yBACX,aAAa;;uBAGf,OAAO;2BACH,gBAAgB;;;uBAKpB,EAAE;yBACA,WAAW;yBACX,eAAe;;uBAGjB,OAAO;2BACH,gBAAgB;;;uBAKpB,EAAE;yBACA,WAAW;yBACX,oBAAoB;;uBAGtB,KAAK;2BACD,cAAc;;uBAGlB,KAAK;2BACD,cAAc;;;uBAKlB,EAAE;yBACA,WAAW;yBACX,gBAAgB;;uBAGlB,OAAO;2BACH,gBAAgB;;;uBAKpB,EAAE;yBACA,WAAW;yBACX,oBAAoB;;uBAGtB,EAAE;yBACA,WAAW;yBACX,oBAAoB;;uBAGtB,OAAO;2BACH,oHAAoH;;EAIpF,CAAC"}