Skip to content

Latest commit

 

History

4 Commits

Folders and files

NameName
Last commit message
Last commit date
 
 

Repository files navigation

ic_cheat

cheat for infinite craft

1.create vm

var vm = document.querySelector('.container').__vue__;

2.run

simple 100 times

Array(100).fill().forEach(() => { const a = vm.elements[Math.floor(Math.random() * vm.elements.length)]; const b = vm.elements[Math.floor(Math.random() * vm.elements.length)]; console.log(`Crafting ${a.text} + ${b.text}`); vm.craft(a, b); });

fast fixed

(async () => { for (let i = 0; i < 1e6; i++) { await new Promise(resolve => setTimeout(resolve, 0)); const a = vm.elements[Math.floor(Math.random() * vm.elements.length)]; const b = vm.elements[Math.floor(Math.random() * vm.elements.length)]; vm.craft(a, b); } })();

не используйте это в плохих целях

About

ic_cheat

Resources

Stars

0 stars

Watchers

1 watching

Forks

Releases

Packages

Contributors