[VSRO] Client alchemy plus success opcode ?

04/10/2018 08:29 multiuses#1
hi there
i wonder if someone can share with me the sro_client alchemy plus success opcode ?
i will really appreciate it please help :handsdown:
04/11/2018 04:23 Isoline*#2
There is no packet for "success"
you gotta parse the alchemy action packet then isolate the particular byte that differ a success action from others.
04/11/2018 13:33 multiuses#3
Quote:
Originally Posted by eitai123 View Post
There is no packet for "success"
you gotta parse the alchemy action packet then isolate the particular byte that differ a success action from others.
how to parse it ? can u help ?
04/11/2018 15:30 Isoline*#4
Quote:
Originally Posted by multiuses View Post
how to parse it ? can u help ?
This snippet should help

Code:
                            if (OUT_REMOTE[i].Opcode == 0xB150 && OUT_REMOTE[i].GetBytes().Length > 12)//alchemy attempt
                            {
                                if (Settings.PLUS_REQ_NOTICE != 0 || UTILS.AE_EVENT)
                                {
                                    OUT_REMOTE[i].ReadUInt16();
                                    OUT_REMOTE[i].ReadUInt8();
                                    int slot = OUT_REMOTE[i].ReadUInt8();
                                    OUT_REMOTE[i].ReadUInt64();
                                    byte plusvalue = OUT_REMOTE[i].ReadUInt8();//UTILS.WriteLine(plusvalue);      
                                    if (plusvalue >= Settings.PLUS_REQ_NOTICE)//anything from current plus will be noticed.