Перейти к содержанию

Неудачи с Тор патчером помогите разобрать что да как?


Fizik

Рекомендуемые сообщения

Дело такое) Долго он отказывал мне в траектории ) Сейчас он просто молчит... Он не патчит вообще но и не пишет некаких ошибок Помогите разобраться почему

вот МAİN


//Thor Patcher remote config file
[Main]
//Allow patching or not?
allow=true

//Should patcher ignore everything else and finish patch immediately?
Force_Start=false

//if not, what message should appear?
policy_msg=Server is taking a nap.

//file_url - patch files should ALL put here.
// This config entry will override the one in embed config.
// o HTTP:
// http://domain.com/dir/
// o FTP:
// ftp://domain.com/dir/
// o With <Username> [Password] [Port]
// ftp://username:password@domain.com:port/dir/
// o Note: username is required if want put password, otherwise everything is optional.
file_url=http://192.168.1.100/patcher/data/

[Patch]
//use CheckSum tool, hash for client & patcher
// used to make sure exe is up to date
// (leave empty to disable this feature)
ClientSum=
PatcherSum=


//This is compressed file for patcher & client update
// To make these work, ClientSum and/or PatcherSum can't be empty
// Note: these files should put same place as patch file (file_url in internal config)
//Relative address, not FULL URL!
ClientPath=
PatcherPath=

// Patch list file
PatchList=plist.txt

[Stars]
// Shining o.O (Anyways, its for start button clones)
// Since orignal client has check sum.. why not for clones? XD


//How many? (it should same as amount of start button clone, but of course it's your choice)
clients=0

// _sum - checksum, use CheckSum tool.
//client1_sum=
// _Name - Filename of exe
//client1_Name=
// _Path - Path for file [Compressed]
//client1_Path=

[Misc]
//Set a limit for fragment, when reach this limit, patcher will ask user to defrag
FragmentLimit=50

А вот конфиг



// Thor Patcher Internal Config File
// Note: any entry leaves as blank will use default value

// True = 1
// False = 0
// Note that true or 1 both works fine (that's why I put "=")

[URL]
//base_url - everything except patch files will read from here
//The address should point to a directory with / at end
//
// example:
// http://domain.com/patch/
// NOT
// http://domain.com/patch
//
base_url= http://192.168.1.100/patcher/

//notice_file - [Relative Address]
//You should able to access this file by combine base_url & notice_file
notice_file=index.html

//core_file - [Relative Address]
//this internal config file only store whats required,
//but core_file is a remote config file that stores on your web host
core_file=main.ini

//TimeOut - timeout of connection in seconds
//0 is default setting, leave it as 0 unless you know what you are doing!
TimeOut=0

//=============================
// File below is on local disk
//=============================
[Local]
//status_file - [Relative Address]
//It used to store information such as last patch id etc,
status_file=tiamatro.dat

//grf_file - [Relative Address]
grf_file=tiamatro.grf

//client_file - [Relative Address]
//It's GAME EXE not patcher's
client_file=Tiamat-Ro Launcher

//client_parameter - [Self Explained]
client_parameter=-1rag1 -1sak1

//---------------------------------------------------------------------------------
//
// Below are advanced settings, it is not required to change for patcher to work
//
//---------------------------------------------------------------------------------

//=============================
// Custom Skin controls
//=============================
[Skin]
//windows_autosize - if set to 1, window size will automatically adjust depend on content size
windows_autosize=false

//windows_mode - How should window presented?
// None - Borderless window
// Single - Window cannot resized
// Sizeable - ... what it says, however it can not resize when windows_autosize set to true or 1
window_style=none

// Width and Height of window
//windows_autosize set to false or 0 for this to work
// Min: 1 Max: 10000 (I don't think you would need that large)
window_width=498
window_height=500

// If set to true, user able to drag window by click images (background)
// recommended to true especially for boarderless window
window_handle_move=true

// Image for background (DOES NOT READ FROM DIRECTORY OF PATCHER, the config packer will put image inside patcher too)
// Support : jpg bmp
// Note : patcher determine image format by filename extension, use with care!
background_file=images/NameRO.jpg

//New style of progress bar, it used image.
//WARNING: HIGH CPU USAGE
NewProgressBar=False

//Image of progress bar(only when ProgressBar set to true; BMP, JPG, PNG are supported)
ProgressBar_back=
ProgressBar_front=

// size of progress bar? (only when NewProgressBar set to false)
progress_bar_width=312
progress_bar_height=14

// Position of progress bar
progress_bar_left=9
progress_bar_top=475

//Custom progress bar color
//Use hexadecimal of RGB [eg. #4C7D7E]
//Color for back of progress bar.
progress_bar_backcolor=79adc5
progress_bar_backcolor_end=4d8daa

//Color for front of progress bar.
progress_bar_barcolor=fbc879
progress_bar_barcolor_end=fadbab

// Status message width (showing current status)
// no height
status_width=498

// Text alignment
// Left , Center , Right
status_alignment=left

// Position
status_left=10
status_top=474

//Color for status, in hexadecimal of RGB [eg. #123456]
status_color=ffffff

