Register for your free account! | Forgot your password?

Go Back   elitepvpers > MMORPGs > Rappelz > Rappelz Private Server
You last visited: Today at 16:09

  • Please register to post and access all features, it's quick, easy and FREE!

Advertisement



[Guide]How to Create 9.5.2 Server !

Discussion on [Guide]How to Create 9.5.2 Server ! within the Rappelz Private Server forum part of the Rappelz category.

Reply
 
Old 11/02/2020, 13:35   #226


 
アルカード's Avatar
 
elite*gold: 50
Join Date: Mar 2012
Posts: 1,038
Received Thanks: 430
Quote:
Originally Posted by bertie2008 View Post
Still getting the dreded "Cannot connect to the PC room patch server"error
dm me your discord and i can help you out.
アルカード is offline  
Old 12/12/2020, 17:00   #227
 
elite*gold: 0
Join Date: May 2011
Posts: 5
Received Thanks: 0
Forgive me if this has been asked and solved, but I have not been able to fix my problem after searching and trying different things. Best I can guess is that my sframe is wrong or something? I have tried different things, but haven't succeeded.

My only problem is when trying to login, nothing happens. This is the error I get in the Auth window. !!!!! Invalid Message from 127.0.0.1 [ID 1957, Size: -1640872455]

Thanks to anyone that can help. Ill keep trying until then.

This is the server I am using: Rappelz9.4Revolution
This is the client I am using: Rappelz9.4-fear511

I replaced the sframe with the english one provided. I replaced the dll files. Everything looks like it is running fine.

launcher.bat

gameserver.opt

authserver.opt
Attached Images
File Type: jpg auth.jpg (59.3 KB, 55 views)
raynexcr is offline  
Old 12/13/2020, 01:29   #228
Moderator


 
ThunderNikk's Avatar
 
elite*gold: 1
Join Date: Dec 2012
Posts: 4,915
Received Thanks: 1,492
Any version errors in the game server window?
ThunderNikk is offline  
Old 12/13/2020, 02:12   #229
 
elite*gold: 0
Join Date: May 2011
Posts: 5
Received Thanks: 0
Here is what the log says:


I'm not sure what GameContent ::IsBlocked means.
raynexcr is offline  
Old 12/13/2020, 03:30   #230
Moderator


 
ThunderNikk's Avatar
 
elite*gold: 1
Join Date: Dec 2012
Posts: 4,915
Received Thanks: 1,492
N:game.local_flag:8192

If you are launching a US client and ascii

change that value to 4
ThunderNikk is offline  
Thanks
1 User
Old 12/13/2020, 03:48   #231
 
elite*gold: 0
Join Date: May 2011
Posts: 5
Received Thanks: 0
Solved. I was using the password hash program inside the server files. I assumed that was the same one I needed for my character account. Nope.
raynexcr is offline  
Old 12/17/2020, 11:21   #232
 
elite*gold: 0
Join Date: Dec 2020
Posts: 10
Received Thanks: 0
Quote:
Originally Posted by raynexcr View Post
Solved. I was using the password hash program inside the server files. I assumed that was the same one I needed for my character account. Nope.

Ex1:you pass 1234
passMD5 = MD5(20111234)

Ex2:salt = 2011
pass = 1234
password_md5 = FunctionMD5(salt + pass)

OK work.

USE [Auth]
GO
/****** Object: Table [dbo].[Account] Script Date: 12/17/2020 5:28:45 PM ******/
IF EXISTS (SELECT * FROM sys.objects WHERE object_id = OBJECT_ID(N'[dbo].[Account]') AND type in (N'U'))
DROP TABLE [dbo].[Account]
GO

/****** Object: Table [dbo].[Account] Script Date: 12/17/2020 5:28:45 PM ******/
SET ANSI_NULLS ON
GO

SET QUOTED_IDENTIFIER ON
GO

