[Guide]How to Create 9.5.2 Server !

01/30/2020 18:43 brkhnsvr94#106
Hi guys,

Is there a way to use 9.5.2 server files with offical game client?
02/01/2020 01:22 ilyaslord36#107
i whant to install this rappelzwebserver in my machine windows not linux can you help me plzzz
02/01/2020 12:34 Dark Blaze#108
Quote:
Originally Posted by ilyaslord36 View Post
i whant to install this rappelzwebserver in my machine windows not linux can you help me plzzz
You need .NET Core runtime installed on your machine and open cmd in the folder you downloaded and type "dotnet GamePortalMVC.dll" for the website to run.
02/01/2020 14:48 ThunderNikk#109
Quote:
Originally Posted by ilyaslord36 View Post
i whant to install this rappelzwebserver in my machine windows not linux can you help me plzzz
Quote:
Originally Posted by DragonMaxBR View Post
Remember, this is in development, I have a lot of things to do before it fully works.
I am curious why you want so badly to install an incomplete not fully functional website?

All of this discussion is unrelated and off topic to the thread.

Please get back on topic.

Quote:
Originally Posted by brkhnsvr94 View Post
Hi guys,

Is there a way to use 9.5.2 server files with offical game client?
I am pretty sure you can run this with the official client as long as you replace the sframe with the one that works with the release.

There are some 9.5.3 things that simply are hard coded and will not work, but you can run 9.5.2 stuff just fine.
02/03/2020 13:45 brkhnsvr94#110
Quote:
Originally Posted by ThunderNikk View Post
I am curious why you want so badly to install an incomplete not fully functional website?

All of this discussion is unrelated and off topic to the thread.

Please get back on topic.



I am pretty sure you can run this with the official client as long as you replace the sframe with the one that works with the release.

There are some 9.5.3 things that simply are hard coded and will not work, but you can run 9.5.2 stuff just fine.
Thaks for answer but i did not work. I've replaced SFrame.exe with another one. Nothing happpent when I launch .bat file. If I dont change SFrame.exe with original one, launcher is starting but when I try to connect server, I'm gettig an error about connecting server. I think the problem is client version. How can I change it from server files side?
02/03/2020 15:41 ThunderNikk#111
Try the sframe I linked earlier in the topic...

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

Check herlock window for client version mismatch errors and set the line in your game server opt to whichever one it is not set to in the error message.
02/05/2020 06:41 brkhnsvr94#112
Quote:
Originally Posted by ThunderNikk View Post
Try the sframe I linked earlier in the topic...

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

Check herlock window for client version mismatch errors and set the line in your game server opt to whichever one it is not set to in the error message.
Umm.. what am I doing wrong?

I've replaced SFrame with yours. And I put Launcher.bat and RappelzCmdLauncher to the game directory. When I double click to Launcher.bat, I'm getting this error:

err code[150]:Game Guard file does not exist or has been altered.
02/05/2020 12:54 ThunderNikk#113
Your launcher.bat should have the command to launch without game guard.

I cant recall what it is right now but I will check later if no one posts it.

Code:
RappelzCmdLauncher.exe Sframe.exe /auth_ip:127.0.0.1 /auth_port:9881 /use_nprotect:0 /help_url_w:611 /help_url_h:625 /locale:ASCII /country:US /cash /commercial_shop /layout_dir:6 /layout_auto:0 /cash_url_w:800 /cash_url_h:631
02/29/2020 02:12 medaion#114
Good evening,
I have a little problem I'm trying to make the exp rate be different than the number of people connected in the group but no matter what I do the exp rate doesn't change at all here is my file:

