Advertisement
Danetty

ocultar farmadas

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