CREATE TABLE [dbo].[Account](
[account_id] [int] IDENTITY(1,1) NOT NULL,
[account] [varchar](60) NOT NULL,
[password] [varchar](60) NOT NULL,
[email] [varchar](60) NOT NULL,
[password2] [varchar](60) NOT NULL,
[block] [int] NOT NULL,
[IP_user] [text] NOT NULL,
[last_login_server_idx] [int] NOT NULL,
[Admin] [int] NOT NULL,
[point] [int] NOT NULL,
[datePassword] [date] NOT NULL,
[pk_] [bigint] NULL,
[creationDate_] [datetime] NULL,
[updateDate_] [datetime] NULL,
[creatorId_] [datetime] NULL,
[updatorId_] [datetime] NULL,
[portId_] [varchar](200) NULL,
[type_] [varchar](200) NULL,
[accessDate_] [bigint] NULL,
PRIMARY KEY CLUSTERED
(
[account_id] ASC,
[account] ASC
)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY],
UNIQUE NONCLUSTERED
(
[account_id] ASC
)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY],
UNIQUE NONCLUSTERED
(
[account_id] ASC
)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY],
UNIQUE NONCLUSTERED
(
[account] ASC
)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY]
) ON [PRIMARY] TEXTIMAGE_ON [PRIMARY]
GO

ALTER TABLE [dbo].[Account] ADD DEFAULT ((1)) FOR [pk_]
GO

ALTER TABLE [dbo].[Account] ADD DEFAULT ('com.elixir.billing.impl.ImmAccount') FOR [type_]
GO


----------------------------------------
USE [Auth]
GO

INSERT INTO [dbo].[Account]
([account]
,[password]
,[email]
,[password2]
,[block]
,[IP_user]
,[last_login_server_idx]
,[Admin]
,[point]
,[datePassword]
,[pk_]
,[creationDate_]
,[updateDate_]
,[creatorId_]
,[updatorId_])
VALUES
('myuser'
,'81dc9bdb52d04dc20036dbd8313ed055'
,''
,'1234'
,0
,'127.0.0.1'
,1
,0
,999999
,GETDATE()
,1
,GETDATE()
,GETDATE()
,GETDATE()
,GETDATE())
GO
iononline is offline  
Old 12/23/2020, 16:48   #233
 
elite*gold: 0
Join Date: Dec 2020
Posts: 10
Received Thanks: 0
Unhappy

How do up guild icon?

--UploadServer.opt--
Code:
S:app.name:RevolutionUpload
S:working_dir:C:\xampp\htdocs\gicons\
S:io.upload.ip:127.0.0.1
S:io.port:4615
S:io.game_server.addr:127.0.0.1
S:io.game_server.port:4617
N:console.port:22349
S:console.allow_ip:127.0.0.1
S:console.ip:127.0.0.1
S:console._password:45560000030029e3d02907fe185509ba2cd329d62d2d2d2b02b5082d
--gameserver.opt--
Code:
S:game.guild_icon_base_url:[url]http://127.0.0.1/icons/[/url]
S:game.helpdesk_url:[url]http://127.0.0.1/Rappelz/help/help.html[/url]
S:game.newbiehelp_asura_url:[url]http://127.0.0.1/Rappelz/info_asura.html[/url]
S:game.newbiehelp_deva_url:[url]http://127.0.0.1/Rappelz/info_deva.html[/url]
S:game.newbiehelp_gaia_url:[url]http://127.0.0.1/Rappelz/info_gaia.html[/url]
S:game.resource:Resource
S:game.server_screenshot_url:[url]http://127.0.0.1/Rappelz/Launcher/AR/server.html[/url]
N:game.update.version:17
S:game.url_list:guild.url|[url]http://127.0.0.1/|guild_test_download.url|gicons/|web_download|127.0.0.1|web_download_port|0|shop.url|http://127.0.0.1/Rappelz/Shop/index.php|ghelp_url|http://127.0.0.1/Rappelz/help/index.php|guild_icon_upload.ip|127.0.0.1|guild_icon_upload.port|4615[/url]
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
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
iononline is offline  
Old 01/26/2021, 09:43   #234
 
elite*gold: 0
Join Date: Dec 2020
Posts: 4
Received Thanks: 0
Im getting "This session is not verify session" and disconnected right away When logging into server. Anyone know what this means. I just set everything up and everything gives an OK when starting everything.
ScoobyDoozer is offline  
Old 01/26/2021, 18:21   #235
Moderator


 
ThunderNikk's Avatar
 
elite*gold: 1
Join Date: Dec 2012
Posts: 4,915
Received Thanks: 1,492
Answered in this topic here...

ThunderNikk is offline  
Old 01/27/2021, 03:40   #236
 
elite*gold: 0
Join Date: Dec 2020
Posts: 4
Received Thanks: 0
Running out of options.

I read the post and tried the fix but nothing changes. still cant connect with the same log message. Maybe I messed it up or dont have the right files. i dunno. Its the only log i ever get and all messages say everything is OK. not sure what to do.
ScoobyDoozer is offline  
Old 01/27/2021, 11:57   #237
Moderator


 
ThunderNikk's Avatar
 
elite*gold: 1
Join Date: Dec 2012
Posts: 4,915
Received Thanks: 1,492
It was in the opening post in his updates

Quote:
well i fixed it by changing one number from " 0 " to " 1 "

GS.opt

N:game.ignore_client_binary:0 to N:game.ignore_client_binary:1
I dont even think I have the line in my gameserver.opt but if it is in there and it is a 0 you will surely have problems.
ThunderNikk is offline  
Old 03/08/2021, 18:37   #238
 
elite*gold: 0
Join Date: Feb 2021
Posts: 2
Received Thanks: 0
Thank you for guide and files.
Somehow I was able to make it work.
But for some reason, I can't start a series of quests with the "red girl" on the farm.
After talking with "Guild Official Resha", the quest window does not appear.
Have I forgotten something or am I doing something wrong?
mara512 is offline  
Old 03/08/2021, 20:05   #239
Moderator


 
ThunderNikk's Avatar
 
elite*gold: 1
Join Date: Dec 2012
Posts: 4,915
Received Thanks: 1,492
There is a deleted quest link in the released files that remove those level skipping quests.

When I get home InkDevil wrote a script I can post that inserts the missing quest link back into the quest resource database.

Here is the missing quest

Code:
INSERT INTO [dbo].[QuestResource] ([id], [text_id_quest], [text_id_summary], [text_id_status], [limit_begin_time], [limit_end_time], [limit_level], [limit_job_level], [limit_max_level], [limit_max_job_level], [limit_deva], [limit_asura], [limit_gaia], [limit_fighter], [limit_hunter], [limit_magician], [limit_summoner], [limit_job], [job_depth], [limit_favor_group_id], [limit_favor], [repeatable], [invoke_condition], [invoke_value], [time_limit_type], [time_limit], [type], [value1], [value2], [value3], [value4], [value5], [value6], [value7], [value8], [value9], [value10], [value11], [value12], [drop_group_id], [quest_difficulty], [favor_group_id], [hate_group_id], [favor], [exp], [jp], [holicpoint], [gold], [default_reward_id], [default_reward_level], [default_reward_quantity], [optional_reward_id1], [optional_reward_level1], [optional_reward_quantity1], [optional_reward_id2], [optional_reward_level2], [optional_reward_quantity2], [optional_reward_id3], [optional_reward_level3], [optional_reward_quantity3], [optional_reward_id4], [optional_reward_level4], [optional_reward_quantity4], [optional_reward_id5], [optional_reward_level5], [optional_reward_quantity5], [optional_reward_id6], [optional_reward_level6], [optional_reward_quantity6], [forequest1], [forequest2], [forequest3], [or_flag], [script_start_text], [script_end_text], [script_drop_text], [show_target_type], [show_target_id], [mark_hide], [cool_time], [accept_cool_time]) VALUES ('2000', '80002000', '81002000', '82002000', '0', '0', '50', '0', '0', '0', '1', '1', '1', '1', '1', '1', '1', '0', '15', '0', '0', '0', '1', '0', '0         ', '0', '401', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '999', '0', '1', '59799', '11959', '165', '100000', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0');
ThunderNikk is offline  
Old 03/11/2021, 12:08   #240
 
elite*gold: 0
Join Date: Feb 2021
Posts: 2
Received Thanks: 0
Thank you very much it helped, quest is working again.
Can you also tell me how to change percentage of monster taming?
mara512 is offline  
Reply


Similar Threads Similar Threads
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...
[HELP] How to create a new shop. SHOP CREATE
12/31/2010 - CO2 Private Server - 5 Replies
#closed
is possible to create a hack to create items +7
07/14/2008 - Dekaron - 25 Replies
How can I create a hack to create items +7



All times are GMT +1. The time now is 16:09.


Powered by vBulletin®
Copyright ©2000 - 2026, Jelsoft Enterprises Ltd.
SEO by vBSEO ©2011, Crawlability, Inc.
This site is protected by reCAPTCHA and the Google Privacy Policy and Terms of Service apply.

Support | Contact Us | FAQ | Advertising | Privacy Policy | Terms of Service | Abuse
Copyright ©2026 elitepvpers All Rights Reserved.