Welcome!

Join our community of MMO enthusiasts and game developers! By registering, you'll gain access to discussions on the latest developments in MMO server files and collaborate with like-minded individuals. Join us today and unlock the potential of MMO server development!

Join Today!

Black Rogue auto update fix

Initiate Mage
Joined
May 20, 2015
Messages
3
Reaction score
3
So, some of you may know that the auto update in Black Rogue files doesn't work, when you make an update which contains more than 4 files. The launcher doesn't start updating and the start button doesn't appear.
There are a couple tricks to get it working, but a few months ago I found the real fix.


Simply add this in server.cfg, under GatewayServer:


CONCURRENT_OVERLAP_COUNT 1000 // 1000 = the launcher will be able to download 1000 files
CONCURRENT_PROCESS_COUNT 5 // i don't know what the hell is this but i guess it's okay lol


Or here is my complete server.cfg for Black Rogue 110 cap files:


Code:
Common {
    CERTIFICATION_IP_BIND    "172.16.94.128"
    LOCALE    LOCALE_ENGLISH
    MaxSendQueDepth    500
    MsgCountOfDumpTrigger    1000
    MsgTriggerElapseTick    30000
    ReportConnectionLog    0
    PromptAtClose    0
    WritePerfLogToText    0
    DumpMsgPool    0
    FatigueSystem    TFN220600000000
}


GlobalManager {
    Certification    "127.0.0.1", 32000
    AutomatedPunisher    "Administrator"
    LoginFailureTolerance    5
    LoginFailureBlockTimeMin    10
    LoginPunishmentGuide    "Blocked for 10 minutes due to incorrect password entered 3 times"
    LoginPunishmentDescription    "Blocked for 10 minutes due to incorrect password entered 3 times"
    IBUVFailureTolerance    5
    IBUVFailureBlockTimeMin    10
    IBUVPunishmentGuide    "Blocked for 10 minutes due to incorrect code entered 3 times"
    IBUVPunishmentDescription    "Blocked for 10 minutes due to incorrect code entered 3 times"
    NetCafeIPRefreshTime    1440
    MaxUserForNonePCBangIP    3
}


DownloadServer {
    Certification    "127.0.0.1", 15880
    USER_LIMIT 250
}


GatewayServer {
    Certification    "127.0.0.1", 15880
    LastFullVersion_SR_Client    0
    CONCURRENT_OVERLAP_COUNT    1000
    CONCURRENT_PROCESS_COUNT    5
    IBUVFailureIPTolerance    5
    IBUVStringSize    3
    IBUVCharacterSet    "0123456789"
    IBUVQueuePrepareRatio    0.05
    IBUVQueueReserveCount    20000
    LOGIN_CONTROL_ON_OFF    1
    LOGIN_CONTROL_ACCOUNT_LoginTryMaxLimitCount    6
    LOGIN_CONTROL_ACCOUNT_CountCheckTime    60000
    LOGIN_CONTROL_ACCOUNT_PeneltyTime    600000
    LOGIN_CONTROL_ACCOUNT_LiveTime    70000
    LOGIN_CONTROL_ACCOUNT_LoginTryMinLimitTime    7000
    LOGIN_CONTROL_IP_LoginTryMaxLimitCount    60000
    LOGIN_CONTROL_IP_CountCheckTime    60000
    LOGIN_CONTROL_IP_PeneltyTime        600000
    LOGIN_CONTROL_IP_LiveTime    70000
    LOGIN_CONTROL_ACCOUNT_ARRANGE_TIME_TERM    60000
    LOGIN_CONTROL_IP_ARRANGE_TIME_TERM    60000
    LOGIN_CONTROL_STATISTICS_TERM    60000
    AUTO_LOGIN_ON_OFF    1
    AUTO_LOGIN_USER_LIFE_TIME_SERVER    25000
    AUTO_LOGIN_USER_LIFE_TIME_CLIENT    20000
    AUTO_LOGIN_STATISTICS_TERM    60000
    AUTO_LOGIN_LOG_LEVEL    1
}


FarmManager
{
    Certification    "127.0.0.1", 15880
}


MachineManager
{
    Certification    "127.0.0.1", 15880
}


AgentServer {
    Certification    "127.0.0.1", 15882
    CERTIFICATION_IP_BIND    "172.16.94.128"
    GameGuardMode    0
    GameGuardTimerCycle       5
    traffic_filter_activity    service_on
    traffic_filter_packet_count    100
    traffic_filter_check_perid    1000
}


SR_GameServer {
    Certification    "127.0.0.1", 15882
    DropItemRatio    1500
    DropGoldAmountCoef    1500
    HwanGainFactor    100
    GiantMonster_SpawnRatio    100
    //MONSTER_AGGRO_LINK_DECREASE_RATIO    100
    PCBANG_EXPRATIO    10
    PCBANG_DEATH_PENALTY_FREE    60
    PCBANG_RESURRECT_AT_CURPOS    EVENT_ON
    PCBANG_FREE_USE_PORTAL    EVENT_ON
    PCBANG_DONT_DROP_ITEM_FORCELY    EVENT_ON
    EVENT_LOVE_COMPLETION    EVENT_ON
    WINTER_EVENT_2009    EVENT_ON
    ShowFormulaDetail    0
    ShowGameServerDisplay    0
    //PCSpeedRatio    100
}


SR_ShardManager {
    Certification    "127.0.0.1", 15882
    VIOLANCE_RESTRICT    TEENAGE
    CREST_FTP_URL    "ftp://embupload:ForUpload!!@emblem.blackrogue.in.th:211"
    ExpRatio    250
    ExpRatioParty    250
    ExtraExpRatio    1.0
    SERVER_EVENT_SYSTEM    ON
    FlagEvent    1
    EnablePremiumFreeAccess    1
    BanUselessUserWhenFreeAccess    1
    CraftedMacroVersion    1
}
 
Last edited:
Back
Top