v1311 Serverımdan Resimler

  • Konbuyu başlatan Konbuyu başlatan Kernkraft
  • Başlangıç tarihi Başlangıç tarihi
Konu Yazar

Kernkraft

was here.
Eyl
723
23
Tüm skiller çalışmaktadır ve isimleri, açıklamaları düzgündür.
200972151654.jpg

200972162628.jpg

200972162850.jpg

20097216297.jpg

Chaotic generator sorunsuz (gibi) şimdilik sadece Sherion düşüyor. :p yakında bunu da düzeltirim.
200972163247.jpg

Warp Gate açıklamaları düzgündür. (Eskiden çinceydi)
200972172030.jpg

200972175055.jpg

EMC Warp Gate boştu (hiçbir yere ışınlanmıyordu), düzeltildi.
20097218225.jpg

Info bölümündeki yazılar çince değil.. Yazı tipi düzeltildi.
20097218350.jpg

200972151640.jpg


NPC isimlerinin ve tiplerinin USKO'yla aynı olması gibi yenilikler de var hepsini resme almadım :p
 
Cevap: v1311 Serverımdan Resimler

Bende connectte bekliyor inileri nasl ayarlıcaz ?

LoginServer

Kod:
#### PLEASE NOTE ##################################################
#                                                                 #
#  SECTIONS SURROUNDED BY "#"s ARE THERE TO EXPLAIN, IN DETAIL,   #
#  WHAT EACH SETTING IS USED FOR.                                 #
#                                                                 #
#  THE ACTUAL SECTION SETTINGS WILL FOLLOW SHORTLY AFTER EACH     #
#  SETTING'S EXPLANATION.                                         #
#                                                                 #
###################################################################

<Login 

#         Hostname or IP address the login server will listen on.
#         0.0.0.0 will listen on all interfaces, so if you don't
#         know, leave it as default!
          host = "0.0.0.0"

#         Port the login server listens on.
#         Default login server port: 15100
          port = "15100"

#         Defines the level of content that will be shown.
          LogLevel = "2"

#         Enable automated IP bans of potential "bad people"?
#         0 = No (only if you have problems)
#         1 = Yes
          AutoIPBanChecks="1"

#         Defines the period of time (in minutes) between full account reloads.
#         An account will not exist after a player has registered until an
#         accounts reload has been performed.
          ReloadPeriod = "3"

#         If you set the billing server to point to the login server from another
#         IP address, define it here. Otherwise, leave it as it is.
          Aujard = "127.0.0.1"

#         Use in-game news? To create news, use the "News Creator".
#         0 = No
#         1 = Yes
          UseIngameNews = "1"

#         Hi there! You're reading the configuration.
#         Set Die to 0.
          Die="0"

#         Enable auto-registration? (Registers an account on login if it does not exist)
#         0 = No
#         1 = Yes
          AutoRegister = "1"

#         If auto-registration is enabled, and you have any required columns
#         (columns that do not have a default value or do not have "Allow nulls" ticked)
#         in TB_USER, you must specify them here as a continuation of the existing query:
#
#         INSERT INTO TB_USER (strAccountID, strPassword<HERE>)
#         VALUES('user', 'pass'..);         
          AutoRegisterExtraColumns = ", strSocNo, iDays"

#         If auto-registration is enabled, and you have any required columns
#         (columns that do not have a default value or do not have "Allow nulls" ticked)
#         in TB_USER, you must specify their intended value here as a continuation of the 
#         existing query:
#
#         INSERT INTO TB_USER (strAccountID, strPassword..)
#         VALUES('user', 'pass'<HERE>);         
          AutoRegisterExtraValues = ", 1234, 6"

#         Use the new/1.310 server-list structure?
#         0 = No (for servers prior to 1.310)
#         1 = Yes (for 1.310 servers)
          NewServerList = "1">
      
<Database 

#         Your accounts database's datasource name
#         This is the entry in the ODBC configuration that you
#         have configured to point to the accounts database.
#
#         If you are using a single database setup (ie: KN_online),
#         you'll use the DSN that points to your only database.
#         
#         If you're unsure, just keep it default and hope it works. :P         
          dsn = "KN_online"

#         The SQL username that has access to your accounts database.
#         Default setups use "knight", so if you're unsure, just 
#         leave it as default and hope it works!
          user = "knight"

#         The password to the username above.
#         If unsure, please leave it default.
          pass = "knight"

