hey adz does rb and guild work cuz i do have the newest source but not sure how to rb and make guilds
Hey, Thanks for ur help, I got ur new source now, But i found some bugs, ( Not all bugs, :p )Quote:
Reborns are 100% Guilds are 40% (Createable)
But this is just a test release and because the features aren't completed yet i'm not giving any support.
Hope u can fix it, I'll tell you when I'll find more :DQuote:
- Account won't be saved when ur using the /dc command,
- The skill FireOfHell, is hitting to low, other skills hit like 75K and FireOfHell 10K,
- Wrong spelling, When it loads the guilds, its like this : Guild 1 NameHere laoded,
- Wrong spelling of "Friend" its now : HandelFreind.cs :p
- When u drop an item, U can't pick it up anymore,
- The /gm Command don't work,
The /hair command, You can find it in ur Chat.cs, replace this with the old one :Quote:
if (Splitter[0] == "/mana")
{
TheClient.MyChar.CurMana=TheClient.MyChar.MaxMana;
TheClient.SendPacket(ThePackets.Vital((long)TheCli ent.MyChar.UID, 2, TheClient.MyChar.MaxMana));
//TheClient.SendPacket(ThePackets.CharacterInfo(TheC lient.MyChar));
TheClient.MyChar.SaveChar();
}
The sex reward , You can find it in ur NPCDialog.cs, replace this with the old one :Quote:
if (Splitter[0] == "/hair")
{
TheClient.MyChar.Hair = Convert.ToInt16(Splitter[1]);
TheClient.SendPacket(ThePackets.Vital((long)TheCli ent.MyChar.UID, 27, TheClient.MyChar.Hair));
TheClient.MyChar.SaveChar();
}
The HP Bar when logging in for the First time , You can find it in ur WorldHandler.cs , add those lines :Quote:
if (TheRew[0] == "smallmale") //Small Male Look
{
ClickyClient.MyChar.Model = 671003;
ClickyClient.SendPacket(ThePackets.Vital((long)Cli ckyClient.MyChar.UID, 12, Convert.ToInt32(ClickyClient.MyChar.Model)));
ClickyClient.MyChar.SaveChar();
}
if (TheRew[0] == "bigmale") //Big Male Look
{
ClickyClient.MyChar.Model = 671004;
ClickyClient.SendPacket(ThePackets.Vital((long)Cli ckyClient.MyChar.UID, 12, Convert.ToInt32(ClickyClient.MyChar.Model)));
ClickyClient.MyChar.SaveChar();
}
if (TheRew[0] == "bigfemale") //Big Female Look
{
ClickyClient.MyChar.Model = 2012002;
ClickyClient.SendPacket(ThePackets.Vital((long)Cli ckyClient.MyChar.UID, 12, Convert.ToInt32(ClickyClient.MyChar.Model)));
ClickyClient.MyChar.SaveChar();
}
if (TheRew[0] == "smallfemale") //Small Female Look
{
ClickyClient.MyChar.Model = 2012001;
ClickyClient.SendPacket(ThePackets.Vital((long)Cli ckyClient.MyChar.UID, 12, Convert.ToInt32(ClickyClient.MyChar.Model)));
ClickyClient.MyChar.SaveChar();
}
My First reborn fixes :Quote:
TheClient.MyChar.CurHP = TheClient.MyChar.MaxHP;
TheClient.SendPacket(ThePackets.Vital2((long)TheCl ient.MyChar.UID, TheClient.MyChar.CurHP));
( Based on Adz his source ! )Quote:
if (TheRew[0] == "reborn1tro") //Trojan
{
ClickyClient.MyChar.Rb = 1;
ClickyClient.MyChar.Level = 15;
ClickyClient.SendPacket(ThePackets.Vital((long)Cli ckyClient.MyChar.UID, 13, ClickyClient.MyChar.Level));
ClickyClient.MyChar.Exp = 0;
ClickyClient.SendPacket(ThePackets.Vital((long)Cli ckyClient.MyChar.UID, 5, Convert.ToInt32(ClickyClient.MyChar.Exp)));
ClickyClient.MyChar.CharClass = 11;
ClickyClient.MyChar.Strength = 300;
ClickyClient.MyChar.Agility = 300;
ClickyClient.MyChar.Vitality = 300;
ClickyClient.MyChar.Spirit = 300;
ClickyClient.SendPacket(ThePackets.Vital((long)Cli ckyClient.MyChar.UID, 14, Convert.ToInt32(ClickyClient.MyChar.Strength)));
ClickyClient.SendPacket(ThePackets.Vital((long)Cli ckyClient.MyChar.UID, 15, Convert.ToInt32(ClickyClient.MyChar.Vitality)));
ClickyClient.SendPacket(ThePackets.Vital((long)Cli ckyClient.MyChar.UID, 16, Convert.ToInt32(ClickyClient.MyChar.Spirit)));
ClickyClient.SendPacket(ThePackets.Vital((long)Cli ckyClient.MyChar.UID, 17, Convert.ToInt32(ClickyClient.MyChar.Agility)));
ClickyClient.SendPacket(ThePackets.Vital((long)Cli ckyClient.MyChar.UID, 7, Convert.ToInt32(ClickyClient.MyChar.CharClass)));
ClickyClient.MyChar.Eq_Armor = "130209-5-3-255-13-0";
ClickyClient.MyChar.Eq_Boots = "160019-5-3-255-13-0";
ClickyClient.MyChar.Eq_HeadGear = "118909-5-3-255-13-0";
ClickyClient.MyChar.Eq_LeftHand = "410029-5-3-255-13-13";
ClickyClient.MyChar.Eq_Necklace = "120009-5-3-255-13-0";
ClickyClient.MyChar.Eq_RightHand = "480029-5-3-255-13-13";
ClickyClient.MyChar.Eq_Ring = "150019-5-3-255-13-0";
ClickyClient.SendPacket(ThePackets.SendMsg(ClickyC lient.MessageId, "System", ClickyClient.MyChar.CharName, "Congratulations! You have been reborned for the first time!", 2011));
ClickyClient.MyChar.SendEquips2();
ClickyClient.MyChar.SaveChar();
Done = true;
}
if (TheRew[0] == "reborn1tao") //Taoist
{
ClickyClient.MyChar.Rb = 1;
ClickyClient.MyChar.Level = 15;
ClickyClient.SendPacket(ThePackets.Vital((long)Cli ckyClient.MyChar.UID, 13, ClickyClient.MyChar.Level));
ClickyClient.MyChar.Exp = 0;
ClickyClient.SendPacket(ThePackets.Vital((long)Cli ckyClient.MyChar.UID, 5, Convert.ToInt32(ClickyClient.MyChar.Exp)));
ClickyClient.MyChar.CharClass = 101;
ClickyClient.MyChar.Strength = 300;
ClickyClient.MyChar.Agility = 300;
ClickyClient.MyChar.Vitality = 300;
ClickyClient.MyChar.Spirit = 300;
ClickyClient.SendPacket(ThePackets.Vital((long)Cli ckyClient.MyChar.UID, 14, Convert.ToInt32(ClickyClient.MyChar.Strength)));
ClickyClient.SendPacket(ThePackets.Vital((long)Cli ckyClient.MyChar.UID, 15, Convert.ToInt32(ClickyClient.MyChar.Vitality)));
ClickyClient.SendPacket(ThePackets.Vital((long)Cli ckyClient.MyChar.UID, 16, Convert.ToInt32(ClickyClient.MyChar.Spirit)));
ClickyClient.SendPacket(ThePackets.Vital((long)Cli ckyClient.MyChar.UID, 17, Convert.ToInt32(ClickyClient.MyChar.Agility)));
ClickyClient.SendPacket(ThePackets.Vital((long)Cli ckyClient.MyChar.UID, 7, Convert.ToInt32(ClickyClient.MyChar.CharClass)));
ClickyClient.MyChar.CurMana = ClickyClient.MyChar.MaxMana;
ClickyClient.SendPacket(ThePackets.Vital((long)Cli ckyClient.MyChar.UID, 2, ClickyClient.MyChar.MaxMana));
ClickyClient.MyChar.Eq_Armor = "134209-5-3-255-3-0";
ClickyClient.MyChar.Eq_Boots = "160019-5-3-255-3-0";
ClickyClient.MyChar.Eq_HeadGear = "114909-5-3-255-3-0";
ClickyClient.MyChar.Eq_LeftHand = "0";
ClickyClient.MyChar.Eq_Necklace = "121009-5-3-255-3-0";
ClickyClient.MyChar.Eq_RightHand = "421029-5-3-255-3-3";
ClickyClient.MyChar.Eq_Ring = "152019-5-3-255-3-0";
ClickyClient.SendPacket(ThePackets.SendMsg(ClickyC lient.MessageId, "System", ClickyClient.MyChar.CharName, "Congratulations! You have been reborned for the first time!", 2011));
ClickyClient.MyChar.SendEquips2();
ClickyClient.MyChar.SaveChar();
Done = true;
}
if (TheRew[0] == "reborn1war") //Warrior
{
ClickyClient.MyChar.Rb = 1;
ClickyClient.MyChar.Level = 15;
ClickyClient.SendPacket(ThePackets.Vital((long)Cli ckyClient.MyChar.UID, 13, ClickyClient.MyChar.Level));
ClickyClient.MyChar.Exp = 0;
ClickyClient.SendPacket(ThePackets.Vital((long)Cli ckyClient.MyChar.UID, 5, Convert.ToInt32(ClickyClient.MyChar.Exp)));
ClickyClient.MyChar.CharClass = 21;
ClickyClient.MyChar.Strength = 300;
ClickyClient.MyChar.Agility = 300;
ClickyClient.MyChar.Vitality = 300;
ClickyClient.MyChar.Spirit = 300;
ClickyClient.SendPacket(ThePackets.Vital((long)Cli ckyClient.MyChar.UID, 14, Convert.ToInt32(ClickyClient.MyChar.Spirit)));
ClickyClient.SendPacket(ThePackets.Vital((long)Cli ckyClient.MyChar.UID, 15, Convert.ToInt32(ClickyClient.MyChar.Vitality)));
ClickyClient.SendPacket(ThePackets.Vital((long)Cli ckyClient.MyChar.UID, 16, Convert.ToInt32(ClickyClient.MyChar.Strength)));
ClickyClient.SendPacket(ThePackets.Vital((long)Cli ckyClient.MyChar.UID, 17, Convert.ToInt32(ClickyClient.MyChar.Agility)));
ClickyClient.SendPacket(ThePackets.Vital((long)Cli ckyClient.MyChar.UID, 7, Convert.ToInt32(ClickyClient.MyChar.CharClass)));
ClickyClient.MyChar.Eq_Armor = "131909-5-3-255-13-0";
ClickyClient.MyChar.Eq_Boots = "160019-5-3-255-13-0";
ClickyClient.MyChar.Eq_HeadGear = "111309-5-3-255-13-0";
ClickyClient.MyChar.Eq_LeftHand = "0";
ClickyClient.MyChar.Eq_Necklace = "120009-5-3-255-13-0";
ClickyClient.MyChar.Eq_RightHand = "561029-5-3-255-13-13";
ClickyClient.MyChar.Eq_Ring = "150019-5-3-255-13-0";
ClickyClient.SendPacket(ThePackets.SendMsg(ClickyC lient.MessageId, "System", ClickyClient.MyChar.CharName, "Congratulations! You have been reborned for the first time!", 2011));
ClickyClient.MyChar.SendEquips2();
ClickyClient.MyChar.SaveChar();
Done = true;
}
Like i said this is a test release there is bound to be bugs also on the skills i have no problems with, the spelling thats hardly a bug lol.Quote:
Hey, Thanks for ur help, I got ur new source now, But i found some bugs, ( Not all bugs, :p )
Here they are :
Hope u can fix it, I'll tell you when I'll find more :D
The only thing u changed is SendEquips to SendEquips2 and the rb message not much of a fix, i wouldnt reccomend this because now u wont see the left hand weapon.Quote:
f (TheRew[0] == "reborn1tro") //Trojan
{
ClickyClient.MyChar.Rb = 1;
ClickyClient.MyChar.Level = 15;
ClickyClient.SendPacket(ThePackets.Vital((long)Cli ckyClient.MyChar.UID, 13, ClickyClient.MyChar.Level));
ClickyClient.MyChar.Exp = 0;
ClickyClient.SendPacket(ThePackets.Vital((long)Cli ckyClient.MyChar.UID, 5, Convert.ToInt32(ClickyClient.MyChar.Exp)));
ClickyClient.MyChar.CharClass = 11;
ClickyClient.MyChar.Strength = 300;
ClickyClient.MyChar.Agility = 300;
ClickyClient.MyChar.Vitality = 300;
ClickyClient.MyChar.Spirit = 300;
ClickyClient.SendPacket(ThePackets.Vital((long)Cli ckyClient.MyChar.UID, 14, Convert.ToInt32(ClickyClient.MyChar.Strength)));
ClickyClient.SendPacket(ThePackets.Vital((long)Cli ckyClient.MyChar.UID, 15, Convert.ToInt32(ClickyClient.MyChar.Vitality)));
ClickyClient.SendPacket(ThePackets.Vital((long)Cli ckyClient.MyChar.UID, 16, Convert.ToInt32(ClickyClient.MyChar.Spirit)));
ClickyClient.SendPacket(ThePackets.Vital((long)Cli ckyClient.MyChar.UID, 17, Convert.ToInt32(ClickyClient.MyChar.Agility)));
ClickyClient.SendPacket(ThePackets.Vital((long)Cli ckyClient.MyChar.UID, 7, Convert.ToInt32(ClickyClient.MyChar.CharClass)));
ClickyClient.MyChar.Eq_Armor = "130209-5-3-255-13-0";
ClickyClient.MyChar.Eq_Boots = "160019-5-3-255-13-0";
ClickyClient.MyChar.Eq_HeadGear = "118909-5-3-255-13-0";
ClickyClient.MyChar.Eq_LeftHand = "410029-5-3-255-13-13";
ClickyClient.MyChar.Eq_Necklace = "120009-5-3-255-13-0";
ClickyClient.MyChar.Eq_RightHand = "480029-5-3-255-13-13";
ClickyClient.MyChar.Eq_Ring = "150019-5-3-255-13-0";
ClickyClient.SendPacket(ThePackets.SendMsg(ClickyC lient.MessageId, "System", ClickyClient.MyChar.CharName, "Congratulations! You have been reborned for the first time!", 2011));
ClickyClient.MyChar.SendEquips2();
ClickyClient.MyChar.SaveChar();
Done = true;
}
if (TheRew[0] == "reborn1tao") //Taoist
{
ClickyClient.MyChar.Rb = 1;
ClickyClient.MyChar.Level = 15;
ClickyClient.SendPacket(ThePackets.Vital((long)Cli ckyClient.MyChar.UID, 13, ClickyClient.MyChar.Level));
ClickyClient.MyChar.Exp = 0;
ClickyClient.SendPacket(ThePackets.Vital((long)Cli ckyClient.MyChar.UID, 5, Convert.ToInt32(ClickyClient.MyChar.Exp)));
ClickyClient.MyChar.CharClass = 101;
ClickyClient.MyChar.Strength = 300;
ClickyClient.MyChar.Agility = 300;
ClickyClient.MyChar.Vitality = 300;
ClickyClient.MyChar.Spirit = 300;
ClickyClient.SendPacket(ThePackets.Vital((long)Cli ckyClient.MyChar.UID, 14, Convert.ToInt32(ClickyClient.MyChar.Strength)));
ClickyClient.SendPacket(ThePackets.Vital((long)Cli ckyClient.MyChar.UID, 15, Convert.ToInt32(ClickyClient.MyChar.Vitality)));
ClickyClient.SendPacket(ThePackets.Vital((long)Cli ckyClient.MyChar.UID, 16, Convert.ToInt32(ClickyClient.MyChar.Spirit)));
ClickyClient.SendPacket(ThePackets.Vital((long)Cli ckyClient.MyChar.UID, 17, Convert.ToInt32(ClickyClient.MyChar.Agility)));
ClickyClient.SendPacket(ThePackets.Vital((long)Cli ckyClient.MyChar.UID, 7, Convert.ToInt32(ClickyClient.MyChar.CharClass)));
ClickyClient.MyChar.CurMana = ClickyClient.MyChar.MaxMana;
ClickyClient.SendPacket(ThePackets.Vital((long)Cli ckyClient.MyChar.UID, 2, ClickyClient.MyChar.MaxMana));
ClickyClient.MyChar.Eq_Armor = "134209-5-3-255-3-0";
ClickyClient.MyChar.Eq_Boots = "160019-5-3-255-3-0";
ClickyClient.MyChar.Eq_HeadGear = "114909-5-3-255-3-0";
ClickyClient.MyChar.Eq_LeftHand = "0";
ClickyClient.MyChar.Eq_Necklace = "121009-5-3-255-3-0";
ClickyClient.MyChar.Eq_RightHand = "421029-5-3-255-3-3";
ClickyClient.MyChar.Eq_Ring = "152019-5-3-255-3-0";
ClickyClient.SendPacket(ThePackets.SendMsg(ClickyC lient.MessageId, "System", ClickyClient.MyChar.CharName, "Congratulations! You have been reborned for the first time!", 2011));
ClickyClient.MyChar.SendEquips2();
ClickyClient.MyChar.SaveChar();
Done = true;
}
if (TheRew[0] == "reborn1war") //Warrior
{
ClickyClient.MyChar.Rb = 1;
ClickyClient.MyChar.Level = 15;
ClickyClient.SendPacket(ThePackets.Vital((long)Cli ckyClient.MyChar.UID, 13, ClickyClient.MyChar.Level));
ClickyClient.MyChar.Exp = 0;
ClickyClient.SendPacket(ThePackets.Vital((long)Cli ckyClient.MyChar.UID, 5, Convert.ToInt32(ClickyClient.MyChar.Exp)));
ClickyClient.MyChar.CharClass = 21;
ClickyClient.MyChar.Strength = 300;
ClickyClient.MyChar.Agility = 300;
ClickyClient.MyChar.Vitality = 300;
ClickyClient.MyChar.Spirit = 300;
ClickyClient.SendPacket(ThePackets.Vital((long)Cli ckyClient.MyChar.UID, 14, Convert.ToInt32(ClickyClient.MyChar.Spirit)));
ClickyClient.SendPacket(ThePackets.Vital((long)Cli ckyClient.MyChar.UID, 15, Convert.ToInt32(ClickyClient.MyChar.Vitality)));
ClickyClient.SendPacket(ThePackets.Vital((long)Cli ckyClient.MyChar.UID, 16, Convert.ToInt32(ClickyClient.MyChar.Strength)));
ClickyClient.SendPacket(ThePackets.Vital((long)Cli ckyClient.MyChar.UID, 17, Convert.ToInt32(ClickyClient.MyChar.Agility)));
ClickyClient.SendPacket(ThePackets.Vital((long)Cli ckyClient.MyChar.UID, 7, Convert.ToInt32(ClickyClient.MyChar.CharClass)));
ClickyClient.MyChar.Eq_Armor = "131909-5-3-255-13-0";
ClickyClient.MyChar.Eq_Boots = "160019-5-3-255-13-0";
ClickyClient.MyChar.Eq_HeadGear = "111309-5-3-255-13-0";
ClickyClient.MyChar.Eq_LeftHand = "0";
ClickyClient.MyChar.Eq_Necklace = "120009-5-3-255-13-0";
ClickyClient.MyChar.Eq_RightHand = "561029-5-3-255-13-13";
ClickyClient.MyChar.Eq_Ring = "150019-5-3-255-13-0";
ClickyClient.SendPacket(ThePackets.SendMsg(ClickyC lient.MessageId, "System", ClickyClient.MyChar.CharName, "Congratulations! You have been reborned for the first time!", 2011));
ClickyClient.MyChar.SendEquips2();
ClickyClient.MyChar.SaveChar();
Done = true;
}
Aww, I see...Quote:
The only thing u changed is SendEquips to SendEquips2 and the rb message not much of a fix, i wouldnt reccomend this because now u wont see the left hand weapon.
Well, That " req=PKPoints,10-PKPoints,10-PKPoints,10- " won't work, Just make it " req=gold,0gold,-gold,0-gold,0-gold,0 "Quote:
Hello :
[47]
face=8
txt0=Hello, i can trad some pk pts vs item you know...
opt0=Xp !-Money !-Cps !-nothing
req=PKPoints,10-PKPoints,10-PKPoints,10-
rew=exp,2000000-gold,100000-cps,100,-0
Dont worck, please help.