- 精華
- 閱讀權限
- 90
- 好友
- 相冊
- 分享
- 聽衆
- 收聽
- 注冊时间
- 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. 重进游戏
注意昵稱千萬不要輸錯啊,輸錯了後面的邏輯都是有問題的!
关于修改新秀擂台每日挑战次数可以在宝湾論壇里搜索,很容易能搜到的。
|
|