Register for your free account! | Forgot your password?

Go Back   elitepvpers > MMORPGs > Rappelz > Rappelz Private Server
You last visited: Today at 04:12

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

Advertisement



[Help Thread] Please post your questions here.

Discussion on [Help Thread] Please post your questions here. within the Rappelz Private Server forum part of the Rappelz category.

Reply
 
Old 08/15/2016, 08:07   #5866
 
elite*gold: 0
Join Date: Aug 2016
Posts: 10
Received Thanks: 0
Hi, i need cash shop and register website script please
imnowlearn is offline  
Old 08/16/2016, 15:57   #5867
 
elite*gold: 0
Join Date: Nov 2012
Posts: 10
Received Thanks: 0
how can i set a password to sa or even use another login account with auth and game server opt and what kind of password can i use i tried to put a hash or even md5 in the password in opt but i cant login i get auth failed to login to sa ?
blackcs12 is offline  
Old 08/16/2016, 17:43   #5868
Moderator


 
ThunderNikk's Avatar
 
elite*gold: 1
Join Date: Dec 2012
Posts: 4,912
Received Thanks: 1,490
Pyroks password generator is used for the SQL passwords encrypted in the .opt files.

You set them up in the SQL server in user management as plain text.

Then use Pyroks password generator for a des hash on the password to put in the .opt files and compress the .opt files again.
ThunderNikk is offline  
Old 08/17/2016, 23:20   #5869
 
elite*gold: 0
Join Date: Mar 2013
Posts: 125
Received Thanks: 15
Hello guys

I need the databases for official server files 8.1 & 9.1 as scripts not .Bak file >> please in SQL-Format
hassuny is offline  
Old 08/20/2016, 12:22   #5870
 
elite*gold: 0
Join Date: Apr 2015
Posts: 39
Received Thanks: 0
Auto update launcher

hi all =)

now i try to auto update my client but nothing updated ..//

i add some screen and full code (by TheChinStrap)


code:

i use in patch Url

Screen:

my launcher work perfectly for play // Version in client stay 1.0 and 0 add in resource... this is one local test for this moment ^^

i hope anyone have solution thx for ur help
kojima2501 is offline  
Old 08/20/2016, 13:54   #5871
Moderator


 
ThunderNikk's Avatar
 
elite*gold: 1
Join Date: Dec 2012
Posts: 4,912
Received Thanks: 1,490
Make sure the zip file is named correctly V1-1.zip and not V1.1.zip in your updates folder.

Make sure you have an Updates folder in the root of your server.

Server update directory path in the launcher should lead to your updates folder...

ThunderNikk is offline  
Old 08/20/2016, 14:43   #5872
 
elite*gold: 0
Join Date: Jul 2016
Posts: 12
Received Thanks: 0
help me Server 7.3

I want rdb manger 7.3 Now Very necessary


Please help me
KingsMan0 is offline  
Old 08/20/2016, 17:10   #5873
Moderator


 
ThunderNikk's Avatar
 
elite*gold: 1
Join Date: Dec 2012
Posts: 4,912
Received Thanks: 1,490
Try out this one...



Thanks to Smoky for his work.
ThunderNikk is offline  
Old 08/21/2016, 10:01   #5874
 
elite*gold: 0
Join Date: Dec 2014
Posts: 1
Received Thanks: 0
Sup everyone. Im struggeling since few hours to get correct offsets for db_item.rdb (Epic 9.4) - Somehow i cant seem to get it working properly.
Do you guys have any suggestions / solutions ? Didnt had these issues on other rdb files. only item.rdb is kicking my head off.

my thought is that im skipping some values by doing seekg of 6200 bytes.
its loading perfectly until it reads the rank value.

Code:
void ItemResource::LoadEntitys( std::fstream& pRDBFile, eItemResource data[] )
{
	pRDBFile.read((char *)&data[0].id, 4);
	pRDBFile.read((char *)&data[0].name_id, 4);
	pRDBFile.read((char *)&data[0].type, 4);
	pRDBFile.read((char *)&data[0].group, 4);

	pRDBFile.read((char *)&data[0].Class, 4);
	pRDBFile.read((char *)&data[0].set_id, 4);
	pRDBFile.read((char *)&data[0].set_part_flag, 4);
	
	pRDBFile.seekg(1, std::fstream::cur);
	pRDBFile.read((char *)&data[0].rank, 4);
	
	//pRDBFile.seekg(6169, std::fstream::cur);
	pRDBFile.read((char *)&data[0].level, 4);
	
	pRDBFile.read((char *)&data[0].enhance, 4);
	pRDBFile.read((char *)&data[0].socket, 4);
	pRDBFile.read((char *)&data[0].status_flag, 4);
	pRDBFile.read((char *)&data[0].min_level, 4);
}
// Edit: adjusted code.. can anyone say if min_level is 15 for itemid 100001 and max_level 48 ?
LuXorioN is offline  
Old 08/21/2016, 10:44   #5875
 
