public static bool ReadCapsule(int Index, out STRUCT_CAPSULE Seal) { Seal = STRUCT_CAPSULE.Empty(); try { string CorrectPatch = "./DataBase/Selo_da_Alma/" + Index + ".json"; if (!File.Exists(CorrectPatch)) { return(false); } using (StreamReader r = new StreamReader(CorrectPatch)) { string json = r.ReadToEnd(); Seal = JsonConvert.DeserializeObject <STRUCT_CAPSULE>(json); } W2Log.Write(String.Format("read seal sucess: {0}", Index), ELogType.GAME_EVENT); } catch (Exception e) { W2Log.Write(String.Format("read seal fail {0}", e.Message), ELogType.GAME_EVENT); return(false); } return(true); }
//Process PutCapsule (Cria o Selo da Alma e Apaga o Char) public static DBResult Exec_MSG_DBPutInCapsule(DBController gs, pServer GameServer) { _MSG_SIGNALPARM sm = W2Marshal.GetStructure <_MSG_SIGNALPARM>(GameServer.RecvPacket.RawBuffer); ConfigServer.ReadConfigFile(gs.Config); int Slot = sm.parm; int Idx = gs.GetIndex(sm.Header.ClientId); if (Slot < 0 || Slot >= 4) { W2Log.Write($"err,putincapsule slot out of range - {gs.AccountList[Idx].Account.Info.AccountName}"); return(DBResult.NO_ERROR); } gs.Config.LastCapsule++; MItem Cap = MItem.Empty(); Cap.Index = 3443; Cap.Effects[0].Code = 59; Cap.Effects[0].Value = (byte)(gs.Config.LastCapsule / 256); Cap.Effects[1].Code = 59; Cap.Effects[1].Value = (byte)gs.Config.LastCapsule; Cap.Effects[2].Code = 59; Cap.Effects[2].Value = 0; short Face = gs.AccountList[Idx].Account.Mob[Slot].Equip.Items[0].Index; if ((Face % 10) >= 6 && (gs.AccountList[Idx].Account.Mob[Slot].LearnedSkill & 0x40000000) != 0) { Cap.Effects[3].Value = 1; } STRUCT_CAPSULE File = STRUCT_CAPSULE.Empty(); //Sava a capsule File.Mob = gs.AccountList[Idx].Account.Mob[Slot]; File.Extra = gs.AccountList[Idx].Account.MobExtra[Slot]; File.Extra.Arch.MortalSlot = -1; if (!Functions.WriteCapsule(gs.Config.LastCapsule, File)) { W2Log.Write($"fail putchar in capsule [{gs.AccountList[Idx].Account.Info.AccountName}]"); return(DBResult.NO_ERROR); } W2Log.Write($"putchar in capsule [{gs.AccountList[Idx].Account.Info.AccountName}]"); ConfigServer.saveConfig(gs.Config); //Apaga o char do q fez a capsule gs.AccountList[Idx].Account.Mob[Slot] = STRUCT_MOB.ClearProperty(); gs.AccountList[Idx].Account.MobExtra[Slot] = new STRUCT_MOBEXTRA(); gs.AccountList[Idx].Account.Skillbar[Slot] = STRUCT_SKILLBAR.Clear(); for (int i = 0; i < 32; i++) { gs.AccountList[Idx].Account.Affects[Slot].Affects[i] = STRUCT_AFFECT.Clear(); } bool ret = gs.SaveAccount(sm.Header.ClientId); if (ret == false) { W2Log.Write(string.Format("err,putchar in capsule fail - save account - {0}", Idx), ELogType.GAME_EVENT); gs.Server.SendSignal(sm.Header.ClientId, BaseDef._MSG_DBNewCharacterFail); return(DBResult.NO_ERROR); } gs.Server.SendSignal(sm.Header.ClientId, BaseDef._MSG_DBCNFCapsuleSucess); MSG_CNFNewCharacter answer = W2Marshal.CreatePacket <MSG_CNFNewCharacter>(BaseDef._MSG_DBCNFDeleteCharacter, sm.Header.ClientId); for (int i = 0; i < GameBasics.MAXL_ACC_MOB; i++) { unsafe { answer.SelChar.Coin[i] = gs.AccountList[Idx].Account.Mob[i].Coin; for (int x = 0; x < GameBasics.MAXL_EQUIP; x++) { if (x == 0) { int Faces = answer.SelChar.Equip[i].Items[x].Index; if (Faces == 22 || Faces == 23 || Faces == 24 || Faces == 25 || Faces == 32) { Faces = gs.AccountList[Idx].Account.MobExtra[i].ClassMaster == 0 ? 21 : (ushort)gs.AccountList[Idx].Account.MobExtra[i].MortalFace + 7; } answer.SelChar.Equip[i].Items[x].Index = (short)Faces; answer.SelChar.Equip[i].Items[x].Effects[0].Code = 43; answer.SelChar.Equip[i].Items[x].Effects[0].Value = 0; answer.SelChar.Equip[i].Items[x].Effects[1].Code = 86; answer.SelChar.Equip[i].Items[x].Effects[1].Value = Functions.GetClassType(gs.AccountList[Idx].Account.Mob[i]); answer.SelChar.Equip[i].Items[x].Effects[2].Code = 28; answer.SelChar.Equip[i].Items[x].Effects[2].Value = (byte)gs.AccountList[Idx].Account.MobExtra[i].Citizen; } answer.SelChar.Equip[i].Items[x] = gs.AccountList[Idx].Account.Mob[i].Equip.Items[x]; } answer.SelChar.Exp[i] = (int)gs.AccountList[Idx].Account.Mob[i].Exp; answer.SelChar.Guild[i] = gs.AccountList[Idx].Account.Mob[i].Guild; answer.SelChar.Name[i].Value = gs.AccountList[Idx].Account.Mob[i].Name; answer.SelChar.Score[i] = gs.AccountList[Idx].Account.Mob[i].BaseScore; answer.SelChar.SPosX[i] = gs.AccountList[Idx].Account.Mob[i].SPX; answer.SelChar.SPosY[i] = gs.AccountList[Idx].Account.Mob[i].SPY; } } gs.Server.SendPacket(answer); Functions.CreateImportItem(gs.AccountList[Idx].Account.Info.AccountName, Cap, 0, true); W2Log.Write($"sucess putchar in capsule [{gs.AccountList[Idx].Account.Info.AccountName}]"); return(DBResult.NO_ERROR); }