[RELEASE] Cool Effect

09/17/2009 16:53 BillsFan92#1
Hey guys, was bored and thought I would release this. So let's get started.

In character.cs at line 100 add

Quote:
Code:

public bool AllSuper = false;
in the "void TimerElapsed(object source, ElapsedEventArgs e)" you should find something like

Quote:
Code:

if (Action == 250)
After id add

Quote:
Code:

if (Action == 100)
if (Stamina < 100)
{
Stamina += 5;
if (Stamina > 100)
Stamina = 100;
MyClient.SendPacket(General.MyPackets.Vital(UID, 9, Stamina));
}
if (Action == 230)
{
if (Equips[3] != null)
{
FullSuper();
string TheEquip = Equips[3];
string[] Splitter = TheEquip.Split('-');
uint ItemId = uint.Parse(Splitter[0]);
if (Other.ItemQuality(ItemId) == 9 && (Equips[1] != null || Equips[4] == null) && (Equips[2] != null || Equips[2] == null) && (Equips[4] != null || Equips[4] == null) && (Equips[8] != null || Equips[8] == null) && (Equips[6] != null || Equips[6] == null))
{
if (Job <= 16 && Job >= 9)
{
foreach (DictionaryEntry DE in World.AllChars)
{
Character Chaar = (Character)DE.Value;
if (Chaar.Name != Name)
{
Chaar.MyClient.SendPacket(General.MyPackets.String (UID, 10, "warrior-s"));
}
}
MyClient.SendPacket(General.MyPackets.String(UID, 10, "warrior-s"));
Action = 100;
}
if (Job <= 26 && Job >= 19)
{
foreach (DictionaryEntry DE in World.AllChars)
{
Character Chaar = (Character)DE.Value;
if (Chaar.Name != Name)
{
Chaar.MyClient.SendPacket(General.MyPackets.String (UID, 10, "fighter-s"));
}
}
MyClient.SendPacket(General.MyPackets.String(UID, 10, "fighter-s"));
Action = 100;

}
if (Job <= 46 && Job >= 39)
{
foreach (DictionaryEntry DE in World.AllChars)
{
Character Chaar = (Character)DE.Value;
if (Chaar.Name != Name)
{
Chaar.MyClient.SendPacket(General.MyPackets.String (UID, 10, "archer-s"));
}
}
MyClient.SendPacket(General.MyPackets.String(UID, 10, "archer-s"));
Action = 100;
}
if (Job <= 146 && Job >= 100)
{
foreach (DictionaryEntry DE in World.AllChars)
{
Character Chaar = (Character)DE.Value;
if (Chaar.Name != Name)
{
Chaar.MyClient.SendPacket(General.MyPackets.String (UID, 10, "taoist-s"));
}
}
MyClient.SendPacket(General.MyPackets.String(UID, 10, "taoist-s"));
Action = 100;
}
}
if (AllSuper == true && Other.ItemQuality(ItemId) == 9 && Equips[1] != null && Equips[2] != null && Equips[3] != null && Equips[4] != null && Equips[8] != null && Equips[6] != null)
{
if (Job <= 16 && Job >= 9)
{
foreach (DictionaryEntry DE in World.AllChars)
{
Character Chaar = (Character)DE.Value;
if (Chaar.Name != Name)
{
Chaar.MyClient.SendPacket(General.MyPackets.String (UID, 10, "warrior"));
}
}
MyClient.SendPacket(General.MyPackets.String(UID, 10, "warrior"));
Action = 100;
}
if (Job <= 26 && Job >= 19)
{
foreach (DictionaryEntry DE in World.AllChars)
{
Character Chaar = (Character)DE.Value;
if (Chaar.Name != Name)
{
Chaar.MyClient.SendPacket(General.MyPackets.String (UID, 10, "fighter"));
}
}
MyClient.SendPacket(General.MyPackets.String(UID, 10, "fighter"));
Action = 100;

}
if (Job <= 46 && Job >= 39)
{
foreach (DictionaryEntry DE in World.AllChars)
{
Character Chaar = (Character)DE.Value;
if (Chaar.Name != Name)
{
Chaar.MyClient.SendPacket(General.MyPackets.String (UID, 10, "archer"));
}
}
MyClient.SendPacket(General.MyPackets.String(UID, 10, "archer"));
Action = 100;
}
if (Job <= 146 && Job >= 100)
{
foreach (DictionaryEntry DE in World.AllChars)
{
Character Chaar = (Character)DE.Value;
if (Chaar.Name != Name)
{
Chaar.MyClient.SendPacket(General.MyPackets.String (UID, 10, "taoist"));
}
}
MyClient.SendPacket(General.MyPackets.String(UID, 10, "taoist"));
Action = 100;
}
}
}
}
search for public Character()
Before it add:

Quote:
Code:

public void FullSuper()
{
if (Equips[1] != null && Equips[2] != null && Equips[3] != null && Equips[4] != null && Equips[8] != null && Equips[6] != null)
{
string TheEquip1 = Equips[1];
string TheEquip2 = Equips[2];
string TheEquip3 = Equips[3];
string TheEquip4 = Equips[4];
string TheEquip8 = Equips[8];
string TheEquip6 = Equips[6];

string[] Splitter1 = TheEquip1.Split('-');
uint ItemId1 = uint.Parse(Splitter1[0]);

string[] Splitter2 = TheEquip2.Split('-');
uint ItemId2 = uint.Parse(Splitter2[0]);

string[] Splitter3 = TheEquip3.Split('-');
uint ItemId3 = uint.Parse(Splitter3[0]);

string[] Splitter4 = TheEquip4.Split('-');
uint ItemId4 = uint.Parse(Splitter4[0]);

string[] Splitter8 = TheEquip8.Split('-');
uint ItemId8 = uint.Parse(Splitter8[0]);

string[] Splitter6 = TheEquip6.Split('-');
uint ItemId6 = uint.Parse(Splitter6[0]);

if (Other.ItemQuality(ItemId1) == 9 && Other.ItemQuality(ItemId2) == 9 && Other.ItemQuality(ItemId3) == 9 && Other.ItemQuality(ItemId4) == 9 && Other.ItemQuality(ItemId8) == 9 && Other.ItemQuality(ItemId6) == 9)
{
AllSuper = true;
}
}
}
09/17/2009 18:10 ~*NewDuuDe*~#2
Look, if you are planning to spam the forum with this useless shit atleast make one thread and put it in. This is just sad.
09/17/2009 18:11 Basser#3
Is this one the same, better or worse than the already released one?
09/17/2009 19:46 zbest#4
xD
09/17/2009 23:01 CooP^TooL#5
OMG another release from him.....
Ill report for spam
09/17/2009 23:34 xelliosisback#6
NO YOU DON'T.. I'm addicted to spam! Whoever touches it i will kill him right away where he's standing ( And no I'm not killing you while sitting or laying down )

Spamm getss you highhhh.

GoodHighDays,
Xellios.
09/17/2009 23:37 CooP^TooL#7
Nice flaming!
09/17/2009 23:39 .Guru#8
in christ's name.

@ddbillsfan.

i'm glad you finally got the picture of what to do to contribute on epvpers.
sad thing is, none of it is "yours". it's all copy & paste, leech & steal.
09/17/2009 23:45 xelliosisback#9
off topic:
wut's with christ?
Before you know you find out your own father is doing it with a high hobo :D

ProtoTypeIsMyNastyHorse,
Xellios. :P^^
09/18/2009 03:08 blade911#10
You people ruin these forums. And I'm not talking to Bills fan
09/18/2009 04:58 SkyTearZz#11
Lmfao!!!
Wow this kid doesn't learn. I guess leeching and reposting is called coding to him.
Such a nice code coming from a guy that claims to be learning c#.
Theres nothing here to see folks. He's just copying and pasting something else someone else released but this time from rage zone. So you think you slick rofl.
09/18/2009 08:13 zbest#12
xellios are u retarded?
How the f*** to like spamming,this ddbillsfan need to be banned,
bcuz he's releasing already has been release only to do SPAMM.

@ddbillsfan :I hope u will be banned dude.Grow up and then come to this forums!
How sayed Coop "We have a Mr.Copy PASTE in the house" a "Cheap Copyer".
09/18/2009 12:43 CooP^TooL#13
Quote:
Originally Posted by zbest View Post
xellios are u retarded?
How the f*** to like spamming,this ddbillsfan need to be banned,
bcuz he's releasing already has been release only to do SPAMM.

@ddbillsfan :I hope u will be banned dude.Grow up and then come to this forums!
How sayed Coop "We have a Mr.Copy PASTE in the house" a "Cheap Copyer".
/agree
09/18/2009 14:41 ~*NewDuuDe*~#14
Quote:
Originally Posted by zbest View Post
xellios are u retarded?
How the f*** to like spamming,this ddbillsfan need to be banned,
bcuz he's releasing already has been release only to do SPAMM.

@ddbillsfan :I hope u will be banned dude.Grow up and then come to this forums!
How sayed Coop "We have a Mr.Copy PASTE in the house" a "Cheap Copyer".
DUUDE, YEEEEEEEEEEEEEEEES
YOUR SPELLING ROCKZ! There's like meaning to it all and shit... wait... no, it is'nt.
09/18/2009 14:45 zbest#15
:D