المساعد الشخصي الرقمي

مشاهدة النسخة كاملة : اضافة الميلاد كامل بالشخصية الجديده


محمد ياسر
2019-04-28, 10:37 PM
السلام عليكم ورحمة الله وبركاته
اعضاء منتدي اكواد في بعض الناس الي حملة السورس البروتوا وده فيه مشاكل كتير ذي مابيقول البعض
واوله ان الشخصية الجديده Thunder T.striker
مش موجوده في الميلاد وده حاجه بسيطه يلا نضيفهم في الميلاد الاول التاني
في NPCS.CS
ابحث عن
case 59558:
اقفله من السالب وبدله كله بده
#region RebirthMaster
case 59558:
{
dialog.Avatar(67);
switch (npcRequest.OptionID)
{
case 0:
{
dialog.Text("I devote all my life to the research of eternity. And finally I know the secret of rebirth! Well, anything I can help you with?");
dialog.Option("1st~Rebirth.", 1);
dialog.Option("2nd~Rebirth.", 4);
dialog.Option("Reincarnation.", 5);
dialog.Option("Reallot~my~Attribute~Points.", 8);
dialog.Option("Buy~Oblivion~Dew~100~k~CPs)", 10);
dialog.Option("Just~passing~by.", 255);
dialog.Send();
break;
}
case 1:
{
if (client.Entity.Reborn == 0 && (client.Entity.Level >= 110 && client.Entity.Class == 135 || client.Entity.Level >= 120 & client.Entity.Class % 10 == 5))
{
if (client.Inventory.Contains(721259, 1) || client.Inventory.Contains(721259, 1))
{
dialog.Text("There are two kinds of reborns. One is the normal one and the second one is blessed.");
dialog.Text("The normal reborn will give you the chance to get a Super Gem and the blessed reborn will set a -1 into one of your equipment that you wear during the reborn. What do you chose?");
dialog.Option("Normal reborn.", 2);
dialog.Option("Blessed reborn.", 3);
dialog.Option("I`ll~think~about~it.", 255);
dialog.Avatar(67);
dialog.Send();
}
else
{
dialog.Text("Sorry, you don't have CelestialStone.");
dialog.Option("I~see.", 255);
dialog.Avatar(67);
dialog.Send();
}
}
else
{
dialog.Text("You~haven`t~reached~the~highest~rank~yet.~Please~w ork~harder. You cannot reborn if your level is not 110+ for water saints and 120+ for other masters.");
dialog.Option("I~see.", 255);
dialog.Avatar(67);
dialog.Send();
}
break;
}
case 2:
{
dialog.Text("Select the super gem you desire.");
dialog.Option("SuperPhoenixGem.", 203);
dialog.Option("SuperDragonGem.", 213);
dialog.Option("SuperFuryGem.", 223);
dialog.Option("SuperRainbowGem.", 233);
dialog.Option("SuperVioletGem.", 253);
dialog.Option("SuperMoonGem.", 254);
dialog.Option("SuperKylinGem", 243);
dialog.Option("I`ll~think~about~it.", 255);
dialog.Avatar(67);
dialog.Send();
break;
}
case 203:
case 213:
case 223:
case 233:
case 253:
case 254:
case 243:
{
if (client.Entity.Reborn == 0)
{
client.RebornGem = (uint)(npcRequest.OptionID % 100);
if (client.RebornGem == 254)
client.RebornGem = 263;
}
dialog.Text("Select the class you want to reborn in.");
dialog.Option("Trojan.", 11);
dialog.Option("Warrior.", 21);
dialog.Option("Archer.", 41);
dialog.Option("WaterTaoist.", 132);
dialog.Option("FireTaoist.", 142);
dialog.Option("Ninja.", 51);
dialog.Option("Monk", 61);
dialog.Option("Pirate", 71);
dialog.Option("Dragon~Warrior", 81);
dialog.Option("WindWalker", 161);
dialog.Option("Thunder T.striker", 91);
dialog.Option("I`ll~think~about~it.", 255);
dialog.Avatar(67);
dialog.Send();
break;
}
case 3:
{
dialog.Text("Select the class you want to reborn in.");
dialog.Option("Trojan.", 11);
dialog.Option("Warrior.", 21);
dialog.Option("Archer.", 41);
dialog.Option("WaterTaoist.", 132);
dialog.Option("FireTaoist.", 142);
dialog.Option("Ninja.", 51);
dialog.Option("Monk", 61);
dialog.Option("Pirate", 71);
dialog.Option("Dragon~Warrior", 81);
dialog.Option("WindWalker", 161);
dialog.Option("Thunder T.striker", 91);
dialog.Option("I`ll~think~about~it.", 255);
dialog.Avatar(67);
dialog.Send();
break;
}
case 11:
case 21:
case 41:
case 132:
case 142:
case 51:
case 161:
case 61:
case 81:
case 71:
case 91:
{

if (!client.Inventory.HaveSpace(4))
{
dialog.Text("Sorry, but you need atleast 4 free spaces in your inventory.");
dialog.Option("I~see.", 255);
dialog.Avatar(67);
dialog.Send();
break;
}
if (client.Entity.Reborn == 0 && (client.Entity.Level >= 110 && client.Entity.Class == 135 || client.Entity.Level >= 120 & client.Entity.Class % 10 == 5))
{
if (client.Inventory.Contains(721259, 1))
{
client.Inventory.Remove(721259, 1);
if (client.RebornGem != 0)
{
client.Inventory.Add((uint)(700000 + client.RebornGem), 0, 1);
client.RebornGem = 0;
ConquerItem hand = client.Equipment.TryGetItem(5);
if (hand != null)
{
client.Equipment.Remove(5);
client.CalculateHitPoint();
client.CalculateMana();
client.LoadItemStats();
client.SendScreen(client.Entity.PlayerProto(client .Entity), false);
}
hand = client.Equipment.TryGetItem(4);
if (hand != null)
{
client.Equipment.Remove(4);
client.CalculateHitPoint();
client.CalculateMana();
client.LoadItemStats();
client.SendScreen(client.Entity.PlayerProto(client .Entity), false);
}
}
else
{
foreach (var item in client.Equipment.Objects)
{
if (item != null)
{
if (item.Position != ConquerItem.Steed || item.Position != ConquerItem.Wing)
{
if (item.Bless == 0)
{
item.Bless = 1;
item.Mode = Enums.ItemMode.Update;
item.Send(client);
break;
}
}
}
}
}
switch (npcRequest.OptionID)
{
case 161:
case 11:
case 21:
case 51:
case 61:
case 71:
case 81:
case 91:
{
client.Inventory.Add(410077, Enums.ItemEffect.Poison);
break;
}
case 41:
{
client.Inventory.Add(410077, Enums.ItemEffect.Poison);
break;
}
case 132:
case 142:
{
client.Inventory.Add(421077, Enums.ItemEffect.MP);
break;
}
}
using (var rec = new ServerSockets.RecycledPacket())
{
var stream = rec.GetStream();
Program.RebornInfo.Reborn(client.Entity, npcRequest.OptionID, stream);
}
}
else
{
dialog.Text("Sorry, you don't have CelatialStone.");
dialog.Option("I~see.", 255);
dialog.Avatar(67);
dialog.Send();
}
}
else if (client.Entity.Reborn == 1 && (client.Entity.Level >= 110 && client.Entity.Class == 135 || client.Entity.Level >= 120 & client.Entity.Class % 10 == 5))
{
if (client.Inventory.Contains(723701, 1))
{
client.Inventory.Remove(723701, 1);

using (var rec = new ServerSockets.RecycledPacket())
{
var stream = rec.GetStream();
Program.RebornInfo.Reborn(client.Entity, npcRequest.OptionID, stream);
}
}
else
{
dialog.Text("Sorry, you don't have ExemptionToken.");
dialog.Option("I~see.", 255);
dialog.Avatar(67);
dialog.Send();
}
}
break;
}
case 4:
{
if (client.Entity.Reborn == 1 && (client.Entity.Level >= 110 && client.Entity.Class == 135 || client.Entity.Level >= 120 & client.Entity.Class % 10 == 5))
{
if (client.Inventory.Contains(723701, 1))
{
dialog.Text("You don't worry, it's not gonna hurt you a bit when getting the third life. You just need an exemption token and it's all going to be fine.");
dialog.Option("Here is the ExemptionToken.", 3);
dialog.Option("I`ll~think~about~it.", 255);
dialog.Avatar(67);
dialog.Send();
}
else
{
dialog.Text("Sorry, you don't have ExemptionToken.");
dialog.Option("I~see.", 255);
dialog.Avatar(67);
dialog.Send();
}
}
else
{
dialog.Text("Sorry,~you~are~ineligible~for~second~rebirth.~Plea se~wait~until~you~are~a~level~120~reborn~person.");
dialog.Option("I~see.", 255);
dialog.Avatar(67);
dialog.Send();
}
break;
}
case 5:
{
dialog.Text("From now on, have total control of your life! If you've been Reborn twice and are at least Level 110, just bring me some Oblivion Dew and I'll help you become Reincarnated! After the Reincarnation, your class skills will revert to level 0,");
dialog.Text("~but they`ll return to their previous levels when you reach Level 110, again. If your classes have been the same for all three lives, including your current one, you can learn the Pure Skills from your class trainer,");
dialog.Text("~in the job center.");
dialog.Option("I~want~to~get~Reincarnated.", 6);
dialog.Option("Where~can~I~get~the~Dew?", 7);
dialog.Avatar(67);
dialog.Send();
break;
}
case 6:
{
if (client.Entity.Reborn == 2 && client.Inventory.Contains(711083, 1))
{
MsgActionProto Action = new MsgActionProto();
Action.ID = MsgActionEmulator.OpenWindow;
Action.UID = client.Entity.UID;
Action.dwParam = (uint)MsgActionEmulator.WindowCommands.Reincarnati on;
Action.TimeStamp = (uint)Time32.Now.GetHashCode();
Action.wParam1 = client.Entity.X;
Action.wParam2 = client.Entity.Y;
client.Send(MsgActionEmulator.SendPacket(Action));


}
else
{
dialog.Text("You have not been Reborn twice. I`m afraid you will not withstand the power of the Oblivion Dew. Come to me when you get stronger.");
dialog.Option("Got~it!~Thanks!", 255);
dialog.Avatar(67);
dialog.Send();
}
break;
}
case 7:
{
dialog.Text("Oblivion Dew is available in the Honor Store and the Horse Race Store. You can use your Honor Points or Horse Race Points to purchase one.");
dialog.Option("Got~it!~Thanks!", 255);
dialog.Avatar(67);
dialog.Send();
break;
}
case 8:
{
dialog.Text("Reborn~level~70+~players~can~redistribute~their~at tribute~points~at~the~cost~of~a~dragonball.");
dialog.Option("I~will~reallot~my~points.", 9);
dialog.Option("Let~me~think~it~over.", 255);
dialog.Avatar(67);
dialog.Send();
break;
}
case 9:
{
if (client.Entity.Level >= 70)
{
if (client.Inventory.Contains(1088000, 1))
{
client.Inventory.Remove(1088000, 1);

client.Entity.Agility = 0;
client.Entity.Strength = 0;
client.Entity.Vitality = 1;
client.Entity.Spirit = 0;

client.MessageBox("You have successfully reloaded your attribute points.");
if (client.Entity.Reborn == 0)
{
client.Entity.Atributes = 0;
Kernel.AtributeStatus.ResetStatsNonReborn(client.E ntity);
if (Database.AtributesStatus.IsWater(client.Entity.Cl ass))
{
if (client.Entity.Level > 110)
client.Entity.Atributes = (ushort)((client.Entity.Level - 110) * 3 + client.Entity.ExtraAtributes + client.Entity.MysteryFruit);
}
else
{
if (client.Entity.Level > 120)
client.Entity.Atributes = (ushort)((client.Entity.Level - 120) * 3 + client.Entity.ExtraAtributes + client.Entity.MysteryFruit);
}
}
else if (client.Entity.Reborn == 1)
{
client.Entity.Atributes = (ushort)(Program.RebornInfo.ExtraAtributePoints(cl ient.Entity.FirstRebornLevel, client.Entity.FirstRebornClass)
+ 52 + 3 * (client.Entity.Level - 15) + client.Entity.ExtraAtributes + client.Entity.MysteryFruit);
}
else
{
if (client.Entity.SecondRebornLevel == 0)
client.Entity.SecondRebornLevel = 130;
client.Entity.Atributes = (ushort)(Program.RebornInfo.ExtraAtributePoints(cl ient.Entity.FirstRebornLevel, client.Entity.FirstRebornClass) +
Program.RebornInfo.ExtraAtributePoints(client.Enti ty.SecondRebornLevel, client.Entity.SecondRebornClass) + 52 + 3 * (client.Entity.Level - 15) + client.Entity.ExtraAtributes + client.Entity.MysteryFruit);
}
using (var rec = new ServerSockets.RecycledPacket())
{
var stream = rec.GetStream();
client.Entity.SendUpdate(stream, client.Entity.Strength, Game.MsgServer.MsgUpdate.DataType.Strength);
client.Entity.SendUpdate(stream, client.Entity.Agility, Game.MsgServer.MsgUpdate.DataType.Agility);
client.Entity.SendUpdate(stream, client.Entity.Spirit, Game.MsgServer.MsgUpdate.DataType.Spirit);
client.Entity.SendUpdate(stream, client.Entity.Vitality, Game.MsgServer.MsgUpdate.DataType.Vitality);
client.Entity.SendUpdate(stream, client.Entity.Atributes, Game.MsgServer.MsgUpdate.DataType.Atributes);
}
}
else
{
dialog.Text("Sorry, you don't have one DragonBall.");
dialog.Option("I~see.", 255);
dialog.Avatar(67);
dialog.Send();
}
}
else
{
dialog.Text("You~cannot~reallot~your~ability~points~unless~you~ are~reborn~and~above~level~70.");
dialog.Option("I~see", 255);
dialog.Avatar(67);
dialog.Send();
}
break;
}
case 10:
{
if (client.Entity.ConquerPoints >= 100000)
{
client.Entity.ConquerPoints -= 100000;
client.Inventory.Add(711083, 0, 1);
}
else
{
dialog.Text("You~need~100~k~Cps");
dialog.Send();
}
break;
}
}
break;
}
#endregion

