[Release] Nostale client 2006

10/26/2014 14:34 ankinus#16
Quote:
Originally Posted by JMII89 View Post
Yeah, if i remember good the 2006 decrypt was equal at the current version but without the mask part..

Wallpaper (algorithm)

Code:
private enum ColorType
{
    ARGB,
    BGRA
}

private Color ARGBColor(int A, int B, int C, int D, ColorType colorType)
{
    switch(colorType)
    {
        case ColorType.BGRA:
            return Color.FromArgb(D, C, B, A);
        default:
            return Color.FromArgb(0, 0, 0, 0);
    }
}

private Bitmap LoadWallpaper(string path)
{
    BinaryReader Reader = new BinaryReader(File.Open(path, FileMode.Open));
    Bitmap Image = new Bitmap(Reader.ReadInt16(), Reader.ReadInt16());
    for (Int16 i = 0; (i * 256) <= Image.Width; i++)
        for (Int16 Y = 0; Y < Image.Height; Y++)
            for (Int16 X = Convert.ToInt16(i * 256); X < (i * 256) + 256 && X < Image.Width; X++)
                Image.SetPixel(X, Y, ARGBColor(Reader.ReadByte(), Reader.ReadByte(), Reader.ReadByte(), Reader.ReadByte(), ColorType.BGRA));
    return Image;
}
Why you delete previous code? any secret? xD
10/26/2014 14:57 JMII89#17
Quote:
Originally Posted by ankinus View Post
Why you delete previous code? any secret? xD
Nope, i was not sure about the posted code so i removed it.. I will post the complete class in some hour.. :)
10/26/2014 15:00 _RowLegend_#18
Quote:
Originally Posted by JMII89 View Post
Nope, i was not sure about the posted code so i removed it.. I will post the complete class in some hour.. :)
Why u dont release a Tool to view every Image by one click? :(
10/26/2014 15:10 JMII89#19
Quote:
Originally Posted by _RowLegend_ View Post
Why u dont release a Tool to view every Image by one click? :(
I can make that, gimme some hour, i will add it in 0.2 version ! :handsdown:
10/26/2014 15:28 _RowLegend_#20
Quote:
Originally Posted by JMII89 View Post
I can make that, gimme some hour, i will add it in 0.2 version ! :handsdown:
Dont forget the SaveButton!
10/26/2014 18:35 JMII89#21
Version 0.2 released in the day as promised !
10/26/2014 18:41 _RowLegend_#22
Well played, but the save function dont work. The Button is always disabled.
So could u add the function to open Nsip?
10/26/2014 18:57 JMII89#23
Quote:
Originally Posted by _RowLegend_ View Post
Well played, but the save function dont work. The Button is always disabled.
So could u add the function to open Nsip?
The next version will be Small update that will include all details for the editing.. Save button as example.. Instead, the next version (probably called 0.3) will be a Major update that will aim on the archives support.. This may seem trivial but i can affirm that isn't so, you will need to be patient until the next release.
10/28/2014 16:46 FI0w#24
JMII for what ? xD Some people cant do a server so is the IMG tool useless but for people they have a Server for 2006(like me ~ xD) is this nice :P
10/28/2014 17:23 Marvin341#25
Quote:
Originally Posted by xSensitivex View Post
JMII for what ? xD Some people cant do a server so is the IMG tool useless but for people they have a Server for 2006(like me ~ xD) is this nice :P
How to do a Server for the 2006 Client? I Don'T understand it
10/31/2014 15:33 JMII89#26
Quote:
Originally Posted by Marvin341 View Post
How to do a Server for the 2006 Client? I Don'T understand it
Because you aren't a developer.. if you study then you understand.. :rolleyes:
11/03/2014 19:27 _RowLegend_#27
Quote:
Originally Posted by JMII89 View Post
The next version will be Small update that will include all details for the editing.. Save button as example.. Instead, the next version (probably called 0.3) will be a Major update that will aim on the archives support.. This may seem trivial but i can affirm that isn't so, you will need to be patient until the next release.
Something new?
11/03/2014 20:35 JMII89#28
Quote:
Originally Posted by _RowLegend_ View Post
Something new?
Not really but i can assure you all that the project isn't died ! I'm working on more than 1 project so i have to alternate between the projects, yesterday for example i worked on the server project compatible not only for the 2014 version but also for the 2006.. Currently i'm also working on ps3 and SF2 so i really haven't full time for think the editor.. Comes also the time for it, please remain patient.

Here a screen of the server compatible with 2006 version as proof of what i told you. [Only registered and activated users can see links. Click Here To Register...]
11/04/2014 15:14 Marvin341#29
How do i now from the source the files? What need i to learn?
11/04/2014 15:50 szymek111#30
Quote:
Originally Posted by Marvin341 View Post
How do i now from the source the files? What need i to learn?
Proggraming language ? ??