Register for your free account! | Forgot your password?

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

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

Advertisement



Profession Changer(5165)

Discussion on Profession Changer(5165) within the CO2 Private Server forum part of the Conquer Online 2 category.

Reply
 
Old   #1
 
elite*gold: 0
Join Date: Apr 2007
Posts: 208
Received Thanks: 43
Profession Changer(5165)

I'm making a profession changer. Or trying to make one.
I've looked under the promoter codes, but it uses a GC.MyChar.Job++; sending the numbers up by 1 each time promoting them. But I want something that entirely switches their profession to another one.
How would I go about going from profession 135(WaterSaint) to a 145(FireSaint)? or something like that.

Any ideas that would help me?
DePredaTe is offline  
Old 05/20/2010, 23:01   #2
 
elite*gold: 0
Join Date: Sep 2008
Posts: 178
Received Thanks: 62
You can use this: "GC.MyChar.Job = 145;"
.Kob is offline  
Old 05/20/2010, 23:03   #3
 
elite*gold: 0
Join Date: Apr 2007
Posts: 208
Received Thanks: 43
I thought that was for checking to see if that was there job? like, in an IF statement like
if (GC.MyChar.Job == 135
So, that can also be used to change the numbers?
DePredaTe is offline  
Old 05/20/2010, 23:08   #4
 
elite*gold: 0
Join Date: May 2010
Posts: 630
Received Thanks: 130
Code:
                            case 10065:
                                {
                                    if (Control == 0)
                                    {
                                        GC.AddSend(Packets.NPCSay("Do you want to change class?"));
                                        GC.AddSend(Packets.NPCLink("Yes, i want!", 1));
                                        GC.AddSend(Packets.NPCLink("No Thank You", 255));
                                        GC.AddSend(Packets.NPCSetFace(50));
                                        GC.AddSend(Packets.NPCFinish());
                                    }
                                    if (Control == 1)
                                    {
                                        GC.AddSend(Packets.NPCSay("Choose a class"));
                                        GC.AddSend(Packets.NPCLink("Trojan", 2));
                                        GC.AddSend(Packets.NPCLink("Warrior", 3));
                                        GC.AddSend(Packets.NPCLink("Archer", 4));
                                        GC.AddSend(Packets.NPCLink("Ninja", 5));
                                        GC.AddSend(Packets.NPCLink("Tao", 6));
                                        GC.AddSend(Packets.NPCSetFace(50));
                                        GC.AddSend(Packets.NPCFinish());
                                    }
                                    if (Control == 2)
                                    {
                                        GC.MyChar.Job = 10;
                                        GC.MyChar.Spi = 0;
                                        GC.MyChar.CurMP = 0;
                                        GC.AddSend(Packets.NPCSay("You are now a Trojan"));
                                        GC.AddSend(Packets.NPCLink("Thanks", 255));
                                        GC.AddSend(Packets.NPCSetFace(50));
                                        GC.AddSend(Packets.NPCFinish());
                                    }
                                    if (Control == 3)
                                    {
                                        GC.MyChar.Job = 20;
                                        GC.MyChar.Spi = 0;
                                        GC.AddSend(Packets.NPCSay("You are now a Warrior"));
                                        GC.AddSend(Packets.NPCLink("Thanks", 255));
                                        GC.AddSend(Packets.NPCSetFace(50));
                                        GC.AddSend(Packets.NPCFinish());
                                    }
                                    if (Control == 4)
                                    {
                                        GC.MyChar.Job = 40;
                                        GC.MyChar.Spi = 0;
                                        GC.MyChar.CurMP = 0;
                                        GC.AddSend(Packets.NPCSay("You are now an Archer"));
                                        GC.AddSend(Packets.NPCLink("Thanks", 255));
                                        GC.AddSend(Packets.NPCSetFace(50));
                                        GC.AddSend(Packets.NPCFinish());
                                    }
                                    if (Control == 5)
                                    {
                                        GC.MyChar.Job = 50;
                                        GC.MyChar.Spi = 0;
                                        GC.MyChar.CurMP = 0;
                                        GC.AddSend(Packets.NPCSay("You are now a Ninja"));
                                        GC.AddSend(Packets.NPCLink("Thanks", 255));
                                        GC.AddSend(Packets.NPCSetFace(50));
                                        GC.AddSend(Packets.NPCFinish());
                                    }
                                    if (Control == 6)
                                    {
                                        GC.MyChar.Job = 100;
                                        GC.MyChar.Spi = 10;
                                        GC.MyChar.CurMP = GC.MyChar.MaxMP;
                                        GC.AddSend(Packets.NPCSay("You are now a Tao"));
                                        GC.AddSend(Packets.NPCLink("Thanks", 255));
                                        GC.AddSend(Packets.NPCSetFace(50));
                                        GC.AddSend(Packets.NPCFinish());
                                    }
                                    break;
                                }
.Summer is offline  
Thanks
1 User
Old 05/20/2010, 23:10   #5
 
elite*gold: 0
Join Date: Apr 2007
Posts: 208
Received Thanks: 43
Oh, awesome. I figured I was going to be spending some time doing that. Since you already have it, nevermind. Lol. Thanks.
DePredaTe is offline  
Old 05/20/2010, 23:17   #6
 
elite*gold: 0
Join Date: Sep 2008
Posts: 178
Received Thanks: 62
Quote:
Originally Posted by cakobu View Post
You can use this: "GC.MyChar.Job = 145;"
^... this one? lol ...^
.Kob is offline  
Thanks
1 User
Old 05/20/2010, 23:18   #7
 
elite*gold: 0
Join Date: Apr 2007
Posts: 208
Received Thanks: 43
Yeah, both of you. You taught me that you could actually use that. And he made life simpler for me. lol. thanks to both of you.
DePredaTe is offline  
Reply


Similar Threads Similar Threads
[Profession changer BUG]
07/31/2010 - EO PServer Hosting - 2 Replies
i have abig problem any player change his profession from warrior to mage nor paladin his m-atk increases around 1000 points each change how can i stop this . i searched in my action id's around the TQ baby's actions i didnt find any thing unusual i don't know how to fix it and search doesn't have it
(request) profession changer script
06/07/2010 - EO PServer Hosting - 1 Replies
can someone share here profession changer script for tqbaby
WoW Profession Guides
05/08/2010 - WoW Guides & Templates - 2 Replies
Here are some profession guides that i would like to share with you people. Hope they help. :D Alchemy Guide BlackSmithing Guide Cooking Guide Enchanting Guide Engineering Guide
Profession PK War Glitch
10/07/2008 - Conquer Online 2 - 8 Replies
Would someone share the trick of claiming rewards for more than one winner in the same group in Profession PK war?
Change Second Profession.
07/18/2005 - Guild Wars - 4 Replies
Where can I change my second profession and what should I change it to? I'm E/R currently. What's the best Ele second prof?



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


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.