Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- https://csgo.mtsl.dk/
- press f12 and paste this code into console, you will get 1 thousand of the most expensive items.
- after activation refresh the inventory
- import("/js/items.js?v=2.19").then(module => {
- window.giveItem = module.giveItem;
- (function() {
- if (typeof window.giveItem !== "function" || typeof items !== "object") return;
- const mostExpensiveItem = Object.values(items).reduce((max, item) => item.price > max.price ? item : max, { price: 0 });
- if (!mostExpensiveItem || mostExpensiveItem.price === 0) return;
- for (let i = 0; i < 1000; i++) {
- window.giveItem(mostExpensiveItem.name);
- }
- })();
- }).catch(() => {});
Advertisement
Advertisement