@@ -4,6 +4,8 @@ This repository contains all client-side data, including locale files, configura
|
|||||||
|
|
||||||
## 📋 Changelog
|
## 📋 Changelog
|
||||||
|
|
||||||
|
### 🐛 Bug fixes
|
||||||
|
* **UI:** Recovered the quest scroll icon flashing
|
||||||
|
|
||||||
### ⬆️ Feature Improvements
|
### ⬆️ Feature Improvements
|
||||||
* **Large maps updated:** Updated the images for the Large map for Threeway, Milgyo, Fireland and Ice mountain maps
|
* **Items & Mobs:** Started implementing Nemere's Watchtower dungeon. Added some missing items and made a few corrections (en & gr locales only)
|
||||||
* **Updated the environment:** Added the bridge and Fire dungeon entrance in Fireland. Added the Ice dungeon entrance in Ice mountain. Updated the Grotto of Exile entrance in Threeway. Updated the terrain around the Devil's Catacomb in Milgyo.
|
|
||||||
|
|||||||
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
@@ -1298,16 +1298,25 @@ class Interface(object):
|
|||||||
# QUEST_LETTER_IMAGE
|
# QUEST_LETTER_IMAGE
|
||||||
## Quest image replacement
|
## Quest image replacement
|
||||||
import item
|
import item
|
||||||
if "item"==iconType:
|
|
||||||
item.SelectItem(int(iconName))
|
|
||||||
buttonImageFileName=item.GetIconImageFileName()
|
|
||||||
else:
|
|
||||||
buttonImageFileName=iconName
|
|
||||||
|
|
||||||
btn.SetUpVisual(buttonImageFileName)
|
# MR-7: Fix quest letter icon flashing
|
||||||
btn.SetOverVisual(buttonImageFileName)
|
if "item" == iconType:
|
||||||
btn.SetDownVisual(buttonImageFileName)
|
item.SelectItem(int(iconName))
|
||||||
btn.Flash()
|
buttonImageFileName = item.GetIconImageFileName()
|
||||||
|
else:
|
||||||
|
buttonImageFileName = iconName
|
||||||
|
|
||||||
|
if "highlight" == iconType:
|
||||||
|
btn.SetUpVisual("locale/ymir_ui/highlighted_quest.tga")
|
||||||
|
btn.SetOverVisual("locale/ymir_ui/highlighted_quest_r.tga")
|
||||||
|
btn.SetDownVisual("locale/ymir_ui/highlighted_quest_r.tga")
|
||||||
|
else:
|
||||||
|
btn.SetUpVisual(localeInfo.GetLetterCloseImageName())
|
||||||
|
btn.SetOverVisual(localeInfo.GetLetterOpenImageName())
|
||||||
|
btn.SetDownVisual(localeInfo.GetLetterOpenImageName())
|
||||||
|
|
||||||
|
btn.Flash()
|
||||||
|
# MR-7: -- END OF -- Fix quest letter icon flashing
|
||||||
# END_OF_QUEST_LETTER_IMAGE
|
# END_OF_QUEST_LETTER_IMAGE
|
||||||
|
|
||||||
if app.IsRTL():
|
if app.IsRTL():
|
||||||
|
|||||||
Reference in New Issue
Block a user