// control notice (News box? Mini web browser? you name it)
notice_width=305
notice_height=330
notice_left=14
notice_top=64

// For start button
start_normal=images/startBTN.png
start_hover=images/startBTNhover.png
start_down=images/startBTN.png

start_left=9
start_top=410

// For Exit button
exit_normal=images/exitBTN.png
exit_hover=images/exitBTNhover.png
exit_down=images/exitBTN.png

exit_left=180
exit_top=410

// for cancel button
cancel_normal=images/exitBTN.png
cancel_hover=images/exitBTNhover.png
cancel_down=images/exitBTN.png

cancel_left=426
cancel_top=230


// How many custom buttons you want to create?
// Can create up to 255 buttons (Plenty enough)
buttons=4

// - Custom buttons -
//As you can see below, it's not that hard to make custom buttons
//the number after "button" is id(depends on how many you set in buttons)

// _normal - image file when button is in normal status
//button1_normal=images/minimize.png
// _hover - image file when user hover on it
//button1_hover=images/minimizehover.png
// _down - image file when user mouse down on it
//button1_down=images/minimize.png
// _left/_top - position of button
//button1_left=556
//button1_top=10
// _mode - mode for button
// 0 = open URL
// 1 = Launch file/program
// 2 = Message box
// 3 = Minimize
// 4 = Close patcher
// 5 = Start button clone
//button1_mode=3
// _action - depend on what you set in _mode, this may vary
// ex. _mode = 0 , _action=http://google.com
// which makes user open that URL address after click that button
//button1_action=
// Parameter - Currently only used in "Start button clone"
//button1_parameter=

// _normal - image file when button is in normal status
//button2_normal=images/close.png
// _hover - image file when user hover on it
//button2_hover=images/closehover.png
// _down - image file when user mouse down on it
//button2_down=images/close.png
// _left/_top - position of button
//button2_left=576
//button2_top=10
// _mode - mode for button
// 0 = open URL
// 1 = Launch file/program
// 2 = Message box
// 3 = Minimize
// 4 = Close patcher
// 5 = Start button clone
//button2_mode=4
// _action - depend on what you set in _mode, this may vary
// ex. _mode = 0 , _action=http://google.com
// which makes user open that URL address after click that button
//button2_action=
// Parameter - Currently only used in "Start button clone"
//button1_parameter=

//Custom Buttons


//Donation Button
button1_normal=images/donateBTN.png
button1_hover=images/donateBTNhover.png
button1_down=images/donateBTN.png
button1_left=340
button1_top=110
button1_mode=0
button1_action=http://name-ro.sytes.net/cp2/?module=account&action=login&return_url=%2Fcp2%2F%3Fmodule%3Ddonate

//Register Button
button2_normal=images/registerBTN.png
button2_hover=images/registerBTNhover.png
button2_down=images/registerBTN.png
button2_left=340
button2_top=60
button2_mode=0
button2_action=http://name-ro.sytes.net/cp2/?module=account&action=create

//Close Button
button3_normal=images/closeBTN.png
button3_hover=images/closeBTNhover.png
button3_down=images/closeBTN.png
button3_left=470
button3_top=10
button3_mode=4

//Minimize Button
button4_normal=images/minimizeBTN.png
button4_hover=images/minimizeBTNhover.png
button4_down=images/minimizeBTN.png
button4_left=455
button4_top=13
button4_mode=3
//End Of Custom Buttons

[BGM]
//Background music, leave blank to disable (mp3/mid/wav)
//Side note: Personally, I don't like background music in this kind situation, so think about players.
bgm=

//Loop play background music? (play over and over)
BGMLoop=False

//BGM Volume (1-100)
// Recommended value: 40-60 [Respect player's ears please]
// Default: 50
Volume=50

//Note: This will override "bgm" entry when set!
//When set, patcher will scan all mp3 in specific directory (use relative path)
//It will random choose one when launch
//eg. BGM/
BGMDir=

[Misc]
//Set to true if you want patcher allow to start game when unable to connect webserver
Continue On Connection Fail=False

//What will the window title called?
Title=Tiamat-Ro Patcher

//Set this to true if you love to see similar effect in RO when dragging window.
// (Semi transparent effect)
// Note: Does not apply to window title yet.
// Not recommended for average users.
Fadeondrag=false

Изменено пользователем Fizik
Ссылка на комментарий
Поделиться на другие сайты

plist.txt покажи. А еще смущает это:


//client_file - [Relative Address]
//It's GAME EXE not patcher's
client_file=Tiamat-Ro Launcher

Нету расширения, непонятно в общем..

  • Upvote 1
Ссылка на комментарий
Поделиться на другие сайты

plist.txt покажи. А еще смущает это:


//client_file - [Relative Address]
//It's GAME EXE not patcher's
client_file=Tiamat-Ro Launcher

Нету расширения, непонятно в общем..

А это не екзе))) Поэтому нету расширения ЕХЕ))))) Проблема пахоже решена) Вместо табов в патчлисте пробелы надо было)

Изменено пользователем Fizik
Ссылка на комментарий
Поделиться на другие сайты

×
×
  • Создать...
Яндекс.Метрика