Code:
function party_exp_rate_event() -- 파티 경험치 이벤트
	local state_code = get_local_info() 
	local current_time = get_os_date( "%Y-%m-%d %H:%M:%S" )

	if	state_code == 4 or state_code == 8 or state_code == 128 or state_code == 16384 or state_code == 32768 or state_code == 65536 then --미국, 유럽, 영구
		set_env("game.party_exp_rate_0",2.6) 	--실 경험치를 받는 파티원이 2명일 때 적용되는 보너스 계수
		set_env("game.party_exp_rate_1",2.7) 	--실 경험치를 받는 파티원이 3명일 때 적용되는 보너스 계수
		set_env("game.party_exp_rate_2",4.9) 	--실 경험치를 받는 파티원이 4명일 때 적용되는 보너스 계수
		set_env("game.party_exp_rate_3",4) 	--실 경험치를 받는 파티원이 5명일 때 적용되는 보너스 계수
		set_env("game.party_exp_rate_4",6.3) 	--실 경험치를 받는 파티원이 6명일 때 적용되는 보너스 계수
		set_env("game.party_exp_rate_5",6.5) 	--실 경험치를 받는 파티원이 7명일 때 적용되는 보너스 계수
		set_env("game.party_exp_rate_6",8.8) 		--실 경험치를 받는 파티원이 8명일 때 적용되는 보너스 계수
	elseif state_code == 512 then -- 동남아, 6주
		if '2015-07-24 11:00:00' <= current_time and current_time < '2015-09-04 11:00:00' then
		set_env("game.party_exp_rate_0",2.6) 	--실 경험치를 받는 파티원이 2명일 때 적용되는 보너스 계수
		set_env("game.party_exp_rate_1",2.7) 	--실 경험치를 받는 파티원이 3명일 때 적용되는 보너스 계수
		set_env("game.party_exp_rate_2",4.9) 	--실 경험치를 받는 파티원이 4명일 때 적용되는 보너스 계수
		set_env("game.party_exp_rate_3",4) 	--실 경험치를 받는 파티원이 5명일 때 적용되는 보너스 계수
		set_env("game.party_exp_rate_4",6.3) 	--실 경험치를 받는 파티원이 6명일 때 적용되는 보너스 계수
		set_env("game.party_exp_rate_5",6.5) 	--실 경험치를 받는 파티원이 7명일 때 적용되는 보너스 계수
		set_env("game.party_exp_rate_6",8.8) 		--실 경험치를 받는 파티원이 8명일 때 적용되는 보너스 계수
		end
	elseif state_code == 256 then -- 러시아, 3주
		if '2016-02-29 08:00:00' <= current_time and current_time < '2016-03-21 08:00:00' then
		set_env("game.party_exp_rate_0",2.6) 	--실 경험치를 받는 파티원이 2명일 때 적용되는 보너스 계수
		set_env("game.party_exp_rate_1",2.7) 	--실 경험치를 받는 파티원이 3명일 때 적용되는 보너스 계수
		set_env("game.party_exp_rate_2",4.9) 	--실 경험치를 받는 파티원이 4명일 때 적용되는 보너스 계수
		set_env("game.party_exp_rate_3",4) 	--실 경험치를 받는 파티원이 5명일 때 적용되는 보너스 계수
		set_env("game.party_exp_rate_4",6.3) 	--실 경험치를 받는 파티원이 6명일 때 적용되는 보너스 계수
		set_env("game.party_exp_rate_5",6.5) 	--실 경험치를 받는 파티원이 7명일 때 적용되는 보너스 계수
		set_env("game.party_exp_rate_6",8.8) 		--실 경험치를 받는 파티원이 8명일 때 적용되는 보너스 계수
		end
	elseif state_code == 1 then -- 한국, 4주
		if '2015-07-23 10:00:00' <= current_time and current_time < '2015-08-20 10:00:00' then
		set_env("game.party_exp_rate_0",2.6) 	--실 경험치를 받는 파티원이 2명일 때 적용되는 보너스 계수
		set_env("game.party_exp_rate_1",2.7) 	--실 경험치를 받는 파티원이 3명일 때 적용되는 보너스 계수
		set_env("game.party_exp_rate_2",4.9) 	--실 경험치를 받는 파티원이 4명일 때 적용되는 보너스 계수
		set_env("game.party_exp_rate_3",4) 	--실 경험치를 받는 파티원이 5명일 때 적용되는 보너스 계수
		set_env("game.party_exp_rate_4",6.3) 	--실 경험치를 받는 파티원이 6명일 때 적용되는 보너스 계수
		set_env("game.party_exp_rate_5",6.5) 	--실 경험치를 받는 파티원이 7명일 때 적용되는 보너스 계수
		set_env("game.party_exp_rate_6",8.8) 		--실 경험치를 받는 파티원이 8명일 때 적용되는 보너스 계수
		end
	elseif state_code == 16 then -- 일본, 4주
		if '2015-09-01 11:00:00' <= current_time and current_time < '2015-09-29 11:00:00' then
		set_env("game.party_exp_rate_0",2.6) 	--실 경험치를 받는 파티원이 2명일 때 적용되는 보너스 계수
		set_env("game.party_exp_rate_1",2.7) 	--실 경험치를 받는 파티원이 3명일 때 적용되는 보너스 계수
		set_env("game.party_exp_rate_2",4.9) 	--실 경험치를 받는 파티원이 4명일 때 적용되는 보너스 계수
		set_env("game.party_exp_rate_3",4) 	--실 경험치를 받는 파티원이 5명일 때 적용되는 보너스 계수
		set_env("game.party_exp_rate_4",6.3) 	--실 경험치를 받는 파티원이 6명일 때 적용되는 보너스 계수
		set_env("game.party_exp_rate_5",6.5) 	--실 경험치를 받는 파티원이 7명일 때 적용되는 보너스 계수
		set_env("game.party_exp_rate_6",8.8) 		--실 경험치를 받는 파티원이 8명일 때 적용되는 보너스 계수
		end
	elseif state_code == 8192 then -- 중동, 2주
		if '2015-09-01 08:00:00' <= current_time and current_time < '2028-09-15 08:00:00' then
		
		set_env("game.party_exp_rate_0",2.6) 	--실 경험치를 받는 파티원이 2명일 때 적용되는 보너스 계수
		set_env("game.party_exp_rate_1",2.7) 	--실 경험치를 받는 파티원이 3명일 때 적용되는 보너스 계수
		set_env("game.party_exp_rate_2",4.9) 	--실 경험치를 받는 파티원이 4명일 때 적용되는 보너스 계수
		set_env("game.party_exp_rate_3",4) 	--실 경험치를 받는 파티원이 5명일 때 적용되는 보너스 계수
		set_env("game.party_exp_rate_4",6.3) 	--실 경험치를 받는 파티원이 6명일 때 적용되는 보너스 계수
		set_env("game.party_exp_rate_5",6.5) 	--실 경험치를 받는 파티원이 7명일 때 적용되는 보너스 계수
		set_env("game.party_exp_rate_6",8.8) 		--실 경험치를 받는 파티원이 8명일 때 적용되는 보너스 계수
		end
	else
		set_env("game.party_exp_rate_0",2.6) 	--실 경험치를 받는 파티원이 2명일 때 적용되는 보너스 계수
		set_env("game.party_exp_rate_1",2.7) 	--실 경험치를 받는 파티원이 3명일 때 적용되는 보너스 계수
		set_env("game.party_exp_rate_2",4.9) 	--실 경험치를 받는 파티원이 4명일 때 적용되는 보너스 계수
		set_env("game.party_exp_rate_3",4) 	--실 경험치를 받는 파티원이 5명일 때 적용되는 보너스 계수
		set_env("game.party_exp_rate_4",6.3) 	--실 경험치를 받는 파티원이 6명일 때 적용되는 보너스 계수
		set_env("game.party_exp_rate_5",6.5) 	--실 경험치를 받는 파티원이 7명일 때 적용되는 보너스 계수
		set_env("game.party_exp_rate_6",8.8) 		--실 경험치를 받는 파티원이 8명일 때 적용되는 보너스 계수
		
	end
