雷霆传奇H5 清空指定玩家角色背包方法教程
雷霆传奇H5清空指定玩家的角色背包,已亲测可用
首先使用Navicat数据库管理工具连接
找到对应的区的数据库,如 actor1(根据你自己实际的库)
然后打开,找到里面的actors表,找到指定角色的 actorid
查询actorid字段 语句如下
select actorid , actorname from actors where actorname = '角色名';或
select actorid , accountname from actors where accountname = '账号';
然后得到id之后 打开items表 , 然后 执行语句 如下
delete from items where actorid = 查询到的actorid;
就清空了
页:
[1]