Jump to content

Lineage Ii Finder V1.5 [Update 5]


Recommended Posts

Version 1.5


 
Screens:
ae1uti.png30c5282.png
23wlnc6.png2i8f1ck.png
 
VirusTotal link:
https://www.virustotal.com/it/file/d21808905645f5b4e709afdb207ffd605bd7beba0a3935b6c0354561dd1cca04/analysis/1378321263/ (Result: 1/47)
 
If you don't trust the software run it in a virtual machine, but please don't make crap posts like "omg it's a virus". Instead I'd like to see some feedback and suggestions.
 
Info about the software
With this software you can search Skills, Items and NPCs in the server.

  • Skills are indexed by XML server files
  • Items are indexed by XML server files
  • NPCs are indexed by npc SQL table (so you need a connection to the database)
  • You can search skills by: name, id
  • You can search items by: name, id
  • You can search npcs by: name, id, idtemplate, title
  • In the result ListView you can order results ascending/descending by pressing on the header you want
  • You can open the file containing stats with notepad by a shortcut button
  • You can see and modify the stats with custom GUI
  • You can choose to open file/edit stats with Notepad++ from settings
  • You can edit NPC easy
  • You can add new NPC easy. There is an option to create a NPC based on another NPC.
  • You can delete NPC

 

Changelog v1.1

Added item search function

Added progress bar and progress label (anti-frustration for those who have slow PC)

Added function to sord the listView items by clicking on the column head

Added GUI resize possibility

Added my nick to the title

Fixed a bug that sometimes didn't show all skills found

 

Changelog v1.2

Added Now you can search by multiple values such as ID, Name, ecc

Added NPC search with MySQL connection

Fixed Configuration window now is not empy every time

 

Changelog v1.3

Added Now you can open containing file with a button

Added Now you can edit each item/skill with a button

Fixed If you leave password blank now it will be blank in config, not "0"

Fixed If you leave the user blank now it will be blank in config

Fixed Now the tool won't crash if invalid skill/item path

Fixed Now progress bar in NPC tab works

Fixed Now combo boxes are read-only

 

Changelog v1.4

Added Now you can choose to open file/edit stats with notepad++ from settings instead of windows notepad and custom GUI

Added Now you can maximize the main GUI

Fixed MySQL reconnects on setting change, so you don't have to restart every time the tool

Fixed edit skill/item custom GUI font style and height changed

Fixed edit skill/item custom GUI is resizable

Fixed improved position of controls when main GUI is resized

Fixed improved position of controls when main GUI is resized

 

Changelog v1.5

Added Support for Freya and High Five database

Added Now you can edit NPC

Added Now you can add new NPC

Added Now you can delete NPC

Fixed some minor bugs

SCREENSHOTS ARE OUTDATED

 

Download Link:

 

NOTE: when you configure the MySQL connection a .DLL file will appear in the folder. It's the DLL library that handles connection to the database. The DLL is generated dynamically in base of your system architecture and if it's deleted it's regenerated.

Link to comment
Share on other sites

For now you can find Skills and Items, just enter the name in the right tab and it will search for that name in the .xml files (case insensitive and you can search for partial names too). I am working on more complete solution and I am rewriting the code in C# cause I have some problems with Autoit by implementing something.

Link to comment
Share on other sites

I'm writing this post just because I can see that you did put effort in this.

 

1) I'll start with a spelling mistake (not important at all, I know but still), title has "Searchig" instead of "Searching".

2) It would be better if you would make the select boxes (By name, By ID) read-only because now you can write anything in it.

3) If the items/skills dir (in settings) is incorrect, it returns an error and program is being terminated.

4) If you leave the password field blank, it puts 0 in the config. (because of the encryption thing) so you should put an if-statement if field is blank, it should leave it blank)

5) MySQL is connecting only at program startup. It would be better if it would try connecting when the user changes his settings.

6) When I did leave the password blank manually by editing config.ini, it still had a character in the password textbox field.

 

That's my review from a quick look, good luck with your program.

Link to comment
Share on other sites

I'm writing this post just because I can see that you did put effort in this.

 

1) I'll start with a spelling mistake (not important at all, I know but still), title has "Searchig" instead of "Searching".

2) It would be better if you would make the select boxes (By name, By ID) read-only because now you can write anything in it.

3) If the items/skills dir (in settings) is incorrect, it returns an error and program is being terminated.

4) If you leave the password field blank, it puts 0 in the config. (because of the encryption thing) so you should put an if-statement if field is blank, it should leave it blank)