elite*gold: 0
Join Date: Mar 2013
Posts: 125
Received Thanks: 15
Hello guys

I need the databases for official server files 8.1 & 9.1 as scripts not .Bak file >> please in SQL-Format
hassuny is offline  
Old 08/22/2016, 00:07   #5876
Moderator


 
ThunderNikk's Avatar
 
elite*gold: 1
Join Date: Dec 2012
Posts: 4,912
Received Thanks: 1,490
Quote:
Originally Posted by LuXorioN View Post
Sup everyone. Im struggeling since few hours to get correct offsets for db_item.rdb (Epic 9.4) - Somehow i cant seem to get it working properly.
Do you guys have any suggestions / solutions ? Didnt had these issues on other rdb files. only item.rdb is kicking my head off.

my thought is that im skipping some values by doing seekg of 6200 bytes.
its loading perfectly until it reads the rank value.

Code:
void ItemResource::LoadEntitys( std::fstream& pRDBFile, eItemResource data[] )
{
	pRDBFile.read((char *)&data[0].id, 4);
	pRDBFile.read((char *)&data[0].name_id, 4);
	pRDBFile.read((char *)&data[0].type, 4);
	pRDBFile.read((char *)&data[0].group, 4);

	pRDBFile.read((char *)&data[0].Class, 4);
	pRDBFile.read((char *)&data[0].set_id, 4);
	pRDBFile.read((char *)&data[0].set_part_flag, 4);
	
	pRDBFile.seekg(1, std::fstream::cur);
	pRDBFile.read((char *)&data[0].rank, 4);
	
	//pRDBFile.seekg(6169, std::fstream::cur);
	pRDBFile.read((char *)&data[0].level, 4);
	
	pRDBFile.read((char *)&data[0].enhance, 4);
	pRDBFile.read((char *)&data[0].socket, 4);
	pRDBFile.read((char *)&data[0].status_flag, 4);
	pRDBFile.read((char *)&data[0].min_level, 4);
}
// Edit: adjusted code.. can anyone say if min_level is 15 for itemid 100001 and max_level 48 ?
Job_depth for that item is 15 and I couldn't find any value that was 48. Looks like you still have some work to do.
ThunderNikk is offline  
Old 08/23/2016, 17:54   #5877
 
elite*gold: 0
Join Date: Aug 2016
Posts: 10
Received Thanks: 0
I have problems with skill cards on my server
Their attack points arent proper
How can i fix. my server is epic 7.3
imnowlearn is offline  
Old 08/27/2016, 08:40   #5878
 
elite*gold: 0
Join Date: Oct 2013
Posts: 474
Received Thanks: 41
how to make
set_account_authority( 910000, 2592000 )
works in my 9.1 server ?
Sherock is offline  
Old 08/29/2016, 12:56   #5879
 
elite*gold: 0
Join Date: Nov 2011
Posts: 23
Received Thanks: 1
hello, guys


(the problem video)

I have a problem that "This item cannot be combined/enchanted"..
and weapons, armors, Cubes , Creature cards same problem.
so..I can't enhance.

What seems to be the problem with it?

(my server is epic 9.1 and 9.1 sframe. It got in )
risslove is offline  
Old 08/29/2016, 13:46   #5880
 
elite*gold: 0
Join Date: Oct 2013
Posts: 474
Received Thanks: 41
Quote:
Originally Posted by Sherock View Post
how to make
set_account_authority( 910000, 2592000 )
works in my 9.1 server ?
up
Sherock is offline  
Reply

Tags
7.4, client, rappelz


Similar Threads Similar Threads
[Helping Topic] 24/7 Helping Services!
08/27/2008 - EO PServer Hosting - 31 Replies
stucked on anything while setuping your server? post your problem here and you will get answer as fast as possible better than spamming with posts :cool: first of all try reading Ahmedpotop's Pserver All thing guide. if your couldn't solve it out post your problem down here ""That includes PHP rankings pages / registrations pages / Status pages""



All times are GMT +1. The time now is 04:12.


Powered by vBulletin®
Copyright ©2000 - 2025, 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 ©2025 elitepvpers All Rights Reserved.