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.
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?
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.
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.
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
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
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?!
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?
VIDEO l VMWare l Erstellen/Create a vSro Server l Create 2 Server Shard 11/15/2024 - SRO Guides & Templates - 82 Replies Hallo ElitePvPer Community
Seit ich das letzte Mal über Discord / epvp xx Anfragen erhalten habe
Wie baut man einen SRO Server und oder funktioniert es auf VMWare (Ja, es funktioniert)
oder wie man mehrere Shards (Server) in der Liste anzeigt
oder mehrere Server können über 1 Client laufen !!
Da es momentan zu viele Anfragen gibt, habe ich gedacht, dass ich 1 oder mehr Videos machen werde: D
Hello ElitePvPer Community
Since I got the last time via Discord / epvp xx requests
How Build...