يلا نشوف ميلاد oblivionDew
روح كلاس MsgReincarnation
احذف كله وضيف دول
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;

namespace Code.Game.MsgServer
{
public static class MsgReincarnation
{

public static void GetReincarnation(this ServerSockets.Packet msg, out uint ToClass, out uint ToBody)
{
int timerstamp = msg.ReadInt32();

ToClass = msg.ReadUInt32();
ToBody = msg.ReadUInt32();
}
//[PacketAttribute(Game.GamePackets.Reincarnation)]
public unsafe static void Proces(Client.GameState user, ServerSockets.Packet stream)
{

uint ToClass;
uint ToBody;

stream.GetReincarnation(out ToClass, out ToBody);


if (ToClass == 11 || ToClass == 21 || ToClass == 41 || ToClass == 51 || ToClass == 61 || ToClass == 71 || ToClass == 81 || ToClass == 132 || ToClass == 142 || ToClass == 91 || ToClass == 161)
{
if (user.Inventory.Contains(711083, 1))
{
if (user.Entity.Level >= 110 && user.Entity.Reborn == 2)
{
if (Network.PacketHandler.IsBoy(user.Entity.Body))
{
switch (ToBody)
{
case 1:
user.Entity.Body = 1003;
break;
case 2:
user.Entity.Body = 1004;
break;
}
}
else
{
switch (ToBody)
{
case 1:
user.Entity.Body = 2001;
break;
case 2:
user.Entity.Body = 2002;
break;
}
}
user.Inventory.Remove(711083, 1);
Program.RebornInfo.Reborn(user.Entity, (byte)ToClass, stream);
}
else
user.MessageBox("You have not been Reborn twice or you are not level 110 ++");
}
}

}
}
}
كده خلصنا ومفهاش صعوبه ابدا

