Advertisement
Sibbjshishssi

Cheat for https://csgo.mtsl.dk/

Mar 2nd, 2025 (edited)
202
0
Never
1
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. https://csgo.mtsl.dk/
  2. press f12 and paste this code into console, you will get 1 thousand of the most expensive items.
  3. after activation refresh the inventory
  4.  
  5.  
  6.  
  7. import("/js/items.js?v=2.19").then(module => {
  8.     window.giveItem = module.giveItem;
  9.  
  10.     (function() {
  11.         if (typeof window.giveItem !== "function" || typeof items !== "object") return;
  12.  
  13.         const mostExpensiveItem = Object.values(items).reduce((max, item) => item.price > max.price ? item : max, { price: 0 });
  14.  
  15.         if (!mostExpensiveItem || mostExpensiveItem.price === 0) return;
  16.  
  17.         for (let i = 0; i < 1000; i++) {
  18.             window.giveItem(mostExpensiveItem.name);
  19.         }
  20.     })();
  21. }).catch(() => {});
  22.  
Advertisement
Comments
Add Comment
Please, Sign In to add comment
Advertisement