Register for your free account! | Forgot your password?

Go Back   elitepvpers > MMORPGs > 9Dragons
You last visited: Today at 23:32

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

Advertisement



[Release] Item tool

Discussion on [Release] Item tool within the 9Dragons forum part of the MMORPGs category.

Reply
 
Old 06/12/2017, 22:55   #16
 
elite*gold: 0
Join Date: Apr 2012
Posts: 4
Received Thanks: 0
You can share the fraudulent tool check with the item!
vuatienao93 is offline  
Old 02/20/2018, 10:32   #17
 
elite*gold: 0
Join Date: Sep 2008
Posts: 110
Received Thanks: 158
How to change ginseng to 1%?
anhthu2k is offline  
Old 07/28/2018, 11:01   #18
 
elite*gold: 0
Join Date: Jun 2008
Posts: 9
Received Thanks: 0
im very new to this so can someone please just type a step by step instruction on how to use this from downloading to adding to the folder please.
doom2008 is offline  
Old 07/09/2019, 21:50   #19
 
elite*gold: 0
Join Date: Nov 2014
Posts: 2
Received Thanks: 0
Unhappy compile error


can some1 help me to fix this

can someone help me? i got error code at maxIndex
An unhandled exception of type 'System.IndexOutOfRangeException' occurred in ItemTableReader.exe

BinaryReader br = new BinaryReader(s);
toolName = br.ReadBytes(48);
version1 = br.ReadInt16();
version2 = br.ReadInt16();
updateTime.Load(s);
userName = br.ReadBytes(16);
comName = br.ReadBytes(20);

