steamutils 1.4.19 → 1.4.20
Sign up to get free protection for your applications and to get access to all the features.
- package/.idea/git_toolbox_blame.xml +6 -0
- package/SteamClient.js +16 -0
- package/package.json +1 -1
package/SteamClient.js
CHANGED
@@ -2245,6 +2245,21 @@ function SteamClient({ username, password, cookie, clientJsToken, isAutoRequestF
|
|
2245
2245
|
});
|
2246
2246
|
}
|
2247
2247
|
|
2248
|
+
function acknowledgePenalty() {
|
2249
|
+
steamClient._send(
|
2250
|
+
{
|
2251
|
+
msg: Protos.csgo.ECsgoGCMsg.k_EMsgGCCStrike15_v2_AcknowledgePenalty,
|
2252
|
+
proto: {
|
2253
|
+
steamid: steamClient.steamID.getSteamID64(),
|
2254
|
+
routing_appid: 730,
|
2255
|
+
},
|
2256
|
+
},
|
2257
|
+
protoEncode(Protos.csgo.CMsgGCCStrike15_v2_AcknowledgePenalty, {
|
2258
|
+
acknowledged: 1,
|
2259
|
+
}),
|
2260
|
+
);
|
2261
|
+
}
|
2262
|
+
|
2248
2263
|
return {
|
2249
2264
|
init,
|
2250
2265
|
partySearch,
|
@@ -2449,6 +2464,7 @@ function SteamClient({ username, password, cookie, clientJsToken, isAutoRequestF
|
|
2449
2464
|
},
|
2450
2465
|
redeemFreeReward,
|
2451
2466
|
requestJoinFriendData,
|
2467
|
+
acknowledgePenalty,
|
2452
2468
|
};
|
2453
2469
|
}
|
2454
2470
|
|