ML-Client-Py: Item Names client sided

This commit is contained in:
rtw1x1
2026-01-21 01:52:03 +00:00
parent 15721cf142
commit 2c682c624b
17 changed files with 77 additions and 20 deletions

View File

@@ -1796,6 +1796,15 @@ class GameWindow(ui.ScriptWindow):
return
chat.AppendChat(chat.CHAT_TYPE_INFO, localeInfo.NOTIFY_MESSAGE[type])
def BINARY_ItemGet(self, itemName, itemCount):
chat.AppendChat(chat.CHAT_TYPE_INFO, localeInfo.ITEM_GET(itemName))
def BINARY_ItemGetFromParty(self, itemName, fromName, itemCount):
chat.AppendChat(chat.CHAT_TYPE_INFO, localeInfo.ITEM_GET_FROM_PARTY((fromName, itemName)))
def BINARY_ItemDeliverToParty(self, itemName, toName, itemCount):
chat.AppendChat(chat.CHAT_TYPE_INFO, localeInfo.ITEM_DELIVER_TO_PARTY((toName, itemName)))
def BINARY_Guild_EnterGuildArea(self, areaID):
self.interface.BULID_EnterGuildArea(areaID)