Quote:
Originally Posted by oorn
after new update i assume it has problems to detect Tomb of the Spider Queen map, hero will stay afk until get kicked out of the game. can you please tell us how to fix it ourselves?
|
No problem. You can reconfigure all maps.
Open sources file from archive (because elitepvpers broke sources in OP-post).
In sources you must find function with name GetMap() (Func GetMap()).
In this function you will find this line (all maps has it)
Code:
Local $aCoord = PixelSearch(380, 380, 390, 390, 0x4A5184, 1)
Each map has they own line. So in brackets first two digits is left upper corner of square and second one pair is right bottom corner of square.
Next one 0x4A5184 is code of color of one pixel in this square from map loadscreen image.
If bot in GetMap() function will find 0x4A5184 color in 380, 380, 390, 390 coords - it will return for example paramter 1 which means Hanamura map.
You need to find new color of pixel in this coords (380, 380, 390, 390) and put it instead of old one. Or you may edit coods.
Hard to me to describe on english. So ask me if you don't understand something.