-
Notifications
You must be signed in to change notification settings - Fork 187
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #226 from bcdice/remove-irc-2
IRC関連の処理、設定を削除する
- Loading branch information
Showing
12 changed files
with
23 additions
and
196 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,29 +1,16 @@ | ||
# -*- coding: utf-8 -*- | ||
|
||
require 'kconv' | ||
require 'configBcDiceForSystem.rb' | ||
|
||
$isDebug = false | ||
|
||
$bcDiceVersion = "2.06.01" | ||
|
||
# @deprecated IRCボット機能の削除に伴い廃止予定。 | ||
$SEND_STR_MAX = 405; # 最大送信文字数(本来は500byte上限) | ||
$isRollVoidDiceAtAnyRecive = true; # 発言の度に空ダイスを振るか? | ||
|
||
$DICE_MAXCNT = 200; # ダイスが振れる最大個数 | ||
$DICE_MAXNUM = 1000; # ダイスの最大面数 | ||
$ircCode = Kconv::UTF8; # IRCサーバとの通信に使うコードをRuby::Kconv値で指定 | ||
$isHandSort = true; # 手札をソートする必要があるか? | ||
$OPEN_DICE = 'Open Dice!'; # シークレットダイスの出目表示コマンド | ||
$OPEN_PLOT = 'Open Plot!'; # プロットの表示コマンド | ||
$ADD_PLOT = 'PLOT'; # プロットの入力コマンド | ||
$READY_CMD = '#HERE'; # 自分の居るチャンネルの宣言コマンド | ||
|
||
# $server = "localhost"; # サーバー | ||
$server = "irc.trpg.net"; # サーバー | ||
$port = 6667; # ポート番号 | ||
$defaultLoginChannelsText = "#Dice_Test"; # ボットが最初に参加するチャンネル名 | ||
$nick = "bcDICE" | ||
$userName = "v" + $bcDiceVersion # ユーザー名 | ||
$ircName = "rubydice"; # IRCネーム | ||
$defaultGameType = "" # デフォルトゲームタイプ | ||
$extraCardFileName = "" # 拡張カードファイル名 |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.