#         There are two definitions for the VERSION table.
#         0 = Uses shortened column names, ie: compname
#         1 = Uses proper column names, ie: strCompressedName
#         The default applies to most setups.
          VersionTable = "1"

#         Hi there! You're reading the configuration.
#         Set Die to 0.
          Die="0"

#         Use a stored procedure to handle any custom stuff?
#         0 = No
#         1 = Yes
#         The login server already handles the login, so unless
#         you have any extreme need to call the stored procedure,
#         please leave it disabled!
          UseAccountLogin = "0"

#         The name of the stored procedure used by the above config
#         option.
          StoredProcedureName = "ACCOUNT_LOGIN"

#         Hash passwords from the client?
#         0 = No
#         1 = Yes
          HashPasswords = "0"

#         Hash them using what?
#         - "md5": Uses the in-built MD5 hasher.
#         - "sha1": Uses the in-built SHA1 hasher.
#         - "custom": Calls a custom T-SQL function, configured below.
          HashType = ""

#         If you are using the in-built MD5 or SHA1 hashers, you can
#         seed the password make things harder for hackers.
#         0 = No
#         1 = Yes
          SeedHashes = "0"

#         If the above is enabled, specify the seed here.
#         %s is the password, it MUST be kept in there somewhere.
#         The surrounding text is the seed - you can move %s to any
#         location inside that string.
          HashSeed = "seed%shere">

<FTP 

#        'URL' of the FTP server where the patches are hosted.
#         In ftp://ftp.your-site.net/abc/ the URL is ftp.your-site.net        
          url = "ftp.your-site.net"


#         Relative path from the URL. Directory where the patches are.
#         In ftp://ftp.your-site.net/abc/ the path is /abc/
          path ="/">

#### PLEASE NOTE ##################################################
#                                                                 #
# THIS SECTION SHOULD ONLY BE CONFIGURED IF "HashType" WAS SET TO #
# "custom" IN THE DATABASE CONFIGURATION BLOCK!                   #
#                                                                 #
# If you did not set it to "custom", then you may stop reading    #
# and save & close the configuration file! You are done!          #
#                                                                 #
# With that said...                                               #
#                                                                 #
# The hash function is called with the password as the first      #
# parameter.                                                      #
#                                                                 #
# Each of the parameters below will be called consecutively, and  #
# only in that order.                                             #
#                                                                 #
# If your function differs, please change the order of the        #
# parameters in your T-SQL function to copy how they appear here. #
#                                                                 #
# Order here:                                                     #
# 1. strPasswd                                                    #
# 2. strAccountID                                                 #
# 3. strClientIP                                                  #
#                                                                 #
# Example of a hash function                                      #
# This uses all parameters; you can disable account ID/IP below.  #
#                                                                 #
# CREATE FUNCTION MyHashFunc                                      #
# (                                                               #
#     @strPasswd    varchar(21),                                  #
#     @strAccountID varchar(21),                                  #
#     @strClientIP  varchar(15)                                   #
# ) RETURNS VARCHAR(1024)                                         #
# AS                                                              #
#                                                                 #
# You should also note that the maximum hash size is 1024 bytes,  #
# which should be more than enough for anybody!                   #
#                                                                 #
###################################################################
<HashFunction 

#         Name of the T-SQL hash function you want to call.
          Name = "MyVeryOwnHashFunction"

#         Pass account ID to function?
#         0 = No
#         1 = Yes
          AccountName = "0"

#         Pass client's IP address to function?
#         0 = No
#         1 = Yes
          IPAddress = "0">

AIServer
Kod:
[SERVER]
ZONE=1
PARTYEXP=3
GROUP=0

[ODBC]
GAME_DSN=KN_online
GAME_UID=knight
GAME_PWD=knight

Ebenezer

Kod:
[TIMER]
YEAR=27
MONTH=9
DATE=6
HOUR=3
WEATHER=1

[CASTLE]
NATION=3

[ZONE_INFO]
MY_INFO=1
SERVER_COUNT=4
SERVER_00=1
SERVER_IP_00=127.0.0.1
SERVER_01=2
SERVER_IP_01=127.0.0.1
SERVER_02=3
SERVER_IP_02=127.0.0.1
SERVER_03=4
SERVER_IP_03=127.0.0.1
SERVER_GROUP=0
SERVER_NUM=1
MAX_USER=1500

