Shinko to Kuma

Still Going Strong
Reaction score
776
Author
Shinko to Kuma
Contributors
Sass
Quickbar Entry
javascript:
$.getScript('https://dl.dropboxusercontent.com/s/rgi2mdfxatawek5/villageNotesFinder.js');
Public?
Public
Approved! Ticket nr. t13651662 at 2020-01-22 11:11:04

Heya all, back with another script! (I know fml)

This one is pretty helpful to clean up the map when things are getting too cluttered, or if you want a quick view of what you all have out there.
It will collect all the village notes on the entire world for you, and your tribemates, and display them in one handy table, with reports in spoilerboxes properly working
It also allows you to remove your OWN notes. This also works on mobile browser, but, since there is no quickbar on the app when you use the map, doesn't work on mobile app :/

Screenshots/video:
V3ZahFl.png

Script:


Code:
javascript:
$.getScript('https://dl.dropboxusercontent.com/s/rgi2mdfxatawek5/villageNotesFinder.js');

As always, feel free to leave feedback, ask questions, or anything

- Sophie
 
Last edited:
Upvote 7

Celaethon

Non-stop Poster
Reaction score
220
Would it be possible to have village notes filtered by specific word/player name? It takes a while to find what you're looking for when there's +500 village notes
 

jaro

Active Member
Reaction score
6
Approved! Ticket nr. t13651662 at 2020-01-22 11:11:04

Heya all, back with another script! (I know fml)

This one is pretty helpful to clean up the map when things are getting too cluttered, or if you want a quick view of what you all have out there.
It will collect all the village notes on the entire world for you, and your tribemates, and display them in one handy table, with reports in spoilerboxes properly working
It also allows you to remove your OWN notes. This also works on mobile browser, but, since there is no quickbar on the app when you use the map, doesn't work on mobile app :/

Screenshots/video:
V3ZahFl.png

Script:


Code:
javascript:
$.getScript('https://dl.dropboxusercontent.com/s/rgi2mdfxatawek5/villageNotesFinder.js');

As always, feel free to leave feedback, ask questions, or anything

- Sophie
still working? it seems that doenst work :(
 

natanprog

Member
Reaction score
11
Please @Shinko to Kuma add these lines to the script, to work on the .BR server


Diff:
22a23,26
>     },
>     "pt_BR": {
>     "player": "Jogador:",
>     "coord": "Coordenadas:"
118c122
<         if ($(blabla).find("td:contains('Player:')").length != 0) {
---
>         if ($(blabla).find("td:contains('"+langShinko[game_data.locale]["player"]+"')").length != 0) {
 

Shinko to Kuma

Still Going Strong
Reaction score
776
Please @Shinko to Kuma add these lines to the script, to work on the .BR server


Diff:
22a23,26
>     },
>     "pt_BR": {
>     "player": "Jogador:",
>     "coord": "Coordenadas:"
118c122
<         if ($(blabla).find("td:contains('Player:')").length != 0) {
---
>         if ($(blabla).find("td:contains('"+langShinko[game_data.locale]["player"]+"')").length != 0) {

Done ^^
 

Deleted User - 848999858

Guest
Please add the following to add support for the german server:
"de_DE": {
"player": "Spieler:",
"coord": "Koordinaten:"
}

Also, to easily share reports in the notes to other players, I modifiied the script for myself to show report links in a seperate column (Only works for own notes).
Maybe this could be added the script aswell.
Grabbing the report link;
thisVillaReport = $(blabla).find(".edit_notes_row")[0].children[0].children[1].innerHTML;
if(thisVillaReport.includes("[report_display]")) {
thisVillaReport = thisVillaReport.substring(thisVillaReport.indexOf("[report_display]") + 16,thisVillaReport.indexOf("[/report_display]"));
}
else {
thisVillaReport = "";
}
 

RedAlert

Senior In-Game Staff
Tribal Wars Team
Senior
Team
Script Moderator
Reaction score
623
Script host is down, that is why is not working anymore.

However, this feature has been integrated in-game so a script that shows all your notes might not be needed anymore.

In order to see all your notes and/or notes shared with you from other players, you have to go on the Map then right below the minimap you will see this:

Screenshot_1.png

Then just click on the "See Village Notes" link.
 
Top