Register for your free account! | Forgot your password?

Go Back   elitepvpers > MMORPGs > Rappelz > Rappelz Private Server
You last visited: Today at 20:01

  • 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/01/2015, 03:58   #151
 
elite*gold: 0
Join Date: Aug 2014
Posts: 83
Received Thanks: 17
ismokedrow not every one here is professional in programming especially when we talk about C++
Don't you agree with me on this point
colonelx is offline  
Old 04/01/2015, 05:37   #152
 
TheOnlyOneRaskim's Avatar
 
elite*gold: 0
Join Date: Nov 2011
Posts: 978
Received Thanks: 1,011




Google is your Friend.
TheOnlyOneRaskim is offline  
Old 04/01/2015, 07:34   #153
 
elite*gold: 182
Join Date: Mar 2011
Posts: 258
Received Thanks: 340
Quote:
Originally Posted by colonelx View Post
ismokedrow not every one here is professional in programming especially when we talk about C++
Don't you agree with me on this point
Except that the plugin has a very simple setup that I am sure anyone can understand if they studied it even without an advanced knowledge of c++.
XavierDeFawks is offline  
Thanks
1 User
Old 04/01/2015, 12:54   #154
Moderator


 
ThunderNikk's Avatar
 
elite*gold: 1
Join Date: Dec 2012
Posts: 4,780
Received Thanks: 1,462
Quote:
Originally Posted by colonelx View Post
ismokedrow not every one here is professional in programming especially when we talk about C++
Don't you agree with me on this point
That would be an acceptable excuse if there were not detailed instructions and links posted here in this very thread.
ThunderNikk is offline  
Old 04/01/2015, 14:13   #155
 
Aurorauser's Avatar
 
elite*gold: 0
Join Date: Feb 2014
Posts: 146
Received Thanks: 35
I don't know C++ plus programing
Aurorauser is offline  
Old 04/01/2015, 15:13   #156
 
elite*gold: 20
Join Date: Sep 2010
Posts: 57
Received Thanks: 25
Every Human has the unique ability to learn new things. Now use this ability and learn c++. Google and YouTube can help a lot. I've done it the same way.

And if c++ is too hard for you.... The binary reader/writer class in c# provides everything you need for rdb files. And c# is much more comfortable for starters in programming.

Don't ask for examples, in this forum are enough open source/decompile able tools to get a hint how to manage it.
Saltaya is offline  
Thanks
1 User
Old 04/01/2015, 18:26   #157
 
Aurorauser's Avatar
 
elite*gold: 0
Join Date: Feb 2014
Posts: 146
Received Thanks: 35
Quote:
Originally Posted by Saltaya View Post
Every Human has the unique ability to learn new things. Now use this ability and learn c++. Google and YouTube can help a lot. I've done it the same way.

And if c++ is too hard for you.... The binary reader/writer class in c# provides everything you need for rdb files. And c# is much more comfortable for starters in programming.

Don't ask for examples, in this forum are enough open source/decompile able tools to get a hint how to manage it.
Okey saltaya answer thanks I am make dll c++ youtube watch videos ...
Aurorauser is offline  
Old 04/04/2015, 14:00   #158
 
TheSuperKiller's Avatar
 
elite*gold: 0
Join Date: Apr 2011
Posts: 278
Received Thanks: 73
monster 9.1, table load from sql is fine but reading or writing to\from rdb makes application crash .
any suggestions ?
TheSuperKiller is offline  
Old 04/04/2015, 15:04   #159
 
elite*gold: 0
Join Date: Feb 2013
Posts: 119
Received Thanks: 13
@TheSuperKiller

do u convert it using VS to .dll ? if yes , tell me the way @@ cos i try many times but useless
mohamad512 is offline  
Old 04/04/2015, 15:24   #160
 
elite*gold: 0
Join Date: Apr 2012
Posts: 463
Received Thanks: 837
Quote:
Originally Posted by TheSuperKiller View Post
monster 9.1, table load from sql is fine but reading or writing to\from rdb makes application crash .
any suggestions ?
Do you use the version 2.6.0 (available in the previous page) ?
I compiled your code and loaded a db_monster.rdb from official client and then saved it to a new file and it didn't crashed.

But the data was not correctly read (columns contain garbage data). That means the DLL does not describe db_monster.rdb correctly (it seems there is too many columns, you read 4 bytes more than the db_monster's record size).

Quote:
Originally Posted by mohamad512 View Post
@TheSuperKiller

do u convert it using VS to .dll ? if yes , tell me the way @@ cos i try many times but useless
See this post for a VS 2013 project:

You should use ItemTestDatabase_vs2013_vc120.zip project.
(ItemTestDatabase_vs2013.zip is the same but is set to use a VC2010 compiler)
glandu2 is offline  
Thanks
1 User
Old 04/04/2015, 15:56   #161
 
elite*gold: 0
Join Date: Oct 2013
Posts: 474
Received Thanks: 41
the is a problem
when i read item 9.1 from official rappelz
and send it to SQL server
the herlock does not open
i use revo-files 9.1 official one
Sherock is offline  
Old 04/04/2015, 16:07   #162
 
elite*gold: 0
Join Date: Oct 2010
Posts: 2,555
Received Thanks: 2,458
Quote:
Originally Posted by Sherock View Post
the is a problem
when i read item 9.1 from official rappelz
and send it to SQL server
the herlock does not open
i use revo-files 9.1 official one
ismokedrow is offline  
Old 04/04/2015, 16:29   #163
 
elite*gold: 0
Join Date: Apr 2012
Posts: 463
Received Thanks: 837
New release 2.7.0 with log window :
  • Add log window: logs can be read now (including SQL error messages). Log can be written from database DLL too using ILog.h
  • When generating .SQL file, add "GO" every 100 insert

Now you can see logs using this menu: Options -> Show log.
(Change the log level using the combobox. It takes effect immediately but does change existing lines)

You can add log message yourself in database DLL (for example to debug your DLL) like that:
- Add #include "ILog.h" at the beginning of your .cpp file
- Log a message using:
Code:
int integerVariable = 3;
char* stringVariable = "a string";
getLogger()->log(ILog::LL_Info, "An integer: %d and a string: \"%s\"\n", integerVariable, stringVariable);
This will print a line like that in the log window:
Code:
04/04/2015 16:14:29:397 Info: An integer: 3 and a string: "a string"
The syntax is the same as printf. %s is for strings, %d for integers.
ILog::LL_Info is a log level, to see them all, see the enum named Level in ILog.h.
Attached Files
File Type: zip RappelzRDBToolQt-2.7.0.zip (1.03 MB, 50 views)
File Type: zip RappelzRDBTool-2.7.0-dev.zip (7.7 KB, 22 views)
File Type: zip RappelzRDBTool-2.7.0-db-src.zip (71.1 KB, 20 views)
glandu2 is offline  
Thanks
1 User
Old 04/04/2015, 17:42   #164
 
elite*gold: 0
Join Date: Feb 2013
Posts: 119
Received Thanks: 13
hey man when u gonna publish 9.1 structures !? O_O I have tried to make them but my VS need 400-500mp updates to convert cpp to dll @_@"

and i'm not sure from the structure !!
mohamad512 is offline  
Old 04/04/2015, 17:54   #165
 
elite*gold: 0
Join Date: Aug 2011
Posts: 185
Received Thanks: 33
Quote:
Originally Posted by mohamad512 View Post
hey man when u gonna publish 9.1 structures !? O_O I have tried to make them but my VS need 400-500mp updates to convert cpp to dll @_@"

and i'm not sure from the structure !!
do have use this command in cmd

Modamer9 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 20:01.


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.