0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

雀魂 観戦ロビーの肉球マークとPマーク

Last updated at Posted at 2022-10-01

スクリプトの利用は、自己責任でお願いします。

雀魂の観戦ロビーの「友人がいる対戦のみ表示」にチェックを入れたとき、認証マーク 1 の付いた雀士がいる対戦を含むようにするスクリプトです。開発者ツールで実行できます。

uiscript.UI_Ob.Inst.onShowDataChange = function() {
    this.scrollview.reset();
    this.live_show_datas = !this.check_friend.visible
        ? this.live_datas
        : this.live_datas.filter(match => match.players.some(player =>
            game.FriendMgr.find(player.account_id) || player.verified
        ));
    this.noinfo.visible = !this.live_show_datas.length;
    this.scrollview.addItem(this.live_show_datas.length);
};

ゲームを再起動するか、次のコードを実行すると、元の状態に戻ります。

delete uiscript.UI_Ob.Inst.onShowDataChange;

認証マークが付与されたアカウント一覧(非公式)を掲載します。

  1. にくきゅうま~く 🐾 と プロ雀士認証マーク 𝙋 です。

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?