Advertisement
Nolifeq

Untitled

Jan 11th, 2022
50
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.01 KB | None | 0 0
  1. // ==UserScript==
  2. // @name ithan do thuzal bez tuzmer
  3. // @version 1
  4. // @author aff
  5. // @match https://tarhuna.margonem.pl/
  6. // ==/UserScript==
  7.  
  8. Wracaj = function(){
  9. let time
  10. if(map.name=='Ithan'){
  11. if (document.getElementById('dialog').style.cssText.includes("block")) {
  12. document.querySelectorAll('#replies li').forEach(dialog => {
  13. if (dialog.innerText.includes('Chciałem się teleportować.')) dialog.onclick();
  14. if (dialog.innerText.includes('Thuzal (5000 sztuk złota).')) dialog.onclick();
  15. });
  16. time = Math.floor(Math.random() * 250) + 500;
  17. }
  18. }
  19. }
  20. setInterval(Wracaj, 2000);
  21.  
  22. test = function(){
  23.  
  24. if (map.name=='Ithan'){
  25. hero.searchPath(56,25)
  26. }
  27. }
  28. setInterval(test, 100);
  29. test1 = function(){
  30.  
  31. if (hero.x == 56 && hero.y == 25){
  32. _g('talk&id=44099')
  33. }
  34. }
  35. setInterval(test1, 1000)
  36.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement