Register for your free account! | Forgot your password?

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

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

Advertisement



[REQUEST]Job Changer NPC

Discussion on [REQUEST]Job Changer NPC within the CO2 Private Server forum part of the Conquer Online 2 category.

Closed Thread
 
Old   #1
 
airborne.'s Avatar
 
elite*gold: 0
Join Date: Nov 2009
Posts: 256
Received Thanks: 63
[REQUEST]Job Changer NPC

title says it. and yea i made a thread like this before but i accidently said *** changer instead of job changer -.-

FOR SOURCE 5165
airborne. is offline  
Old 12/05/2009, 04:06   #2
 
Zkiller110's Avatar
 
elite*gold: 0
Join Date: Mar 2008
Posts: 276
Received Thanks: 99
i dont think u should be makeing a server if u are asking how to make an easy npc like that and u dont even say what source your useing to add npcs it is different for every source
Zkiller110 is offline  
Old 12/05/2009, 04:39   #3
 
airborne.'s Avatar
 
elite*gold: 0
Join Date: Nov 2009
Posts: 256
Received Thanks: 63
Quote:
Originally Posted by Zkiller110 View Post
i dont think u should be makeing a server if u are asking how to make an easy npc like that and u dont even say what source your useing to add npcs it is different for every source
My bad, 5165.
airborne. is offline  
Old 12/05/2009, 04:41   #4
 
-Shunsui-'s Avatar
 
elite*gold: 0
Join Date: Apr 2008
Posts: 1,152
Received Thanks: 321
i can litterly code this with my eyes close and 1 hand if u SERIUSLY CANT EVEN DO THIS you are in no way learning how to code, i dont even think anyone might even help u. and u know you ddint MISTAKE PUT *** CHANGE u need that to and this also so dont act stupid
-Shunsui- is offline  
Old 12/05/2009, 05:18   #5
 
airborne.'s Avatar
 
elite*gold: 0
Join Date: Nov 2009
Posts: 256
Received Thanks: 63
alright i tried guys and i succeeded partially, i can only make it right now to change to 1 class, how do i make it choices? below only makes u fire tao for example..


Code:
                            case 300002:
                                {
                                    if (Control == 0)
                                    {
                                        GC.AddSend(Packets.NPCSay("Would you like to be a Fire Taoist?"));
                                        GC.AddSend(Packets.NPCLink("Sure!", 1));
                                        GC.AddSend(Packets.NPCLink("No thanks.", 255));
                                        GC.AddSend(Packets.NPCSetFace(N.Avatar));
                                        GC.AddSend(Packets.NPCFinish());
                                    }

                                    else if (Control == 1)
                                    {
                                        GC.MyChar.Job = 145;
                                 
                                    }
                                    break;
                                }
airborne. is offline  
Old 12/05/2009, 05:32   #6
 
airborne.'s Avatar
 
elite*gold: 0
Join Date: Nov 2009
Posts: 256
Received Thanks: 63
alright i'm trying to make the npc myself but give me a hand, so look at the code below, how do i make the choices functional? cuz when u click the npc and any class it doesn't do anything, so how do i make each functional so if i click ninja it changes my job to ninja?

Code:
                                        
                                        GC.AddSend(Packets.NPCSay("Alright choose the job."));
                                        GC.AddSend(Packets.NPCLink("Trojan", 3));
                                        GC.AddSend(Packets.NPCLink("Warrior", 4));
                                        GC.AddSend(Packets.NPCLink("Archer", 5));
                                        GC.AddSend(Packets.NPCLink("WaterTaoist", 6));
                                        GC.AddSend(Packets.NPCLink("FireTaoist", 7));
                                        GC.AddSend(Packets.NPCLink("Ninja", 8));
                                        GC.AddSend(Packets.NPCSetFace(N.Avatar));
                                        GC.AddSend(Packets.NPCFinish());
airborne. is offline  
Old 12/05/2009, 06:23   #7
 
airborne.'s Avatar
 
elite*gold: 0
Join Date: Nov 2009
Posts: 256
Received Thanks: 63
What's wrong with this code?

Code:
                            #region
                            case 300002:
                                {
                                    if (Control == 0)
                                    {
                                        GC.AddSend(Packets.NPCSay("Would you like to change your job?"));
                                        GC.AddSend(Packets.NPCLink("Sure!", 1));
                                        GC.AddSend(Packets.NPCLink("No thanks.", 255));
                                        GC.AddSend(Packets.NPCSetFace(N.Avatar));
                                        GC.AddSend(Packets.NPCFinish());
                                    }

                                    else if (Control == 1)
                                    {

                                        GC.AddSend(Packets.NPCSay("Alright choose the job."));
                                        GC.AddSend(Packets.NPCLink("Trojan", 3));
                                        GC.AddSend(Packets.NPCLink("Warrior", 4));
                                        GC.AddSend(Packets.NPCLink("Archer", 5));
                                        GC.AddSend(Packets.NPCLink("WaterTaoist", 6));
                                        GC.AddSend(Packets.NPCLink("FireTaoist", 7));
                                        GC.AddSend(Packets.NPCLink("Ninja", 8));
                                        GC.AddSend(Packets.NPCSetFace(N.Avatar));
                                        GC.AddSend(Packets.NPCFinish());

                                    }

                                    else if (Control == 3)
                                    {
                                        GC.MyChar.Job = 15;
                                    }
                                    else if (Control == 4)
                                    {
                                        GC.MyChar.Job  = 25;
                                    }
                                    else if (Control == 5)
                                    {
                                        GC.MyChar.Job = 45;
                                    }
                                    else if (Control == 6)
                                    {
                                        GC.MyChar.Job = 135;
                                    }
                                    else if (Control == 7)
                                    {
                                        GC.MyChar.Job = 145;
                                    }
                                    else if (Control == 8)
                                    {
                                        GC.MyChar.Job = 55;
                                    }
                                        }
                                        break;
                                }
                            #endregion
airborne. is offline  
Old 12/05/2009, 06:31   #8
 
Arcо's Avatar
 
elite*gold: 0
Join Date: Oct 2009
Posts: 8,783
Received Thanks: 5,304
#Request close
I fixed his problem.
Arcо is offline  
Thanks
1 User
Old 12/05/2009, 08:45   #9
 
Huseby's Avatar
 
elite*gold: 106
Join Date: Oct 2006
Posts: 6,047
Received Thanks: 1,165
#Closed
Huseby is offline  
Closed Thread


Similar Threads Similar Threads
(request) profession changer script
06/07/2010 - EO PServer Hosting - 1 Replies
can someone share here profession changer script for tqbaby
[REQUEST]Sex Changer NPC
12/05/2009 - CO2 Private Server - 7 Replies
title says it. +k if released
Request autoselect distance changer for KSRO
09/17/2009 - Silkroad Online - 0 Replies
now edx loader works but we still need a new autoselect distance coz it is now 70 anyone can make it?
Request Clientside appearance changer
09/26/2006 - Conquer Online 2 - 3 Replies
I was just wondering if There was/is a client side program that changes the appearance on the screen. I'd like to take my lvl 70 trojan and make his appearance that of a 120+ only clientside. I tried searching but all i found where jumbos and jumbos of programer talk and such on how to do it. A while back i thought I saw a program that did this, but my searches came up empty. I just want the character appeanace client side to show my guild what they will look like when they reach 120+, we are...



All times are GMT +1. The time now is 10:40.


Powered by vBulletin®
Copyright ©2000 - 2025, 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 ©2025 elitepvpers All Rights Reserved.