Advertisement
Tikabum

Esconder Aldeias com Comandos (MAPA)

Jan 12th, 2020
155
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.83 KB | None | 0 0
  1. javascript://----------------------------------------------------------------
  2. //Projeto: Esconder Aldeias Farmadas
  3. //Autor: Paulo Pcappelli
  4. //Versão: 1.0 - 16/06/2015
  5. //Changelog:
  6. // > 1.0 - Lançamento
  7. //---------------------------------------------------------------
  8.  
  9. if(game_data.player.premium == false) {
  10. UI.InfoMessage('Para utilizar esse script é necessário uma Conta Premium!', 3000, true);
  11. end();
  12. }
  13.  
  14. if(game_data.screen != 'map'){
  15. UI.InfoMessage('Script deve ser usado no mapa!', 3000, true);
  16. end();
  17. }
  18.  
  19. setInterval(function(){
  20. $("#map_container div:not('.map_border') img[id^='map_cmdicons_']").each(function(i,e) {
  21. var aldeia = $(e).attr('id').replace('_0', '').replace('cmdicons', 'village');
  22. $(e).remove();
  23. $("#" + aldeia).remove();
  24. });
  25. }, 1);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement