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!

VSRO Server Files [v188]

Skilled Illusionist
Joined
Aug 15, 2006
Messages
322
Reaction score
69
Re: Complete VSRO Server Files(Shared from Chern0byl)

No, there is no sql string in the end of the cfg.
Just checked my untouched folder, it's the same there. That's weird, why didn't i noticed that before ?
 
Newbie Spellweaver
Joined
May 11, 2008
Messages
23
Reaction score
0
Re: Complete VSRO Server Files(Shared from Chern0byl)

The SK_gamebang_ip table is a simple fix. Create a new table in the Account_db called SK_gamebang_ip. Add the columns "ip" and "capacity" to it. Save it and you are good to go.

My question is why do these files use ports 30000-30006 from Lucianos configs instead of the native ports Silkroad uses?
 
Skilled Illusionist
Joined
Aug 15, 2006
Messages
322
Reaction score
69
Re: Complete VSRO Server Files(Shared from Chern0byl)

Just checked the 3 part download archive. Even there in the server.cfg is no sql string anywhere.
And i was affraid i had a blackout and deleted it somehow.
 
Joined
Jul 27, 2010
Messages
902
Reaction score
31
Re: Complete VSRO Server Files(Shared from Chern0byl)

hmmm there's something wrong
i mang to run them only
but MachineManager.exe wont open lol
funny
edit:what mean cant establish keep alive session(my ip + the port)/B]
 
Initiate Mage
Joined
Jan 9, 2009
Messages
0
Reaction score
424
Re: Complete VSRO Server Files(Shared from Chern0byl)

I'm using your config, rogan12 but when i start Gateway Server, waiting on "request server certification"
so i am waiting for chernobyl's share cert files.
 
Joined
Jul 23, 2011
Messages
391
Reaction score
664
Re: Complete VSRO Server Files(Shared from Chern0byl)

You got wrong certification architecture. It should look like this
server.cfg

Code:
Common {
	debug_option_debugger_present	{
			DEBUG_OPTION_ASSERT_SHOW_MESSAGEBOX_OKCANCEL,
			DEBUG_OPTION_ASSERT_ADVANCE_BREAK,
			DEBUG_OPTION_ASSERT_CANCEL_EXIT
	}
	
	debug_option_stand_alone	{			
			DEBUG_OPTION_ASSERT_DONOT_SHOW_MESSAGEBOX ,
			DEBUG_OPTION_ASSERT_WRITE_MINIDUMP
	}

	netengine_debug_option_debugger_present	{
			DEBUG_OPTION_ASSERT_DONOT_SHOW_MESSAGEBOX ,
			DEBUG_OPTION_ASSERT_WRITE_MINIDUMP
	}

	netengine_debug_option_stand_alone	{
			DEBUG_OPTION_ASSERT_DONOT_SHOW_MESSAGEBOX ,
			DEBUG_OPTION_ASSERT_WRITE_MINIDUMP 
	}

}

////////////////////////////////////////////////////////////////////////////////////////////
GlobalManager {
	Certification "127.0.0.1", 32000 
	LoginFailureTolerance		3				// ÃÖ´ë ·Î±×ÀÎ Æнº¿öµå ¿À·ù Çã¿ëÄ¡
	IBUVFailureTolerance		3				// ÃÖ´ë À̹ÌÁö ÀÎÁõ ¿À·ù Çã¿ëÄ¡
	LoginFailureBlockTimeMin	0				// ºí·° ½Ã°£(ºÐ) - ·Î±×ÀÎ Æнº¿öµå ¿À·ù 
	IBUVFailureBlockTimeMin		0				// ºí·° ½Ã°£(ºÐ) - À̹ÌÁö ÀÎÁõ ¿À·ù 
	AutomatedPunisher		"AutomatedPunisher"		// ºí·° ÁÖü À̸§ (±âÁ¸ ºí·°Àº gm ¸í)
	LoginPunishmentGuide		"Blocked for 10 minutes due to incorrect password entered 3 times"	// Æнº¿öµå ¿À·ù¿¡ ´ëÇÑ ºí·° °¡À̵å
	LoginPunishmentDescription	"Blocked for 10 minutes due to incorrect password entered 3 times"	// Æнº¿öµå ¿À·ù¿¡ ´ëÇÑ ºí·° ¼³¸í
	IBUVPunishmentGuide		"Blocked for 10 minutes due to incorrect code entered 3 times"		// À̹ÌÁö ÀÎÁõ ¿À·ù¿¡ ´ëÇÑ ºí·° °¡À̵å
	IBUVPunishmentDescription	"Blocked for 10 minutes due to incorrect code entered 3 times"		// À̹ÌÁö ÀÎÁõ ¿À·ù¿¡ ´ëÇÑ ºí·° ¼³¸í
}

GatewayServer {
	LastFullVersion_SR_Client 1
	Certification "127.0.0.1", 15880
	IBUVQueueReserveCount		20000	// IBUV¸¦ À§ÇØ ¹Ì¸® »ý¼ºÇØ ³õÀ» À̹ÌÁö °¹¼ö		
	IBUVQueuePrepareRatio		0.10	// ¾ÆÀ̵é ŸÀÓ¿¡ À̹ÌÁö »ý¼ºÇÒ ºñÀ²
	IBUVFailureIPTolerance		0	// ÇÑ IP´ç IBUV ½ÇÆи¦ Çã¿ëÇÒ ÃÖ´ë ¿À·ù Çã¿ëÄ¡, 0ÀÌ¸é ºí·° ¾ÈÇÏ°Ú´Ù´Â °ÅÁö.

	// Ãß°¡µÈ ³ÑÀÌ´Ù!!!!!
	//////////////////////////////////////////////////////////
	IBUVStringSize			5 	// ÇÑ±Û Ä³¸¯Åͼ »ç¿ë ½Ã 3, ¾ËÆĺª ij¸¯ÅÍ ¼Â¸¸ »ç¿ëÇÏ´Â °æ¿ì 6 À¸·Î ¼¼ÆÃÇÑ´Ù.
	IBUVCharacterSet		"ABCDEF1234567890"
	//////////////////////////////////////////////////////////
}

DownloadServer {
        Certification "127.0.0.1", 15880
}
FarmManager {
	Certification "127.0.0.1", 15880
}

AgentServer {
	Certification "127.0.0.1", 15882 //no global manager running lol
	//traffic_filter_activity "service_off"
	//MaxUser 5000
	//SockTCPCount 15000
	MaxConnectionsPerServer "5000"
	MaxConnectionsPer1_OServer "5000"
}

MachineManager {
	Certification "127.0.0.1", 15880
	CERTIFICATION_IP_BIND "127.0.0.1"
}

SR_GameServer {
	Certification "127.0.0.1", 15882
	SockTCPCount "5000"
	ExpRatio "35000"
	ExpRatioParty "35000" 
	DropItemRatio "5000"
	DropGoldAmountCoef "15000"
	HwanGainFactor 250
	ShowFormulaDetail 1
	
        //WINTER_EVENT_2009		EVENT_ON	// 2009³â °Ü¿ï À̺¥Æ®
	//EUBUSINESS_EVENT		EVENT_ON
        //GOLDEN_PIG_FEBRUARY_EVENT	EVENT_ON
	//THANKS_GIVING_EVENT		EVENT_ON
	//LIBERATION_EVENT		EVENT_ON
	LOCALE LOCALE_VIETNAM	// for Helper mark 
       
         //#ifdef OPEN_MARKET_SYSTEM
        SET_FEE_RATE            "0,5,5,5"
        SELL_FEE_RATE           "0,10,10,10"
         //#endif OPEN_MARKET_SYSTEM


		//RE FTW

	DO_NOT_SPAWN_MONSTER_OVER_MAX_SERVICE_LEVEL "OFF"
	ENTER_LIMIT_CONDITION_GAME_WORLD_ASSIGNED "OFF"


}

SR_ShardManager {
	Certification "127.0.0.1", 15882
	BILLING_SERVER_URL "http://127.0.0.1:8080/"
	CREST_FTP_URL "http://crest:crest@localhost/"
        ChristmasEvent2007 0
	//SERVER_EVENT_SYSTEM             ON
       LOCALE LOCALE_VIETNAM
       FlagEvent 			1
       //HourForMeterRateLevelFirst	24
      // HourForMeterRateLevelSecond	0

	BattleArenaRandom 1
	BattleArenaParty 1
	BattleArenaGuild 1
	BattleArenaJob 1
	ArenaMatchOccupy 1
	ArenaMatchFlag 1
	ArenaMatchPoint 1
}

Ignore comments, lol, plus, some settings are just wrong. Just look at certification ports.
 
Joined
Jul 27, 2010
Messages
902
Reaction score
31
Re: Complete VSRO Server Files(Shared from Chern0byl)

Try this
but ofc you going change the names of the DB in MSSQL and the baks files names to match with this

 
Initiate Mage
Joined
Jan 9, 2009
Messages
0
Reaction score
424
Re: Complete VSRO Server Files(Shared from Chern0byl)

Here is the cert configs.


when try this, cert directly closing :(

Error: Could not locate a "Certification Manager" node type.
 
Skilled Illusionist
Joined
Aug 15, 2006
Messages
322
Reaction score
69
Re: Complete VSRO Server Files(Shared from Chern0byl)

when try this, cert directly closing :(

Error: Could not locate a "Certification Manager" node type.


Hm.. this is exactly what i get. Maybe i'm to tired now.
Adding the node before uploading the ini files would have been a nice move of you, but i'm not complaining.

regards
rogan12
 
Joined
Jul 23, 2011
Messages
391
Reaction score
664
Re: Complete VSRO Server Files(Shared from Chern0byl)

Well, i could write a good guide, but i need a some donations for a new computer, lul, so, once i get at least, 1/3 of them, i'll write it. (oh yeah, i act like a btch, huh ?) Do i really ask too much :? Working at current one is just impossible...
 
Junior Spellweaver
Joined
Dec 7, 2010
Messages
101
Reaction score
98
Re: Complete VSRO Server Files(Shared from Chern0byl)

It's so easy to set them up.

RevoLand - VSRO Server Files [v188] - RaGEZONE Forums
 
Experienced Elementalist
Joined
Mar 27, 2011
Messages
256
Reaction score
1
Re: Complete VSRO Server Files(Shared from Chern0byl)

Well, i could write a good guide, but i need a some donations for a new computer, lul, so, once i get at least, 1/3 of them, i'll write it. (oh yeah, i act like a btch, huh ?) Do i really ask too much :? Working at current one is just impossible...

how much are we talking about I'm from Venezuela and I would like to have this active server web yaque poseeo room with over 60 pc: /:

---------- Post added at 02:16 PM ---------- Previous post was at 02:14 PM ----------

It's so easy to set them up.

RevoLand - VSRO Server Files [v188] - RaGEZONE Forums

help me set it up please
 
Junior Spellweaver
Joined
May 17, 2009
Messages
149
Reaction score
12
Re: Complete VSRO Server Files(Shared from Chern0byl)

His name says it all xD
 
Back
Top