Counter Strike 2 Inspect Link Creator
This module is designed to create a link to inspect an item in CS2.
Installing
From npm:
npm install cs2-inspect-create
From yarn:
yarn add cs2-inspect-create
Usage
import {
generateHex,
generateLink,
generateGen,
Rarity,
itemIds,
skinIds,
stickerIds,
} from "cs2-inspect-create";
const link = generateLink({
defindex: itemIds["AK-47"],
paintindex: skinIds["Aquamarine Revenge"],
paintseed: 306,
paintwear: 0.6336590647697449,
rarity: Rarity.COVERT,
stickers: [
{
slot: 3,
stickerId: stickerIds["00 Nation | Rio 2022"],
wear: 0,
},
],
});
const hex = generateHex({
defindex: 7,
paintindex: 474,
paintseed: 306,
paintwear: 0.6336590647697449,
rarity: Rarity.COVERT,
stickers: [
{
slot: 3,
stickerId: 2,
wear: 0,
},
],
});
const gen = generateGen({
defindex: 7,
paintindex: 474,
paintseed: 306,
paintwear: 0.6336590647697449,
rarity: Rarity.COVERT,
stickers: [
{
slot: 3,
stickerId: 2,
wear: 0,
},
],
});