Change exp rate forge rate

09/01/2013 03:13 pungvit#1
how to change for this >>

in server side or just client we should edit them..
09/03/2013 10:12 kennethz008#2
server side bin only. all rates that you edit you can just leave it in server side others should be both in server and client, like weapon, armor, shield and etc.
09/03/2013 15:22 pungvit#3
Quote:
Originally Posted by kennethz008 View Post
server side bin only. all rates that you edit you can just leave it in server side others should be both in server and client, like weapon, armor, shield and etc.
Where i can find bin data file in server side.
All I know Just in sql database.
09/04/2013 03:19 kennethz008#4
Quote:
Originally Posted by pungvit View Post
Where i can find bin data file in server side.
All I know Just in sql database.
Probably here C:\RoHan\RoHan\data :o
09/11/2013 15:40 pungvit#5
Quote:
Originally Posted by kennethz008 View Post
Probably here C:\RoHan\RoHan\data :o
found it.. now what bin i must to edit..:mofo:

[Only registered and activated users can see links. Click Here To Register...]

damn.. how to show the pic :D in this forum
09/11/2013 17:45 moemet#6
Quote:
Originally Posted by pungvit View Post
found it.. now what bin i must to edit..:mofo:

[Only registered and activated users can see links. Click Here To Register...]

damn.. how to show the pic :D in this forum
Check this gan simple view ...FYI each bin have dif format, use vrohan script as reference ..cmiiw :D

Reference : [Only registered and activated users can see links. Click Here To Register...]

simple view : itemcombination.bin
C# : add filedialog + datagridview + button
cpaste :
Code:
   private void button_Click(object sender, EventArgs e)
        {

           
            openFileDialog1.ShowDialog();
            string _str = openFileDialog1.FileName ;
            if (_str != "")
            {
                using (FileStream fs = new FileStream(_str, FileMode.Open, FileAccess.Read))
                {
                    using (DataTable dt = new DataTable())
                    {
                        dt.Columns.Add("No", typeof(int));
                        dt.Columns.Add("Pos", typeof(long));
                        dt.Columns.Add("value", typeof(string));
                        using (BinaryReader br = new BinaryReader(fs))
                        {
                            int _no = 1;
                            int bspos = 0;
                            br.BaseStream.Position = bspos;
                            while (br.BaseStream.Position < br.BaseStream.Length - bspos)
                            {
                               
                                    long _pos = br.BaseStream.Position;
                                    int _val1 = br.ReadInt32();
                                    dt.Rows.Add(_no, _pos,Convert.ToString( _val1));
                                    _no += 1;
                                

                            }
                        }
                       
                        dataGridView1.DataSource = dt;

                    }
                }
            }
           
        }
09/13/2013 22:48 veenzaa#7
finally i gt this after more than 2weeks that file makes me headache :(
PM me if u need it :D
Quote:
[Only registered and activated users can see links. Click Here To Register...]
09/13/2013 23:13 downyo#8
can anyone tell me where i must edit ip's for thiis files RoHan (original folder name in VMWare)ty
09/14/2013 07:13 ultimate-pinoy#9
Quote:
Originally Posted by veenzaa View Post
finally i gt this after more than 2weeks that file makes me headache :(
PM me if u need it :D
what is the name of the extension or name of the cacl? thanks!
09/14/2013 13:42 pungvit#10
Thank's a lot moemet..