- 精华
- 阅读权限
- 80
- 好友
- 相册
- 分享
- 听众
- 收听
- 注册时间
- 2020-9-12
- 在线时间
- 小时
- 最后登录
- 1970-1-1
|
本帖最后由 q2430591974 于 2025-7-21 11:15 编辑
原本可以打新秀擂台,但是发现打着打着突然不能打了,这是因为你的新秀排名已经是第一了,没有可挑战的对手了,即使显示不是第1,那也是数据里的第1条,可以用这个办法解决。
1. 打开数据库客户端,比如navicat,打开你服务器的数据库连接。
2. 新建查询-打开命令窗口,输入一下内容,替换里面的昵称 '问天' 为你自己的昵称,全选执行
use dj_game_cur;
set @char_name='问天';
select char_id into @char_id from game_sns_characters where char_name=@char_name;
select ranklist_id, char_id into @npc_rank, @npc_id from game_common_cloned_battle_ranklist where is_npc=1 ORDER BY ranklist_id desc limit 1;
select ranklist_id into @my_rank_id from game_common_cloned_battle_ranklist where char_id=@char_id;
update game_common_cloned_battle_ranklist set char_id=@char_id,is_npc=0 where ranklist_id=@npc_rank;
update game_common_cloned_battle_ranklist set char_id=@npc_id,is_npc=1 where ranklist_id=@my_rank_id;
select max(ranklist_id) into @max_rank_id from game_common_cloned_battle_ranklist;
call game_copy_cloned_battle_award(@max_rank_id, @rst);
3. 重进游戏
注意昵称千万不要输错啊,输错了后面的逻辑都是有问题的!
关于修改新秀擂台每日挑战次数可以在宝湾论坛里搜索,很容易能搜到的。
|
|