虚弱0 度精华0阅读权限30在线时间70 小时
|
- local MAP_LIST = require('Scripts\\MapConfig')
- local JEWEL_CONFIG = require('Scripts\\JewelConfig')
- function PickItem_OnUserItemPick(aIndex, slot, map, x, y, ItemIndex, ItemLevel, ItemOption1, ItemOption2, ItemOption3, ItemNewOption)
-
- local mapName = MAP_LIST[map] or "未知地图"
- local itemName = JEWEL_CONFIG.ID_TO_NAME[ItemIndex]
-
- if itemName then
- local ItemInfo = string.format("地图: %s丨坐标x: %d丨坐标y: %d丨打到了: %s", mapName, x, y, itemName)
- NoticeGlobalSend(0, ItemInfo)
- endd
-
- return 1
- end
复制代码
 |
|