end
thank you in advance for all your help
03/03/2020 05:44 erben12#115
when i set the ip in auth & GS to hamachi ip to play with my friend i get disconnected after choosing the server and get "this session is not verify version" in PrincessAurora , but when i set the ip to local instead it works fine .

is there a fix to this problem ?

i'm using the server files & client provided in this thread
03/06/2020 01:03 EroGamer#116
Is private server = offline lan network server? or is it global network server?! I only need to play the game fully offline on PC as an admin while editing the game commands etc, but I think the only way to play the game offline is by creating a private server since it's created this way, right?! so I have a question, after creating a private server, does it work the same as private lan server or is it different? since creating a private require internet access, that mean I can't play the game on offline network after done creating the server?! (since LAN server doesn't require internet access)

Can I use your previous guide of 9.4 video on this one to create a private server? or is it different steps?!
03/06/2020 12:55 ThunderNikk#117
It will work for a LAN server or it can be set for online access.

If you just want is set up for LAN then leave it as the instruction say to set it up.

To switch it over to internet access you need to modify some IPs and probably set some things in your router.

As far as the instructions it has not varied for a long time you could follow the 9.4 video and still set up 9.5 successfully.
03/06/2020 18:35 EroGamer#118
Quote:
Originally Posted by ThunderNikk View Post
It will work for a LAN server or it can be set for online access.

If you just want is set up for LAN then leave it as the instruction say to set it up.

To switch it over to internet access you need to modify some IPs and probably set some things in your router.

As far as the instructions it has not varied for a long time you could follow the 9.4 video and still set up 9.5 successfully.
I see, I got it, thank you for your assistance. :)
03/07/2020 16:14 chechennn#119
I think I'm a bit idiot. `` cannot connect to the login server (10061) '' gives an error during login.
I couldn't solve it for 2 days. Please can you help?

