CowboySoberano

Esconder aldeias farmadas

Jun 9th, 2017
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. if(game_data.player.premium == false) {
  2.     UI.InfoMessage('Para utilizar esse script é necessário uma Conta Premium!', 3000, true);
  3.     end();
  4. }
  5.  
  6. if(game_data.screen != 'map'){
  7.     UI.InfoMessage('Script deve ser usado no mapa!', 3000, true);
  8.     end();
  9. }
  10.  
  11. setInterval(function(){
  12.     $("#map_container div:not('.map_border') img[id^='map_cmdicons_']").each(function(i,e) {
  13.         var aldeia = $(e).attr('id').replace('_0', '').replace('cmdicons', 'village');
  14.         $(e).remove();
  15.         $("#" + aldeia).remove();
  16.     });
  17. }, 1);
Add Comment
Please, Sign In to add comment