Map/Coord Graphic map overlay

Reidarm

New Member
Reaction score
6
Author
Reidarm
Contributors
N/A
Quickbar Entry
javascript:$.getScript("https://pastebin.com/raw/v48LM0th")
Public?
Public
Approved today ticket nr. t13937193.


Brings back the old graphic map.

Code:
JavaScript:
javascript:$.getScript("https://pastebin.com/raw/v48LM0th")

For customization about graphic or classic:
JavaScript:
javascript:

TWMap.graphics = "https://dsen.innogamescdn.com/asset/ef232b3/graphic//map//version2/"; //graphic
//TWMap.graphics = "https://dsgr.innogamescdn.com/asset/d25bbc6/graphic//map/"; //clasic
$("img[id^='map_village']").each(function() {
    var backline = this.src.split("/");
    backline = backline[backline.length -1];
    this.src = TWMap.graphics+ backline;
});

Screenshots:
d9d0464569ea1497258e16a7167e1b2a.png


Known issue:
- Once loaded some villages might be blank.
- Not same color on grass after villages has been changed
- Some issues have been detected when not using chrome.


Any questions please message me.
 
Last edited:
Upvote 2

oreg

New Member
Reaction score
2
Hey,

what was the url of night graphics? It does not work in night bonus.
 

Deleted User - 11283139

Guest
If you guys want a better version without any missing/blank image and with the same color on grass :

PHP:
javascript:

//recent version
//TWMap.graphics = "https://media.innogames.com/com_DS_FR/mapAssets/recent/";

//old version
TWMap.graphics = "https://media.innogames.com/com_DS_FR/mapAssets/veryOld/";
TWMap.reload();

And yes it doesn't work during the night, anyway you should deactivate the night graphics from settings because they are disgusting^^
 
Top