Register for your free account! | Forgot your password?

Go Back   elitepvpers > MMORPGs > Conquer Online 2 > CO2 Private Server
You last visited: Today at 12:23

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

Advertisement



[QUESTION]Has anyone coded Top (Guild/Class- etc)

Discussion on [QUESTION]Has anyone coded Top (Guild/Class- etc) within the CO2 Private Server forum part of the Conquer Online 2 category.

Reply
 
Old   #1
 
airborne.'s Avatar
 
elite*gold: 0
Join Date: Nov 2009
Posts: 256
Received Thanks: 63
Post [QUESTION]Has anyone coded Top (Guild/Class- etc)

Title. For 5165? I'm really interested in them.
airborne. is offline  
Old 12/05/2009, 20:13   #2
 
airborne.'s Avatar
 
elite*gold: 0
Join Date: Nov 2009
Posts: 256
Received Thanks: 63
Quote:
Originally Posted by Zoron View Post
#Removed
#Reported.
Don't flame, ddbillsfan.
airborne. is offline  
Old 12/05/2009, 20:51   #3
 
-Shunsui-'s Avatar
 
elite*gold: 0
Join Date: Apr 2008
Posts: 1,152
Received Thanks: 321
BY coded do you mean as if someone already done the PK Tourneys and Such? Because the effects are already coded in,
-Shunsui- is offline  
Old 12/05/2009, 20:55   #4
 
Arcо's Avatar
 
elite*gold: 0
Join Date: Oct 2009
Posts: 8,765
Received Thanks: 5,291
Quote:
Originally Posted by -Shunsui- View Post
BY coded do you mean as if someone already done the PK Tourneys and Such? Because the effects are already coded in,

I think he's asking how to spawn the effects.
Arcо is offline  
Old 12/05/2009, 21:03   #5
 
airborne.'s Avatar
 
elite*gold: 0
Join Date: Nov 2009
Posts: 256
Received Thanks: 63
Quote:
Originally Posted by -Shunsui- View Post
BY coded do you mean as if someone already done the PK Tourneys and Such? Because the effects are already coded in,
o.O it's already coded in?
airborne. is offline  
Old 12/05/2009, 21:04   #6
 
Arcо's Avatar
 
elite*gold: 0
Join Date: Oct 2009
Posts: 8,765
Received Thanks: 5,291
Quote:
Originally Posted by airborne. View Post
o.O it's already coded in?

Every effect in the client is coded in.
It's up to you to code it to spawn.
Arcо is offline  
Old 12/05/2009, 21:27   #7
 
airborne.'s Avatar
 
elite*gold: 0
Join Date: Nov 2009
Posts: 256
Received Thanks: 63
Quote:
Originally Posted by Tiku View Post

Every effect in the client is coded in.
It's up to you to code it to spawn.
Where exactly is it? I want to see.
airborne. is offline  
Old 12/05/2009, 21:32   #8
 
Sp!!ke's Avatar
 
elite*gold: 0
Join Date: Nov 2009
Posts: 380
Received Thanks: 58
I whant to make 1 npc to but TopTrojan , TopWarior..etc..tiku you can make 1?
Sp!!ke is offline  
Old 12/05/2009, 21:58   #9
 
airborne.'s Avatar
 
elite*gold: 0
Join Date: Nov 2009
Posts: 256
Received Thanks: 63
Quote:
Originally Posted by Tweety.4Girls View Post
I whant to make 1 npc to but TopTrojan , TopWarior..etc..tiku you can make 1?
If it was that easy I'd have it by now.
airborne. is offline  
Old 12/05/2009, 21:59   #10
 
~*NewDuuDe*~'s Avatar
 
elite*gold: 111
Join Date: Feb 2008
Posts: 2,161
Received Thanks: 646
Just do AddEffect(not sure what variable is used for 5165, you can figure that out) TopTrojan or whatever the effect name is when ever someone wins the PK tournament. Then add a timer which, for example, removes it after 24 hours.
~*NewDuuDe*~ is offline  
Old 12/05/2009, 22:04   #11
 
-Shunsui-'s Avatar
 
elite*gold: 0
Join Date: Apr 2008
Posts: 1,152
Received Thanks: 321
That code will give You top Trojan,

