Not a bug: Mass Village Rename Script now working

  • Thread starter DeletedUser2944
  • Start date

DeletedUser2944

Guest
  1. Summary of the issue (title of the post)

    The script for renaming villages doesn't work.

  2. Overview of the bug (description):
    When I try to use the script nothing happens

  3. Steps to reproduce:
    open the combined overview and try to run the mass village rename script

  4. Reproduction rate (Every time? Sometimes?):

    everytime
  5. Browser and Version:

    Chrome 33.0.1750.146
  6. Visual Reference if available (Screenshot) please put them in a spoiler.:


  7. Player name and market for rewards:
    djblood- beta
 

DeletedUser2376

Guest
Scripts are written by Tribal Wars players, it's not InnoGames's responsibility to maintain them and therefore this is not a bug.
Anyway, below is a script I've made and it's working on this version. You could try it if you want:

Code:
javascript:var text='test';
 function redenumire(){$('.rename-icon').each(function(contor){index = contor < 9 ? '00'+(contor+1) : contor < 99 ? '0'+(contor+1) : (contor+1);$(this).click().click(); 
 $(this).parent().next().children().val(index+' '+text); $(this).parent().next().children().next().click()} )
 }redenumire()
You should replace test with whatever text you want.
 
Last edited by a moderator:
Top