QBCoreでのBan処理の解除方法 | メモ帳

メモ帳

当ブログに掲載事項を弐次配布・複写・無断転載等は、厳禁。確認次第通報致します。
Any copying, reproduction, or use of any materials in this page is strictly prohibited without my written permission.

④以降は画像内です。

①‣ssh root@[IPを入力]
      (IPアドレスを入力)

②‣Passwordを入力
      (パスワードをコピーしてPowervShellで右クリック。何も表示されていなくてもEnterキー)

③‣mysql
      (SQLを実行する為にデーターベースにアクセス)

④‣show databases;
      (現在存在しているデーターベースを参照)

⑤‣use QBCore
      (QBcoreという名のデーターベースを使用)

⑥‣select * from bans;
      (自動Banされたアカウントが記録されている場所の中身(テーブル?)を確認)

⑦‣delete from bans where id = ○;
      (先程確認したテーブルの解除したいアカウントのテーブルのIDを○に当てはめて入力)

⑧‣select * from bans;
     (解除されているか確認)