Code:
GC.MyChar.StatEff.Add(StatusEffectEn.TopTrojan);
If you go into Character.cs And Search
Code:
public enum StatusEffectEn : ulong
Under that you will find all the effects.

This below is a NPC that will give you top Tro Halo just edit him a Little hes the NPC that iam doing for Top Pk Tourneys Not done,

Code:
#region PKTourney Done
                            case 2727:
                                {
                                    if (Control == 0)
                                    {
                                        GC.AddSend(Packets.NPCSay("Have You killed all the other Challengers?"));
                                        GC.AddSend(Packets.NPCLink("Yeh, Menq", 1));
                                        GC.AddSend(Packets.NPCLink("Nah wait", 255));
                                        GC.AddSend(Packets.NPCSetFace(30));
                                        GC.AddSend(Packets.NPCFinish());
                                    }
                                    else if (Control == 1)
                                    { 
                                                GC.MyChar.StatEff.Add(StatusEffectEn.TopTrojan);
                                                GC.Message(2005, GC.MyChar.Name + "Has won the Top Trojan Halo");
                                            }
                                    break;
                                }
                            #endregion
-Shunsui- is offline  
Thanks
2 Users
Old 12/05/2009, 22:06   #12
 
Arcо's Avatar
 
elite*gold: 0
Join Date: Oct 2009
Posts: 8,765
Received Thanks: 5,291
Quote:
Originally Posted by -Shunsui- View Post
That code will give You top Trojan,

Code:
GC.MyChar.StatEff.Add(StatusEffectEn.TopTrojan);
If you go into Character.cs And Search
Code:
public enum StatusEffectEn : ulong
Under that you will find all the effects

Code:
#region PKTourney Done
                            case 2727:
                                {
                                    if (Control == 0)
                                    {
                                        GC.AddSend(Packets.NPCSay("Have You killed all the other Challengers?"));
                                        GC.AddSend(Packets.NPCLink("Yeh, Menq", 1));
                                        GC.AddSend(Packets.NPCLink("Nah wait", 255));
                                        GC.AddSend(Packets.NPCSetFace(30));
                                        GC.AddSend(Packets.NPCFinish());
                                    }
                                    else if (Control == 1)
                                    { 
                                                GC.MyChar.StatEff.Add(StatusEffectEn.TopTrojan);
                                                GC.Message(2005, GC.MyChar.Name + "Has won the Top Trojan Halo");
                                            }
                                    break;
                                }
                            #endregion
That NPC will give you top Tro Halo just edit him a Little hes the NPC that iam doing for Top Pk Tourneys Not done,

Lol and its not that hard to edit this to work for every class btw.
Arcо is offline  
Thanks
1 User
Old 12/05/2009, 22:24   #13
 
~*NewDuuDe*~'s Avatar
 
elite*gold: 111
Join Date: Feb 2008
Posts: 2,161
Received Thanks: 646
Hm, think I'll have a look at this source. Any particular version that is reccomended?
~*NewDuuDe*~ is offline  
Old 12/05/2009, 22:29   #14
 
airborne.'s Avatar
 
elite*gold: 0
Join Date: Nov 2009
Posts: 256
Received Thanks: 63
Shunsui add my msn:
airborne. is offline  
Old 12/05/2009, 22:30   #15
 
tigerfire's Avatar
 
elite*gold: 0
Join Date: Oct 2007
Posts: 914
Received Thanks: 86
yes i have ssee one coeded bye stuffer xD its help alot
tigerfire is offline  
Reply


Similar Threads Similar Threads
[Question]Best thing you have ever coded (for CO ofcourse)?
04/09/2010 - CO2 Programming - 32 Replies
So what have you guys coded? And what do you think is the best thing you did? Please don't lie about what you coded to look more experienced, because it doesn't really prove that. The best thing I've ever coded is my source, how ever it's not complete and I didn't spent time getting the packet structures, just got them from other sources and that stuff. ~Bas
[WTS] Silkroad Website Templates - Coded/Not-Coded. With .PSD!
11/30/2009 - Silkroad Online Trading - 4 Replies
Examples : There Is NO Examples at the moment. Prices : Price for a full coded website, with a CMS - users can register, write comments. Admin panel included , easy write to news. - 60$. Included : PSD , all files, FREE WEB HOSTING - 3 months.



All times are GMT +2. The time now is 12:23.


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.