搜索
查看: 328|回复: 8

[已关闭] 20240202客户端显示

 关闭 [复制链接]
发表于 2024-3-3 14:52:47 | 显示全部楼层 |阅读模式
BUG反馈
引擎版本号: 20240202
登陆器版本号: 20240202
BUG描述: 1、客户端物品掉落名字颜色设置无效。
--物品掉落回调
function on_DropItem(x, y, looks, color, effectId, name, expand1, dbIdx, count, seeMode, filterConfig)
if expand1 > 0 then
return {showName = name.."(小极品)", color = 245}
end
end

2、 能不能让--物品掉落回调 的显示设置优先于内挂设置:内挂没有设置显示名字 或者 极品提示 。

3、 如果2不好操作 能不能增加一个快捷键 快速显示地上所有物品名字
BUG重现方式: 1、客户端物品掉落名字颜色设置无效。
--物品掉落回调
function on_DropItem(x, y, looks, color, effectId, name, expand1, dbIdx, count, seeMode, filterConfig)
if expand1 > 0 then
return {showName = name.."(小极品)", color = 245}
end
end

2、 能不能让--物品掉落回调 的显示设置优先于内挂设置:内挂没有设置显示名字 或者 极品提示 。

3、 如果2不好操作 能不能增加一个快捷键 快速显示地上所有物品名字
修复后应达到的效果: 1、客户端物品掉落名字颜色设置无效。
--物品掉落回调
function on_DropItem(x, y, looks, color, effectId, name, expand1, dbIdx, count, seeMode, filterConfig)
if expand1 > 0 then
return {showName = name.."(小极品)", color = 245}
end
end

2、 能不能让--物品掉落回调 的显示设置优先于内挂设置:内挂没有设置显示名字 或者 极品提示 。

3、 如果2不好操作 能不能增加一个快捷键 快速显示地上所有物品名字
联系QQ: 隐藏内容
1、客户端物品掉落名字颜色设置无效。
--物品掉落回调
function on_DropItem(x, y, looks, color, effectId, name, expand1, dbIdx, count, seeMode, filterConfig)
    if expand1 > 0 then
        return {showName = name.."(小极品)", color = 245}
    end
end


2、 能不能让--物品掉落回调 的显示设置优先于内挂设置:内挂没有设置显示名字 或者  极品提示 。  

3、 如果2不好操作 能不能增加一个快捷键  快速显示地上所有物品名字


本帖子中包含更多资源

您需要 登录 才可以下载或查看,没有账号?立即注册

x
发表于 2024-3-3 16:29:23 | 显示全部楼层
登录器配置器勾选按数据库显示物品颜色
发表于 2024-3-3 16:58:58 | 显示全部楼层
显示物品快捷键一直都有,esc还是~你试试
发表于 2024-3-3 17:31:27 | 显示全部楼层
自己的写法有问题.   物品显示需要调用服务器的返回值, 当服务器判定极品数值. 才能在地面增加你需要的颜色和名字,包括加光柱

补充内容 (2024-3-3 17:33):
这属于毛线bug   强行给bug吗
发表于 2024-3-3 17:47:28 | 显示全部楼层
function on_DropItem(x, y, looks, color, effectId, name, expand1, dbIdx, count, seeMode)
        local d_item = c.item.getDBItem(dbIdx)       
        local _std = d_item:getStdMode()
        local sta={[5]=0,[6]=0,[19]=0,[20]=0,}
        local _T={"攻速","幸运"}
        local _st={
                [5]={"幸运","暴击","强度","攻速","准确","诅咒","","刺术","道术","魔法","攻击",},
                [6]={"幸运","暴击","强度","攻速","准确","诅咒","","刺术","道术","魔法","攻击",},
                [19]={"","","","","","躲避","幸运","刺术","道术","魔法","攻击",},
                [20]={"","","","","","准确","敏捷","刺术","道术","魔法","攻击",},
                [99]={"","","","","","物防","魔防","刺术","道术","魔法","攻击",}
        }
        local itype={11000,10000,9000,8000,7000,6000,5000,4000,3000,2000,1000}
        local nts=""
        local tab={}
        local Mxv=0
        local smg=0
        if _st[_std] then tab=_st[_std] else tab=_st[99] end
        local _s={['攻速']=0,['幸运']=0,['道术']=0,['魔法']=0,['攻击']=0}
        if _SM[expand1] then
                smg=1
                local _k=_SM[expand1]               
                return {showName = name.."【".._k.mg.."】",color = 251,effectId = k4[_k.id]}
        end
        if smg==0 then for i,k in pairs(itype) do if expand1 >= k then nts,expand1=tab[i],expand1-k break end end end
        if nts~="" and _s[nts] then
                local _c=expand1
                if nts==_T[1] or nts==_T[2] then
                        if nts==_T[1] and _c > 0 then return {showName = name.."【"..nts.."+".._c.."】", color = 254,effectId = k2[_c]} end
                        if nts==_T[2] and _c > 0 then return {showName = name.."【"..nts.."+".._c.."】", color = 253,effectId = k1[_c]} end
                else
                        if _c > 0 then return {showName = name.."【"..nts.."+".._c.."】", color = 250,effectId = k3[_c]} end
                end
        end
               
end
 楼主| 发表于 2024-3-3 21:56:33 | 显示全部楼层
天青色 发表于 2024-3-3 17:31
自己的写法有问题.   物品显示需要调用服务器的返回值, 当服务器判定极品数值. 才能在地面增加你需要的颜色 ...

引擎说明书写法 能怎样?
 楼主| 发表于 2024-3-3 21:57:01 | 显示全部楼层
怪怪 发表于 2024-3-3 16:58
显示物品快捷键一直都有,esc还是~你试试

ESC  ,,,,,我设置成了其他快捷键 尴尬
 楼主| 发表于 2024-3-3 22:07:15 | 显示全部楼层
天青色 发表于 2024-3-3 17:47
function on_DropItem(x, y, looks, color, effectId, name, expand1, dbIdx, count, seeMode)
        local d_it ...

能看看你只设置极品装备显示变色的截图吗?
发表于 2024-3-5 23:21:06 | 显示全部楼层
没有变色,应该是配置器上没勾选按数据库显示物品颜色导致的,内挂中没配置这个物品显示,强制显示好吗?
您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

手机版|小黑屋|HGEM2论坛

GMT+8, 2024-11-22 23:10 , Processed in 0.596383 second(s), 17 queries .

Powered by Discuz! X3.4

Copyright © 2001-2023, Tencent Cloud.

快速回复 返回顶部 返回列表