game
Code:
S:app.name:RevolutionGS
N:auth.server_idx:1
S:auth.server_name:RevolutionOfficial
#S:auth.server_name:Under maintenance
S:db.c.name:Arcadia
S:db.c._password:45560000030029e3d02907fe185509ba2cd329d62d2d2d2b02b5082d
S:db.c.account:sa
S:db.c.server:127.0.0.1
S:db.user._password:45560000030029e3d02907fe185509ba2cd329d62d2d2d2b02b5082d
S:db.user.account:sa
S:db.user.name:Telecaster
S:db.user.server:127.0.0.1
N:game.AdultServer:0
S:game.allowed_special_char:@.
S:console._password:45560000030029e3d02907fe185509ba2cd329d62d2d2d2b02b5082d
F:game.ally_pcbang_bonus_rate:0.1
F:game.ally_pcbang_chaos_bonus_rate:0.1
N:game.cash_usable_server:1
F:game.chaos_drop_rate:1.000000
#N:game.ela_count:40
F:game.exp_rate:30
F:game.gold_drop_rate:49
F:game.mod:0.200000
F:game.item_drop_rate:32
N:game.local_flag:8192
N:io.use_message_statistics:0
N:game.pcbang_bonus_server:0
F:game.premium_pcbang_bonus_rate:1.000000
F:game.premium_pcbang_chaos_bonus_rate:0.100000
N:game.max_level:200
N:game.PKServer:1
F:game.pvp_damage_rate_for_player:0.01
F:game.pvp_damage_rate_for_summon:0.035
N:game.use_auto_trap:0
N:game.use_auto_jail:0
N:game.use_delete_security:0
N:game.use_guild_donation_point:0
N:game.use_play_point:0
N:game.use_security:0
N:CodePage:1256
N:game.ServiceServer:1
S:game.guild_icon_base_url:http://guilds.rappelz.ae/gicons/
S:game.helpdesk_url:http://help.gamepower7.com/help/help-page/help-page.html
S:game.newbiehelp_asura_url:http://help.gamepower7.com/help/info_asura.html
S:game.newbiehelp_deva_url:http://help.gamepower7.com/help/info_deva.html
S:game.newbiehelp_gaia_url:http://help.gamepower7.com/help/info_gaia.html
S:game.resource:Resource
S:game.server_screenshot_url:https://room.rappelz.ae/Launcher/AR/server.html
N:game.update.version:17
S:game.url_list:guild.url|http://guilds.rappelz.ae/gicons/|guild_test_download.url|gicons/|web_download|guilds.rappelz.ae|web_download_port|0|shop.url|http://room.rappelz.ae/shop.html|ghelp_url|http://help.gamepower7.com/help/help-page/help-page.html|guild_icon_upload.ip|127.0.0.1|guild_icon_upload.port|4615
N:game.version:20180117

