Editting CHI and Jiang in database

01/04/2014 07:04 .Light#1
Alright so with chi, all it shows in the database is the user id, points, and then (BLOB) <-wtf lol

Jiang - not sure how to edit that from the database, like what the values mean. I know what tables to edit but how do I find out what values mean what?

Thanks,
Light
01/04/2014 10:06 The-Dreamer#2
BLOB is a byte array saved on mysql >> as far as i know :D
An easy way for editing it, is changing the values from the source and saving it again :D >> hope u understand xD
For JiangHu , i don't know the way u used it
I made it like chi , using BLOBs
a fast explanation .. The way i use ..

When i study Jiang i make two variables

Code:
byte Type = (byte)Kernel.Random.Next(1, 16);
            byte Value = (byte)Kernel.Random.Next(1, 7);
and for showing them ..
Code:
 int offset = 30 + (Stage - 1) * 18;
            foreach (var attribute in Power.Attributes)
            {
               
                if (attribute.Value == 0 && attribute.Type == 0)
                    break;
                WriteInt32(attribute.Type, offset, Packet);
                offset++;
                WriteInt32(attribute.Value, offset, Packet);
                offset++;
            }
Hope u understand me :)
01/04/2014 10:11 MeGaMaX#3
(BLOB) Means binary large object, do you use mssql or mysql , if your database not have stored procedure for doing the BLOB then the server side should have the method for creating it ! make your own editor or create a server side command.

example maybe helpful

[Only registered and activated users can see links. Click Here To Register...]
01/04/2014 11:23 abdoumatrix#4
this could help for editing chi
01/05/2014 00:56 .Light#5
Quote:
Originally Posted by abdoumatrix View Post
this could help for editing chi
what's the command usage with this? like @matrixchi bla bla
01/05/2014 11:03 abdoumatrix#6
Quote:
Originally Posted by .Light View Post
what's the command usage with this? like @matrixchi bla bla
@matrixchi x x x