| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475 |
- [
- {
- "enable": true,
- "name": "[请求] 地图交易所货柜解锁",
- "route": "map.player.exchangeSlotUnlock",
- "request": "I32",
- "@request": "货柜类型 1:出售,2:求购",
- "response": "I32I32",
- "@response": "Key: 货柜类型 Value: 已解锁的货柜数量",
- "desc": "返回已解锁的货柜数量"
- },
- {
- "enable": true,
- "name": "[请求] 获取资源的历史求购价格",
- "route": "map.player.exchangeHistoryPrice",
- "request": "I32",
- "@request": "物品ID",
- "response": "I32I32",
- "@response": "Key: 最低求购价 Value: 最高求购价",
- "desc": "地图交易所"
- },
- {
- "enable": true,
- "name": "[请求] 出售或求购商品",
- "route": "map.player.exchangeItem",
- "request": "ExchangeItem",
- "response": "ExchangeDetail",
- "desc": "地图交易所出售或求购商品"
- },
- {
- "enable": true,
- "name": "[请求] 购买商品",
- "route": "map.player.exchangeBuyItem",
- "request": "I32Str",
- "@request": "Key:数量 Value:流水号",
- "response": "ExchangeBuyResult",
- "desc": ""
- },
- {
- "enable": true,
- "name": "[请求] 根据条件查询地图交易所的商品列表",
- "route": "map.player.exchangeQuery",
- "request": "ExchangeQueryFilter",
- "response": "ExchangeDetailList",
- "desc": "条件筛选后请求分页查询地图交易所的商品列表"
- },
- {
- "enable": true,
- "name": "[请求] 获取自己的交易商品信息",
- "route": "map.player.exchangeMyItems",
- "request": "I32",
- "@request": "交易类型 1:出售,2:求购",
- "response": "MyExchangeItems",
- "desc": "获取自己的交易商品信息,包括已经下架的"
- },
- {
- "enable": true,
- "name": "[请求] 更新地图交易所商品",
- "route": "map.player.exchangeItemUpdate",
- "request": "I32Str",
- "@request": "Key:更新类型 1下架 2重新上架 3取回, Value:流水号",
- "response": "I32",
- "@response": "状态码",
- "desc": "玩家手动操作自己的商品:下架,重新上架,取回(如果是上架状态会先下架再取回)"
- },
- {
- "enable": true,
- "name": "[请求] 获取交易所日志",
- "route": "map.player.exchangeLog",
- "request": "I32I64",
- "@request": "Key:日志类型 1:购买,2:出售 Value: lastLogID = 0 拉取最新日志",
- "response": "ExchangeLogList",
- "desc": "根据lastLogID分段获取日志,每次拉取20条"
- }
- ]
|