int cont = BOOL.TRUE; //continue
sbyte type;
uint size; //why sbyte tho
short count;
short maxIndex;
int cnt = 0;
int tmpCnt = 0;
string tst = "";
do
{
cnt = 0;
type = br.ReadSByte();
size = br.ReadUInt32();
count = br.ReadInt16();
maxIndex = br.ReadInt16();
MaxItemCount[type] = maxIndex; <===== i got error right here

ItemType itemType = (ItemType)type;
byte[] arr = null;
tst += string.Format("{0}: \t{1}\n", itemType, size);
switch (itemType)
uzumaki007 is offline  
Old 07/10/2019, 14:04   #20


 
Adek's Avatar
 
elite*gold: 37
Join Date: Jan 2009
Posts: 2,544
Received Thanks: 1,034
Quote:
Originally Posted by uzumaki007 View Post

can some1 help me to fix this

can someone help me? i got error code at maxIndex
An unhandled exception of type 'System.IndexOutOfRangeException' occurred in ItemTableReader.exe

BinaryReader br = new BinaryReader(s);
toolName = br.ReadBytes(48);
version1 = br.ReadInt16();
version2 = br.ReadInt16();
updateTime.Load(s);
userName = br.ReadBytes(16);
comName = br.ReadBytes(20);

int cont = BOOL.TRUE; //continue
sbyte type;
uint size; //why sbyte tho
short count;
short maxIndex;
int cnt = 0;
int tmpCnt = 0;
string tst = "";
do
{
cnt = 0;
type = br.ReadSByte();
size = br.ReadUInt32();
count = br.ReadInt16();
maxIndex = br.ReadInt16();
MaxItemCount[type] = maxIndex; <===== i got error right here

ItemType itemType = (ItemType)type;
byte[] arr = null;
tst += string.Format("{0}: \t{1}\n", itemType, size);
switch (itemType)
Which version of item_table are you trying to read? Seems there is a mismatch between the size of objects. Try to sum up some of the stuff - size field should be equal to the sum of bytes read in this loop. E.g. if in the first iteration you get size = 10, it means the Weapon structure should be 10 bytes big. I know there were issues with Books before, I had to hardcode this one value. Structures change every now and then, not sure if we can handle versioning anyhow the other way than just recompiling or just loading N bytes (determined by the size) and just populating the data as-is.
Adek is offline  
Thanks
1 User
Old 04/23/2021, 03:26   #21
 
elite*gold: 0
Join Date: Aug 2020
Posts: 6
Received Thanks: 1
hello, any way to still get access to make this tool?
mareany is offline  
Old 04/23/2021, 07:59   #22
 
elite*gold: 0
Join Date: Apr 2021
Posts: 14
Received Thanks: 4
Maybe the tool should have configurable parameters for the bytesize (and for any dynamically changing values for that matter). Easiest way some external xml file with conf values in it.
Ahrixx is offline  
Old 04/23/2021, 09:26   #23


 
Adek's Avatar
 
elite*gold: 37
Join Date: Jan 2009
Posts: 2,544
Received Thanks: 1,034
Quote:
Originally Posted by Ahrixx View Post
Maybe the tool should have configurable parameters for the bytesize (and for any dynamically changing values for that matter). Easiest way some external xml file with conf values in it.
It was written years ago, within few hours, so don't expect too much from it - literally hardcoded structures with a bunch of forms and controls thrown together so I don't have to change it on a binary level. At this point, I'd definitely go for the config.

Structure's size is actually provided within the structure and is loosely coupled with the file version.
Adek is offline  
Old 04/23/2021, 15:10   #24
 
elite*gold: 0
Join Date: Jun 2008
Posts: 50
Received Thanks: 6
Cần tìm anh em nào có tool chia sẽ cách sử dung
bulondaiphap is offline  
Old 04/23/2021, 15:32   #25
 
elite*gold: 0
Join Date: Sep 2011
Posts: 17
Received Thanks: 3
Quote:
Originally Posted by bulondaiphap View Post
Cần tìm anh em nào có tool chia sẽ cách sử dung
phannhungoc is offline  
Thanks
2 Users
Old 04/23/2021, 20:38   #26

 
elite*gold: 90
Join Date: Apr 2009
Posts: 546
Received Thanks: 157
Quote:
Originally Posted by phannhungoc View Post
I prefer the 010 editor templates, where a mass update can be done via selection filters. The apps to edit the tables were the first quick fix created by @. It was this guy, who got the ball rolling in this area. Ofc @ was creative by, finding all of the table structures in ndserver source. You did a good job there. You deserve the credit, for all this.
madmerlin3009 is offline  
Old 04/25/2021, 03:02   #27
 
elite*gold: 0
Join Date: Jun 2008
Posts: 50
Received Thanks: 6
check ib ngoc oi
bulondaiphap is offline  
Old 03/15/2022, 19:03   #28
 
elite*gold: 0
Join Date: Aug 2012
Posts: 1
Received Thanks: 0
Could anyone share the source again?
Thanks!!!
duybientran is offline  
Old 03/23/2022, 04:04   #29
 
elite*gold: 0
Join Date: Nov 2010
Posts: 7
Received Thanks: 0
There are some people who copied the source from this and now they claim to pay to get it. That so bad!
Attached Images
File Type: png bad-guys.png (18.7 KB, 77 views)
vanquybn is offline  
Old 03/23/2022, 09:26   #30


 
Adek's Avatar
 
elite*gold: 37
Join Date: Jan 2009
Posts: 2,544
Received Thanks: 1,034
Quote:
Originally Posted by vanquybn View Post
There are some people who copied the source from this and now they claim to pay to get it. That so bad!
Funny enough, half of those folders are suspicious. Sorry, I removed the sources myself, so I can't reupload them.
Adek is offline  
Reply


Similar Threads Similar Threads
[RELEASE]Item File Editor tool
02/09/2017 - Metin2 PServer Guides & Strategies - 1 Replies
Hi, I'v been working on a small tool since last week that helps,make it faster and easier to modify & add new item names/icons into item_names/item_list files. It is now finished, and i'd like to share it with the community and get feedback from you for any bugs you have encountered. What can you do with this program?
[Release] Item stat tool
11/29/2015 - Dekaron Exploits, Hacks, Bots, Tools & Macros - 15 Replies
this simple script reads itemweapon.csv, itemarmor.csv and itemaccessory.csv and searches for items by name its not case sensitive, so if the item name is Ultimate Conciana +9, you can just type ultimate conciana +9. it returns all of the stats the item has: on the right side - legendary stats (red ones) on the left side - reinforcement stats (green ones) it also returns required stats, attack/defense, required level and class. here's a screenshot of the tool:
[RELEASE] Item Create Tool [Software]
04/11/2013 - Metin2 PServer Guides & Strategies - 20 Replies
Hallo @ all Da ich neulich einen Suchthread zu einem solchen Tool gesehen habe, und ich schon ein paar Mal von Freunden auf so etwas angesprochen wurde, dachte ich mir, "machste mal!" Und hier ist das Ergebnis: (Diese Screens wurden mit einer Win2000 GUI auf Win7 gemacht) 1. Login, hier müsst ihr euch mit eurer Server IP/Domain, dem MySQL User und einem Passwort einloggen! (Da mir eine SSH mit Auth File connection zu doof war, in dieser Version ohne! Vll code ich das später noch nach!)...
[Release]Metin2 Item Tool
05/05/2012 - Metin2 PServer Guides & Strategies - 8 Replies
Hey, blabla noch ein Item Tool, blabla Das Tool lädt die item_proto_dumb.xml aus dem Ordner, und zeigt dann die Value & den Namen an. Mehr gibts eigentlich nicht zu sagen! PS: In V2 wollt ich noch einbauen, das die Werte usw noch angezeigt werden!



All times are GMT +1. The time now is 23:36.


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.