5) MySQL is connecting only at program startup. It would be better if it would try connecting when the user changes his settings.

6) When I did leave the password blank manually by editing config.ini, it still had a character in the password textbox field.

 

That's my review from a quick look, good luck with your program.

 

Thank you for your report :D I'll fix in next version.

 

notepad ++ simply the best.

Yeah but with this you can do things faster :P

Link to comment
Share on other sites

Alright.

 

By the way, you can add more things or make some things better but I'll let you find them out yourself.

 

Good luck.

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.



  • Posts

    • Well, sorry not sorry for resurrecting old topic, but I believe it's ultimately stupid to implement license checks like Vilmis did 🙂   private static String url = "jdbc:mysql://185.80.128.233/" + getData("Zm9ydW1fZGI="); private static String username = getData("bXJjb3B5cmlnaHQ="); private static String password = getData("Y29weXJpZ2h0XzEyMw=="); con = GlobalDB.getInstance().getConnection(); PreparedStatement statement; statement = con.prepareStatement("SELECT field_6 from core_pfields_content WHERE member_id = ?"); statement.setInt(1, Config.FORUM_USER_ID); ResultSet rset = statement.executeQuery();   This awesome way of coding things leaves us with base64-encoded credentials and DB exposed and accessible globally 😉 Btw he checks his licensing data from some plugin generated table his forum uses. Vilmis took action and ensured that mrcopyright user would have only needed accesses and rights for this operation. But he forgot to ensure that his INFORMATION_SCHEMA database would not be exposed and readable... That leads us to fully readable server variables like version used (10.1.26-MariaDB-0+deb9u1 - pretty ancient DB and OS, I'd assume). From here you can go south and do some kinky stuff, if you want and have knowledge for that. But who cares, right?   Ooh, table core_pfields_content field_6 is IP address which is checked by FORUM_USER_ID. Yep, you can query all IP addresses there (124 of them right now) and also do whatever you want with them! 🙂  The most fun part? Files source has been shared what, more than 2 years ago?  Vilmis still uses very same credentials and never changed it after sources exposure - who cares. Although, "sources" may be way too strong word here. If anyone still use paid Orion versions, I'd suggest packing your shit and leaving immediately, or at least fix this incompetent fool caused problems. It's obvious Vilmis don't care or maybe doesn't even know from the first place how to solve this problem (hint hint - tiny PHP Rest API microservice which would do absolutely the same but without exposing sensitive data?). By doing that, he exposes his infrastructure and YOUR data, and he does that for more than 2 years now 🙂 Developer of century!    
    • rename the l2.bin into l2.exe
    • L2LIVE.PRO- Dynamic Mid-rates Essence Seven Signs GRAND OPENING - July 5, 20:00 GMT+3 (EEST) TEST SERVER IS OPEN - COME AND CHECK IT OUT TODAY! Join our community and be part of it at: https://www.l2live.pro https://discord.gg/k3NMgR4Dmu   Server description * EXP/SP: Dynamic (x1- x100 based on your level, *before* Sayha and EXP buffs * Adena: x50 / Item Drop: x10 / Fishing EXP increased / Attribute EXP increased * Simplified gameplay to stay in the loop while not spending hours and hours farming * Starter Pack containing very useful items for beginners * MP replenishing potions with auto-consumption * No overpowered donations L2LIVE shop * All spellbook coupons, pet spellbook coupons and master books are sold via Game Assistant * Additionally you can buy SP pouches, enchanted talismans, pet training guides and various other consumables for Adena and L-Coin * More items such as cloaks, more talismans, agathions, belts, pendants, enchantment scrolls of various grades, evolution stones, etc will be added! Shop server as a shortcut, and all retail-like ways of earning items are still here! L-Coins * Drops with small change and in random amounts from Lv60+ monsters  * All raidbosses drop random amount of L-Coin Pouches generating up to 420 Lcoin per unit. **Grand Olympiad and Events** * Grand Olympiad is held week day * Format is 1v1, unlimited weekly fights  * Heroes are declared weekly at Sunday * There are three automated events - TvT, CTF and Deathmatch, running at evenings * Orc Fortress, Battle with Balok, Keber Hunter, Archievements Box, Daily Gift Calendar provisional events are active too Custom user commands * .offlineplay command, your character will keep playing till death or server restart * .offlineshop command, keeps your shop sitting until all items are purchased * .apon / .apoff - enable/disable HP/MP autoconsume And lots of other small improvements are waiting for you!   Join our community and be part of it at: https://www.l2live.pro https://discord.gg/k3NMgR4Dmu
  • Topics

×
×
  • Create New...