S:game.local_setting_list:log.ip|log.chat.ip|io.auth.ip|io.ip_address|db.c.server|db.user.server|N game.periodical_npc_adjustment
S:io.ip_address:127.0.0.1
#S:io.ip_address:54.38.164.109
N:io.port:34391
T:game.enhance_fail_type:2
S:io.user_count_ip_mask:127.0.0.1
S:log.ip:127.0.0.1
S:log.working:1
S:io.upload.ip:127.0.0.1
S:io.upload.port:4617
S:upload.server_name:RevolutionUpload
N:game.disable_trade:0
N:game.disable_booth:0
N:db.user.thread:4
N:console.port:44452
T:game.min_global_chat_usable_level:80
S:console.allow_ip:127.0.0.1
N:game.PKPenaltyLevel:10
N:game.use_account_authority_db:1
N:game.use_time_based_event_db:0
N:game.term_for_time_based_event_db:0
N:game.use_time_based_event_script:0
N:game.term_for_time_based_event_script:0
N:game.item_expert_cube :1
N:game.item_expert_grade:0
N:game.gold_drop_base:5000
F:game.gold_drop_percent:0.75
N:game.min_speed:1
N:game.amplify_level:0
N:game.amplify_hp:0
N:game.exception_arabic:0
N:game.exception_921:0
F:game.card_drop_rate:1.0
N:game.enhance_chance:1
N:game.enhance_chance_min:1
N:game.enhance_chance_max:10
N:game.enhance_destroy_level:8
F:game.quest_bonus_rate:4.0
N:game.quest_bonus_level:130.0
N:game.HardcoreServer:0
N:game.check_area:0
F:game.party_exp_rate_0:25
F:game.party_exp_rate_1:25
F:game.party_exp_rate_2:27
F:game.party_exp_rate_3:29
F:game.party_exp_rate_4:29
F:game.party_exp_rate_5:30
F:game.party_exp_rate_6:30
N:game.party_exp_penalty_level:5
N:game.summon_exp_penalty_level:10
F:game.killed_drop:0.03
I:game.crime_state:1
I:game.crime_party:1
F:game.killed_exp_percentage:1.0
F:game.kill_immoral_percentage:1.0
F:game.monster_regen_boss:5
F:game.monster_regen:5
N:game.max_characters_per_account:8
T:game.log.working:1
T:log.chat.working:1
N:game.ignore_client_binary:0
N:game.security_solution_type:0

Auth
Code:
S:app.name:Auth
S:auth.allowed_special_char:@.
N:auth.check_adult_server:0
N:auth.max_client_per_ip:9999
N:auth.max_daily_client_per_ip:9999999
N:auth.user_rate_mod:20
N:auth.version:201507080
S:io.ip_address:127.0.0.1
S:db.auth._password:45560000030029e3d02907fe185509ba2cd329d62d2d2d2b02b5082d
S:db.auth.account:sa
S:db.auth.md5_key:2011
S:db.auth.name:Auth
S:db.auth.server:127.0.0.1
N:io.auth.port:9881
S:db.billing.account:sa
S:db.billing.name:BILLING
S:db.billing.server:127.0.0.1
N:db.auth.use_md5:2011
N:db.auth.use_md5_for_security_no:
N:game.user_limit_server_001:400
S:log.ip:127.0.0.1
N:billing.allow_login_without_billing:0
N:billing.check_server_keep_alive_timeout:0
N:billing.server_keep_alive_interval:6000
N:billing.server_keep_alive_timeout:3000
N:billing.use:0
N:billing.user_keep_alive_interval:60000
N:billing.user_keep_alive_timeout:3000
03/07/2020 17:58 EroGamer#120
Can I use SQLite instead of SQL Server 2014?!