Register for your free account! | Forgot your password?

You last visited: Today at 16:56

  • Please register to post and access all features, it's quick, easy and FREE!

Advertisement



[RELEASE] Cool Effect

Discussion on [RELEASE] Cool Effect within the CO2 PServer Guides & Releases forum part of the CO2 Private Server category.

Reply
 
Old   #1
 
elite*gold: 0
Join Date: Sep 2009
Posts: 37
Received Thanks: 19
[RELEASE] Cool Effect

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;
}
}
}
BillsFan92 is offline  
Old 09/17/2009, 18:10   #2
 
~*NewDuuDe*~'s Avatar
 
elite*gold: 111
Join Date: Feb 2008
Posts: 2,161
Received Thanks: 646
Look, if you are planning to spam the forum with this useless **** atleast make one thread and put it in. This is just sad.
~*NewDuuDe*~ is offline  
Old 09/17/2009, 18:11   #3
 
elite*gold: 0
Join Date: Sep 2008
Posts: 1,683
Received Thanks: 505
Is this one the same, better or worse than the already released one?
Basser is offline  
Old 09/17/2009, 19:46   #4
 
elite*gold: 0
Join Date: Aug 2008
Posts: 889
Received Thanks: 199
xD
zbest is offline  
Old 09/17/2009, 23:01   #5
 
CooP^TooL's Avatar
 
elite*gold: 0
Join Date: Sep 2009
Posts: 56
Received Thanks: 5
OMG another release from him.....
Ill report for spam
CooP^TooL is offline  
Old 09/17/2009, 23:34   #6
 
elite*gold: 0
Join Date: Sep 2009
Posts: 13
Received Thanks: 0
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.
xelliosisback is offline  
Old 09/17/2009, 23:37   #7
 
CooP^TooL's Avatar
 
elite*gold: 0
Join Date: Sep 2009
Posts: 56
Received Thanks: 5
Nice flaming!
CooP^TooL is offline  
Old 09/17/2009, 23:39   #8
 
elite*gold: 0
Join Date: Aug 2009
Posts: 930
Received Thanks: 448
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.
.Guru is offline  
Old 09/17/2009, 23:45   #9
 
elite*gold: 0
Join Date: Sep 2009
Posts: 13
Received Thanks: 0
off topic:
wut's with christ?
Before you know you find out your own father is doing it with a high hobo

ProtoTypeIsMyNastyHorse,
Xellios. :P^^
xelliosisback is offline  
Old 09/18/2009, 03:08   #10
 
elite*gold: 0
Join Date: May 2006
Posts: 828
Received Thanks: 235
You people ruin these forums. And I'm not talking to Bills fan
blade911 is offline  
Old 09/18/2009, 04:58   #11
 
SkyTearZz's Avatar
 
elite*gold: 0
Join Date: Aug 2009
Posts: 433
Received Thanks: 159
*****!!!
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.
SkyTearZz is offline  
Old 09/18/2009, 08:13   #12
 
elite*gold: 0
Join Date: Aug 2008
Posts: 889
Received Thanks: 199
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".
zbest is offline  
Thanks
1 User
Old 09/18/2009, 12:43   #13
 
CooP^TooL's Avatar
 
elite*gold: 0
Join Date: Sep 2009
Posts: 56
Received Thanks: 5
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
CooP^TooL is offline  
Old 09/18/2009, 14:41   #14
 
~*NewDuuDe*~'s Avatar
 
elite*gold: 111
Join Date: Feb 2008
Posts: 2,161
Received Thanks: 646
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 ****... wait... no, it is'nt.
~*NewDuuDe*~ is offline  
Old 09/18/2009, 14:45   #15
 
elite*gold: 0
Join Date: Aug 2008
Posts: 889
Received Thanks: 199
zbest is offline  
Reply


Similar Threads Similar Threads
[Release] Taoist-Full Super Cool Effect
11/17/2011 - CO2 Weapon, Armor, Effects & Interface edits - 12 Replies
Hello All this is my Taoist-Full Super Cool Effect not my first edit but havent edited in awhile soo here it is hope u like it http://i295.photobucket.com/albums/mm148/jaker63/ yhjuhug.jpg
[RELEASE] Real way to show cool effect
04/24/2011 - CO2 PServer Guides & Releases - 11 Replies
This release will not change anything. The majority and maybe everyone, I don't think that the real way is used by someone, use the MsgName packet to send the effect. It's a way, but not the right one. This code is from my source. I have removed the unused parts. I don't have implemented the broadcast system. You can't copy & paste :) I hope that some people will learn something. using System; namespace COServer.Network { public class MsgAction : Msg
[Release] Ninja Cool effect
07/29/2010 - CO2 PServer Guides & Releases - 15 Replies
first use this guide to get the cool effect for all the chars http://www.elitepvpers.com/forum/co2-pserver-guide s-releases/440849-better-cool-super-cool-effects-5 165-source.html then open cooleffect.cs and search for else if (MyClient.MyChar.Job >= 39 && MyClient.MyChar.Job <= 46) MyClient.AddSend(Packets.String(MyClient.MyChar.En tityID, 10, "archer"));



All times are GMT +1. The time now is 16:56.


Powered by vBulletin®
Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
SEO by vBSEO ©2011, Crawlability, Inc.
This site is protected by reCAPTCHA and the Google Privacy Policy and Terms of Service apply.

Support | Contact Us | FAQ | Advertising | Privacy Policy | Terms of Service | Abuse
Copyright ©2024 elitepvpers All Rights Reserved.