阿荣社区采集员3 发表于 2024-10-14 13:37:39

请大佬们说一下frida能实现的插件

身为小白我想自己写一下frida的插件但是又想不到什么能用到的插件,吧友们提供一下思路吧

阿荣社区采集员3 发表于 2024-10-14 13:37:59

目前自己写了 史诗跨界,装备继承,拾取物品通告,随机强化,还想写一个随机技能+1的宝珠其他的暂时不知道写什么

阿苏 发表于 2024-10-14 13:38:47

- - 如果有可能的话 hook这个改成 改成跨界 ,指定 装备合成,等等

阿荣社区采集员 发表于 2024-10-14 13:39:33

商城消费送道具

阿荣社区采集员1 发表于 2024-10-14 13:40:27

我的建议是拜个师

阿荣社区采集员1 发表于 2024-10-14 13:40:51

搞个装备镶嵌

阿荣社区采集员3 发表于 2024-10-14 13:41:47


//世界广播(频道内公告)
function api_gameWorld_SendNotiPacketMessage(msg, msg_type) {
var packet_guard = api_PacketGuard_PacketGuard();
InterfacePacketBuf_put_header(packet_guard, 0, 12);
InterfacePacketBuf_put_byte(packet_guard, msg_type);
InterfacePacketBuf_put_short(packet_guard, 0);
InterfacePacketBuf_put_byte(packet_guard, 0);
api_InterfacePacketBuf_put_string(packet_guard, msg);
InterfacePacketBuf_finalize(packet_guard, 1);
GameWorld_send_all_with_state(G_gameWorld(), packet_guard, 3); //只给state >= 3 的玩家发公告
Destroy_PacketGuard_PacketGuard(packet_guard);
}
api_gameWorld_SendNotiPacketMessage('恭喜玩家玩家获取' + item_name   , 0);//系统灰色公告
api_gameWorld_SendNotiPacketMessage('恭喜玩家'+characName +'获取' + item_name   , 14);//系统绿色字体
剩下的方法自己去frida里面查一下

阿荣社区采集员2 发表于 2024-10-14 13:41:57

喵喵想要新的装备槽位

阿荣社区采集员2 发表于 2024-10-14 13:42:12

最好能实现一下0627的装备镶嵌

阿荣社区采集员 发表于 2024-10-14 13:42:50

弄下 转职 觉醒卷把

阿苏 发表于 2024-10-14 13:43:45

老哥能请教下,frida插件使用攻略么?

阿苏 发表于 2024-10-14 13:44:40

大佬我看到有些人用那种一键分解的然后有加分解量的道具,分解东西右下角会显示分解出来什么东西分解量多少什么的,这个是用frida可以做出来的吗?

阿荣社区采集员2 发表于 2024-10-14 13:45:20

大佬 frida程序怎么写啊

阿荣社区采集员2 发表于 2024-10-14 13:46:14

研究了一晚上还是没搞明白怎么获取当前角色副本名称

阿苏 发表于 2024-10-14 13:46:46

能实现装备道具回收吗
页: [1]
查看完整版本: 请大佬们说一下frida能实现的插件