[Guide] Setting up a server based on VSRO server files

09/21/2011 21:09 Devsome#361
I search the function how can I change the max level to maybe 80.
When I change it in the database the maxlevel ( dbo._Char -> MaxLevel -> Column Properties -> Default value or binding)
But doesn't work !?
Tryed already to change anythink with ollydbg in sr_Gameserver.exe , but don' know what addresse and why :P

Hope you can help me :P

Regards
09/21/2011 21:39 mafolongo#362
Quote:
Originally Posted by Dr.Abdelfattah View Post
i will make one , but i need to ask u where is turkish write here?
sorry, i was meaning the current video, i thought the text and everything else was turkish, sorry, I do not know how to identify that language, somebody told me that was turkish and I belived him :S
09/21/2011 22:12 mils0n#363
My files is working...D

I have one problem with shardManager is with "CALL _ExistsServiceOffRentItem Failed!!" but is working.

so, i'm using loader to start client in port 15779...when i start my Client my server stay in CHECK.

why? any know?

how make to server work???
09/22/2011 05:22 tmfpkendrick21#364
[Only registered and activated users can see links. Click Here To Register...]

help me out ive tried redoing my iis but no luck so what could the problem be ??
09/22/2011 05:22 tmfpkendrick21#365
[Only registered and activated users can see links. Click Here To Register...]

help me out ive tried redoing my iis but no luck so what could the problem be ??
09/22/2011 14:11 seven16#366
how i change the prices from itemmall? or add more avatar in itemmall? only editing media.pk2?
09/22/2011 14:20 Devsome#367
I search the function how can I change the max level to maybe 80.
When I change it in the database the maxlevel ( dbo._Char -> MaxLevel -> Column Properties -> Default value or binding)
But doesn't work !?
Tryed already to change anythink with ollydbg in sr_Gameserver.exe , but don' know what addresse and why :P

Hope you can help me :P

Regards
09/22/2011 15:34 gamethuoverkill#368
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"
		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 	130
		Certification "127.0.0.1", 15880
		IBUVQueueReserveCount		20000
		IBUVQueuePrepareRatio		0.10
		IBUVFailureIPTolerance		0
		IBUVStringSize				1
		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
			//EUBUSINESS_EVENT							EVENT_ON
			//GOLDEN_PIG_FEBRUARY_EVENT					EVENT_ON
			//THANKS_GIVING_EVENT						EVENT_ON
			//LIBERATION_EVENT							EVENT_ON
		LOCALE 											LOCALE_VIETNAM
       
			//#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/"
		CREST_FTP_URL 					"ftp://SROVIET/ADMINISTRATOR:2550612@127.0.0.1/"
		ChristmasEvent2007 				1
		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
}
Code:
[global]
count=1
[entry0]
id=335
operation_type=22
name=SRO Vietnam TestLocal
wip=192.168.1.10 
nip=113.163.156.195
machine_manager_node_id=699
[Only registered and activated users can see links. Click Here To Register...]
[Only registered and activated users can see links. Click Here To Register...]
09/22/2011 17:24 HuN_SzabeE#369
hi all, help me pls!!!
[Only registered and activated users can see links. Click Here To Register...]
sr_gameserver successfully and visual c++ error.
more problem:
smc not work. i log on and does not give anything. don't work
cmd wrote: blabla 0 kbyte, blabla 0 kbyte, blabla 0 kbyte, blabla 0 kbyte, blabla 0 kbyte, blabla 0 kbyte, always writes
Keresési javaslat: milyen ip-t kell írnom
What I need to enter IP to mediapatcher and port?
HELP ME PLS!!!
ty
09/22/2011 21:47 buriko_0007#370
I have Item Bug .

[Only registered and activated users can see links. Click Here To Register...]

My Billing Server Good Work :D

SS ;

[Only registered and activated users can see links. Click Here To Register...]

No one will help?
09/23/2011 19:52 cleiomar1#371
Quote:
Originally Posted by tmfpkendrick21 View Post
[Only registered and activated users can see links. Click Here To Register...]

help me out ive tried redoing my iis but no luck so what could the problem be ??
I have Same problem...

Code:
Failed to getting silk data: unknown success code (An error occurred on the server when processing the URL. Please contact the system administrator. <p/> If you are the system administrator please click <a href="http)
Anyone knows whats needed to make it work?
09/23/2011 22:25 HuN_SzabeE#372
can anyone help??
"2 - compile.bat" don't create a "new_packt.dat" file...
[Only registered and activated users can see links. Click Here To Register...]
if good, then what should be entered in the (ip?, port?)
09/24/2011 13:53 mostafa2224#373
please Dr Abdelfatah i wait your promise and say for all wait my Server Soon
please help me i wait you on Yahoo
09/25/2011 01:29 *]°ReddoX°[*#374
We need to have 2 machines or it would be a advantage ?
09/25/2011 04:12 bachbell#375
hello in compile custom certi in bat 3 the window disappear instantly

my basic conf id

query=DRIVER={SQL Server};SERVER=NONAME154554\SQLEXPRESS;DSN=SRACCOU NT;UID=sa;PWD=1234;DATABASE=SRO_VT_ACCOUNT

and wip and nip i just use localhost 127.0.0.1 just wanna do a pvp in my local network :)