Welcome!

Join our community of MMO enthusiasts and game developers! By registering, you'll gain access to discussions on the latest developments in MMO server files and collaborate with like-minded individuals. Join us today and unlock the potential of MMO server development!

Join Today!

A Tool for a Developer

Joined
Sep 11, 2008
Messages
719
Reaction score
122
This is a tool for a developer the codes quite messy but its a friendly code to read even a newbie coder would know the source..feel free to revise or reuse the code for your tool ,Why its not finish the reason would be TIME..

scan with virustotal :

Required Software : Visual Studio 2019 OR a HIGHER version would be good..

DOWNLOAD FILE :

i give credit to this name's but only 1 person :) :mad:Yamachi or estsoft .
Happy Holidays everyone..​
 
Last edited:
Joined
Jun 10, 2009
Messages
659
Reaction score
141
This is a tool for a developer the codes quite messy but its a friendly code to read even a newbie coder would know the source..feel free to revise or reuse the code for your tool ,Why its not finish the reason would be TIME..

scan with virustotal :

Required Software : Visual Studio 2019 OR a HIGHER version would be good..

DOWNLOAD FILE :

i give credit to this name's but only 1 person :) :mad:Yamachi or estsoft .
Happy Holidays everyone..​

You have forgotten to include source code of libcozip
 
Joined
Feb 26, 2010
Messages
1,374
Reaction score
780
You have forgotten to include source code of libcozip


TanGzkie instead of doing this
Code:
    while (dr.Read()) {
                                    textBox2.Text = dr["lev"].ToString();
                                    textBox3.Text = dr["Str"].ToString();
                                    textBox4.Text = dr["dex"].ToString();
                                    textBox5.Text = dr["int"].ToString();
                                    textBox6.Text = dr["pnt"].ToString();
                                    textBox7.Text = dr["alz"].ToString();
                                    textBox8.Text = dr["pkpenalty"].ToString();
                                    textBox9.Text = dr["nation"].ToString();
                                    label43.Text = dr["Worldidx"].ToString();
                                    label45.Text = dr["CharacterIdx"].ToString();
                                    label65.Text = dr["Style"].ToString();
                            }

use a library like Dapper that lets you assign the sql return result to an object( in this case of type character with those fields), which results in a single line of code. Then using something like ObjectListView, create a table (with 1 row in ur usecase) that binds that object to it, so you can assign with another line.

I got a lot of objections with a lot of the other code too
 
Last edited:
Back
Top