nova
2019-04-28, 11:00 PM
حضرتك يا ريت تنزل شرح اضافة الشخصية الجديدة كاملة لسورس البروتو يعنى الناس اللى معاها سورس البروتو من غير الشخصية ومحتاجه تضيف الشخصية يريت بعد اذنك

محمد ياسر
2019-04-29, 07:13 AM
لحد الان محدش معه اضافه الشخصية غير في السورس
الايام ده مشغول شويه افضي واشفها

محمد ياسر
2019-04-29, 10:55 AM
حضرتك يا ريت تنزل شرح اضافة الشخصية الجديدة كاملة لسورس البروتو يعنى الناس اللى معاها سورس البروتو من غير الشخصية ومحتاجه تضيف الشخصية يريت بعد اذنك

اتفضل
موضوع اضافه الشخصية الجديده (عفواً لايمكن عرض الروابط في الإرشيف)

nova
2019-04-30, 02:22 PM
[قولك يا حازم انا ضيفت اللى ف الموضوع بس جايلى ايرور ف كلمتين
دول اهم
عفواً لايمكن عرض الروابط في الإرشيف


عفواً لايمكن عرض الروابط في الإرشيف

nova
2019-04-30, 02:23 PM
عفواً لايمكن عرض الروابط في الإرشيف



عفواً لايمكن عرض الروابط في الإرشيف

Users
2019-05-07, 10:33 PM
ألشخصيه بتنزل ترجن :d

محمد ياسر
2019-05-08, 01:03 PM
ألشخصيه بتنزل ترجن :d

يبا تعريف الشخصية عندك مش موجود

Users
2019-05-08, 02:44 PM
الشخصيه كامله باسكلاتها بكل حاجه والعريقة وكلو تمام بين فى اضافه الريبون بينزل ترجن فى الميلاد الاولفين ديو مش موجوده اساسا

بشيغلاشمغ
2019-06-04, 12:03 PM
عااااااااااااااااااااااااااش

osamamand
2019-06-12, 11:18 AM
شكرا على الموضوع

osama
2019-07-05, 02:53 PM
مش كامل زى ما بتقولو والتكويد بتعها غلط علشان معمولة بتع البريث مش ThunderGeneral

abuhaneen
2020-02-11, 01:12 AM
tnxs

magdy
2020-02-14, 12:18 AM
dddssd

magicoteam
2020-02-16, 12:05 PM
aa

mohammedshafik
2023-05-25, 10:00 AM
thxxxxx

zezotheking1
2024-08-23, 10:17 AM
ty ty ty