Register for your free account! | Forgot your password?

Go Back   elitepvpers > MMORPGs > Rappelz > Rappelz Private Server
You last visited: Today at 00:14

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

Advertisement



[Release] Rappelz RDB Tool with tabs

Discussion on [Release] Rappelz RDB Tool with tabs within the Rappelz Private Server forum part of the Rappelz category.

Reply
 
Old 04/21/2014, 20:56   #106
 
elite*gold: 0
Join Date: Jul 2012
Posts: 227
Received Thanks: 65
That's impressive Glandu !
eziorav is offline  
Thanks
2 Users
Old 04/25/2014, 19:23   #107
 
elite*gold: 0
Join Date: Jul 2012
Posts: 227
Received Thanks: 65
Quote:
Originally Posted by bertie2008 View Post
This script create SkillResource view that use data from SkillFullResource:
Spoiler

Error I receive when I run the query:
Msg 208, Level 16, State 1, Procedure SkillResource, Line 16
Invalid object name 'dbo.SkillFullResource'.

I get the same error when running the: create SkillJPResource view that use data from SkillFullResource script
well if you have used your brain you could have changed the table name before exporting to database
eziorav is offline  
Old 05/23/2014, 20:58   #108
 
MrStubborn's Avatar
 
elite*gold: 0
Join Date: Oct 2012
Posts: 130
Received Thanks: 13
Great futures
MrStubborn is offline  
Old 06/08/2014, 21:05   #109
 
elite*gold: 0
Join Date: Oct 2012
Posts: 14
Received Thanks: 2
Hi Glandu2 >> I have been tried your program .

Amazing tool but I had an error when I reload a file from folder >> Some values in The DataGridview Changes With Every Loading .

I had the problem in : Huntaholic (Max_Point) and in SummonExp (Level)

PS: I'm Using 8.3 RDB Files !!

I hope you solve it in the next version . Have a nice day .
Amaady is offline  
Old 06/08/2014, 22:53   #110
 
elite*gold: 0
Join Date: Apr 2012
Posts: 463
Received Thanks: 837
the changing values are in which columns ?
glandu2 is offline  
Old 06/09/2014, 10:52   #111
 
elite*gold: 0
Join Date: Oct 2012
Posts: 14
Received Thanks: 2
Table: Huntaholic >> Colmun: Max_Point, lobby_channel_id, lobby_x, lobby_y, dungeon_channel_id, dungeon_x, dungeon_y // Table: SummonExp >> Colmun: Level
Amaady is offline  
Thanks
1 User
Old 06/09/2014, 11:27   #112
 
malaysiawap's Avatar
 
elite*gold: 0
Join Date: Dec 2008
Posts: 39
Received Thanks: 49
update for epic 9.1 please .
malaysiawap is offline  
Old 06/11/2014, 19:21   #113
 
elite*gold: 0
Join Date: Apr 2012
Posts: 463
Received Thanks: 837
sorry I don't have the time to check the layout of 9.1 rdb files, but you can yourself based on the source of database dlls (in RappelzRDBTool-2.5.0-db-src.zip and the header files + library is in RappelzRDBTool-2.5.0-dev.zip) with a c++ compiler
glandu2 is offline  
Old 06/12/2014, 02:13   #114
 
elite*gold: 0
Join Date: Jan 2012
Posts: 410
Received Thanks: 33
so how do I make the .dlls?
mlejnek2 is offline  
Old 06/12/2014, 19:37   #115
 
elite*gold: 0
Join Date: Apr 2012
Posts: 463
Received Thanks: 837
although the post is a bit old, you can see there for what to compile:

Just use files in RappelzRDBTool-2.5.0-db-src.zip and the header files + library in RappelzRDBTool-2.5.0-dev.zip instead

To do a Visual C++ project, create a unmanaged C++ DLL project and add all files in RappelzRDBTool-2.5.0-dev.zip (right click on project, add, existing files). You should have also only one .cpp file which contains your RDB description (like the files in RappelzRDBTool-2.5.0-db-src.zip).

Here an image to explain that:


The config should be that (inside the red rectangle, not tested other values for these parameters, it might still works, but I recommend to use these if you don't know. At least, Configuration type must be DLL):


Also compile for x86, not x64 else the DLL won't load in the RDB tool. The project solution of this example is in attachment. (target VS version is VS 2013)

To use a DLL made with VS 2013, ensure that (32 bits) is installed on the machine where you run the RDB tool.

You should use ItemTestDatabase_vs2013_vc120.zip project.
(ItemTestDatabase_vs2013.zip is the same but is set to use a VC2010 compiler)
Attached Files
File Type: zip ItemTestDatabase_vs2013.zip (11.9 KB, 115 views)
File Type: zip ItemTestDatabase_vs2013_vc120.zip (11.9 KB, 66 views)
glandu2 is offline  
Thanks
2 Users
Old 06/15/2014, 12:33   #116
 
elite*gold: 0
Join Date: Oct 2012
Posts: 14
Received Thanks: 2
Hi Glandu2 !!

I found another error in table "MotionSet" .

The original type of most columns in this table is ("varchar") >> But your program uses column type ("int") , so this causes crash to "Captain Herlock" !!

So please check it out !!

Have a nice day bro ^.^
Amaady is offline  
Old 06/15/2014, 23:44   #117
 
elite*gold: 0
Join Date: Apr 2012
Posts: 463
Received Thanks: 837
New release 2.5.1 with bug fixes:
  • Add TYPE_FLAG_SORT to sort rows when reading from SQL (used for jobresource and level tables) (xXExiledXx)
  • Fix flags when reading from SQL db
  • Fix random columns for Huntaholic and SummonExp (Amaady)
  • Fix Item522Database for 5.2 client (db_item(ascii).rdb) (xXExiledXx)
  • Add SkillTree52Database
  • When failing at reading a RDB file, leave data in the table to see what's wrong (useful when reading a new RDB)
  • The combobox with all database description DLLs is larger (display 20 items instead of 10)

I have never said before, but for most release before this one, the one who found bugs was Ne0, for this release, it's inline in the changelog (above)

For the last issue with MotionSet, my tool does not support converting data type, so you will have to use a SQL view to do the conversion from int to varchar
Here is an example: (empty values are left as '1')
Attached Files
File Type: zip RappelzRDBToolQt-2.5.1.zip (1,003.2 KB, 88 views)
File Type: zip RappelzRDBTool-2.5.1-dev.zip (7.1 KB, 41 views)
File Type: zip RappelzRDBTool-2.5.1-db-src.zip (70.8 KB, 39 views)
glandu2 is offline  
Thanks
8 Users
Old 10/21/2014, 01:43   #118
 
c1ph3r's Avatar
 
elite*gold: 0
Join Date: Sep 2008
Posts: 1,606
Received Thanks: 1,210
9.1 DLLs untested


These files will read 9.1 rdbs but there are some problems in inserting data into sql since a lot of columns are missing in item.rdb

so no proof that you are able to insert data into real 8.1 databases

Included files:
summon91Database.dll
item91Database.dll
pet91Database.dll
job91Database.dll

If one structure is missing or there a some problerms with the dlls just hit me a pm...
Attached Files
File Type: zip 91DLLsGlanduTool.zip (33.9 KB, 137 views)
c1ph3r is offline  
Thanks
8 Users
Old 10/22/2014, 12:16   #119
 
elite*gold: 0
Join Date: Oct 2014
Posts: 4
Received Thanks: 7
Hi everyone, here i share plugin item 9.1 that i edit myself..


Maybe not perfect but i Hope you guys can use and improve it more. Above already post, mine already test but some of data part enhance they split into other rdb, u guys need to create manually for that part to use in other Epic of rappelz. I also give the source file so u guys can edit and improve..

Thank You..
aMipRoDiGy is offline  
Thanks
3 Users
Old 11/03/2014, 19:32   #120
 
elite*gold: 0
Join Date: Aug 2013
Posts: 32
Received Thanks: 3
Someone nows how to fix empty "script_on_dead" column in monster 8.1 rdb?

All entries are empty by loading MonsterResource from Arcadia ???????????????
Laladumdum is offline  
Reply


Similar Threads Similar Threads
[Release]Shiva-Rappelz GM-Tool V1
04/22/2023 - Rappelz Private Server - 9 Replies
Download VirusTotal GM-Tool not update since the first post, you can update it easily with your Arcadia.
[Release]e*PvP - Rappelz Section Tool
09/15/2012 - Rappelz Private Server - 14 Replies
Well, here is the tool to make accessing/using this board easier a LOT! It has many functions, which i will put SS and explain about each one ( and its everything is explained in the tool too) http://i.epvpimg.com/1hExc.png here, u can write the thing your searching for in the text box, then click the search button so it searches for it in epvp search engine (Whole Epvp Search Engine And Not Only Rappelz) and you can also click the logo to be directed to the main rappelz-private-server...
[RELEASE] Rappelz Ban-Tool
11/17/2011 - Rappelz Private Server - 10 Replies
NCarbon left, Silent left, Smokey left, Raskim left... Finally Xij will left, too! NULL



All times are GMT +2. The time now is 00:14.


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