UID82582
帖子
精華
主題
積分405
現金
積極性
威望
違規
熱心
推廣次數
閱讀權限5
註冊時間2008-4-24
在線時間 小時
最後登錄1970-1-1
TA的每日心情 | 慵懶 2022-2-26 10:05 PM |
---|
簽到天數: 81 天 連續簽到: 1 天 [LV.6]常住居民II
|

樓主 |
發表於 2011-9-19 07:10:15
|
顯示全部樓層
回復 2# 阿鈞
<?php//////////////////////////////////////////////////////////////
// Ragnarok Online Control Panel - Kuraun CP //
// Version: v1.1 (2010/11/21) //
// 源碼來源: Federico Ram甏ez (fedekiller - www.php4all.org)//
// 源碼源檔: BlackRO //
// 漢化:Kuraun (Kuraun技術流 - Kuraun.uni.cc //
// 技術支援:Kuraun (Kuraun技術流 - Kuraun.uni.cc //
// 分站:http://blog.yam.com/kuraun
//
// 更新支援:Kuraun (Kuraun技術流 - Kuraun.uni.cc //
// 分站:http://blog.yam.com/kuraun
//
// 風格支援:Kuraun (Kuraun技術流 - Kuraun.uni.cc //
// 分站:http://blog.yam.com/kuraun
//
// RO私服相關漢化,模擬器漢化,腳本漢化 Kuraun.uni.cc //
// 分站:http://blog.yam.com/kuraun
//
//////////////////////////////////////////////////////////////
if (!eregi("index.php", $_SERVER['PHP_SELF']))
{
die ("You can't access this file directly...");
}
$config_sql_host = 'bluetheworld.no-ip.org'; // Sql Host Name 資料庫IP (必須和私服設定相同)
$config_sql_user = 'XXXXX(帳號)'; // Sql Username 資料庫帳號 (必須和私服設定相同)
$config_sql_pass = 'AAAAA(密碼)'; // Sql Password 資料庫密碼 (必須和私服設定相同)
$config_sql_db = 'ragnarok'; // Sql Database Name 資料庫名稱 (必須和私服設定相同)
mysql_connect($config_sql_host, $config_sql_user, $config_sql_pass) or die ($lang['con_error']);
mysql_select_db($config_sql_db);
$config_language = 'chinese'; // 語系檔 目前僅支援繁體中文(BIG5)
$config_server_name = '私服'; //伺服器名稱
$config_site_title = '註冊網頁'; // 網站標題
$config_data_download_1 = 'http://vspace.cc/file/PVHRTA86KCKW8G9K.html'; //私服補丁網址1 請務必加上http://
$config_data_download_2 = 'http://vspace.cc/file/PVHRTA86KCKW8G9K.html'; //私服補丁網址2 (需要使用請把 // 去除)
$config_data_download_3 = 'http://vspace.cc/file/9XFSC2CZB3CG295Y.html'; //私服更新檔網址 (需要使用請把 // 去除)
$config_server_ip = 'bluetheworld.no-ip.org'; // no-ip or numeric ip 私服ip
$config_server_port['Login'] = '6900'; // Login Server Port **請勿更動
$config_server_port['Char'] = '6121'; // Char Server Port **請勿更動
$config_server_port['Map'] = '5121'; // Map Server Port **請勿更動
$config_gzip = true; // Allow GZIP. Change to false to deny it.
$config_gzip_lvl = '6'; // Level of compression for html, Max lvl 9.
$config_debug_mode = false; // Debug mode
?> |
|