[BATTLE]
AUTO=1
WEEK=4
START_TIME=20
END_TIME=22
LIMITBATTLE=200
WEEK2=7
MWEEK=5

[AI_SERVER]
IP=127.0.0.1
ZONE=1

[ODBC]
GAME_DSN=KN_online
GAME_UID=knight
GAME_PWD=knight
Account_DSN=KN_online
Account_UID=knight
Account_PWD=knight

[SG_INFO]
SERVER_INDEX=1
SERVER_MERGE=0
GMY_INFO=1
GSERVER_COUNT=1
GSERVER_00=1
GSERVER_IP_00=127.0.0.1

[NATION]
NATION_ID=3

[FREE_ZONE]
MAX_USER=200

[EVENT]
EVENT_NUMBER=0

[MATURE_SETTING]
PK_PERMIT=0

[MONSTER_CHALLENGE]
ACTIVATE=1  
;1: on; 0: off
LEVEL=1

[BONUS_EVENT]
MONEY=0
EXP=0

[BEEF_ROAST]
STAGE=5
HOUR_MAX=5
HOUR1=1
HOUR2=5
HOUR3=13
HOUR4=17
HOUR5=21
HOUR6=30
HOUR7=30
HOUR8=30

Aujard

Kod:
[ODBC]
ACCOUNT_DSN=KN_online
ACCOUNT_UID=knight
ACCOUNT_PWD=knight
LOG_DSN=KN_online
LOG_UID=knight
LOG_PWD=knight
GAME_DSN=KN_online
GAME_UID=knight
GAME_PWD=knight

[SESSION]
IP1=127.0.0.1
IP2=127.0.0.1

[NATION]
NATION_ID=3

[ZONE_INFO]
GROUP_INFO=1
ZONE_INFO=1
SERVER_MERGE=0

[PREMIUM_ITEM]
ITEM_NUM1=15001
ITEM_NUM2=15000
 
Cevap: v1311 Serverımdan Resimler

Hayırlısı Olsun. Topu Topu 1453 e 142 patch kaldı... :p
 
Cevap: v1311 Serverımdan Resimler

Yorumlar için teşekkürler. Yakında yaptığım ilerlemeleri paylaşacağım. :p Çok yakın da olabilir.
 
Cevap: v1311 Serverımdan Resimler

Yorumlar için teşekkürler. Yakında yaptığım ilerlemeleri paylaşacağım. :p Çok yakın da olabilir.

Kernkraft ben sunucuya kuruyorum bunu, ini ler çok karışık nereyi dğeiştirip nereye değiştirmiceğimi bilemiyorum lütfen birz açarmısın konuyu
 
Cevap: v1311 Serverımdan Resimler

Kernkraft ben sunucuya kuruyorum bunu, ini ler çok karışık nereyi dğeiştirip nereye değiştirmiceğimi bilemiyorum lütfen birz açarmısın konuyu

Ini'ler en basit olay. Arama yaparak da bulabilirsin ama değiştirmen gereken yerler DB Adı, DB Kullanıcı adı, şifresi falan. Yani verdiğim ini'lerdeki "KN_Online", "knight", "knight" bölümlerini kendine göre değiştireceksin.
 
Cevap: v1311 Serverımdan Resimler

Ini'ler en basit olay. Arama yaparak da bulabilirsin ama değiştirmen gereken yerler DB Adı, DB Kullanıcı adı, şifresi falan. Yani verdiğim ini'lerdeki "KN_Online", "knight", "knight" bölümlerini kendine göre değiştireceksin.

Oraları ayarladımda, billing server'da 0.0.0.0 var orayı değiştircekmiyim aynı şekilde login serverdada var..
 
Cevap: v1311 Serverımdan Resimler

Oraları ayarladımda, billing server'da 0.0.0.0 var orayı değiştircekmiyim aynı şekilde login serverdada var..

Ben local'den açtığım için değiştirmedim ama sunucudan açarken sunucu IP'sini yazman gerekiyo olabilir. Tam bilmiyorum aslında bakarsan o olayı.
 
Cevap: v1311 Serverımdan Resimler

Yine Pleiades Yine Fark ( : Çok yakında mutlaka yeni başarılar elde edecektir . Eminiz ...
Paylaşımın için teşekkürler ...
 
Cevap: v1311 Serverımdan Resimler

yabancı forumlarda 1351 dosyaları adı altında linkler var gerçek olabilirmi ?
 
Son düzenleme:
Geri
Üst Alt