Register for your free account! | Forgot your password?

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

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

Advertisement



okay im trying to get reborn npc

Discussion on okay im trying to get reborn npc within the CO2 Private Server forum part of the Conquer Online 2 category.

Reply
 
Old   #1
 
elite*gold: 0
Join Date: Jan 2009
Posts: 201
Received Thanks: 9
okay im trying to get reborn npc

kk i folloed emme's guide on making rebirth npc this is what i have coded

around like 1236

Quote:
if (CurrentNPC == 11111)
{
SendPacket(General.MyPackets.NPCSay("Hello, intresed in getting reborned? After level 120, you can get reborned,and it cost you an celestial stone. But if you already are first reborned,it cost you an ExtemptionToken. Still intresed?"));
SendPacket(General.MyPackets.NPCLink("Yeah,first rebirth", 1));
SendPacket(General.MyPackets.NPCLink("Yeah,second rebirth", 8));
SendPacket(General.MyPackets.NPCLink("No thanks,not yet.", 255));
SendPacket(General.MyPackets.NPCSetFace(30));
SendPacket(General.MyPackets.NPCFinish());
}
and then

around line 3124 i have

Quote:
if (CurrentNPC == 11111)
{
if (Control == 1)
{
SendPacket(General.MyPackets.NPCSay("Would you like to reborn?"));
if (MyChar.RBCount == 0 && MyChar.Level >= 120 || MyChar.Job == 135 && MyChar.Level >= 110)
SendPacket(General.MyPackets.NPCLink("Yes,first rebirth", 2));
if (MyChar.RBCount == 1 && MyChar.Level >= 120 || MyChar.Job == 135 && MyChar.Level >= 110)
SendPacket(General.MyPackets.NPCLink("Yeah,second rebirth", 8));
SendPacket(General.MyPackets.NPCLink("Let me think it over.", 255));
SendPacket(General.MyPackets.NPCSetFace(30));
SendPacket(General.MyPackets.NPCFinish());
}
if (Control == 2)
{
SendPacket(General.MyPackets.NPCSay("What would you like to get reborned into? Remember that your earlier skills don't save."));
SendPacket(General.MyPackets.NPCLink("Trojan", 3));
SendPacket(General.MyPackets.NPCLink("Warrior", 4));
SendPacket(General.MyPackets.NPCLink("Archer", 5));
SendPacket(General.MyPackets.NPCLink("Fire Taoist", 6));
SendPacket(General.MyPackets.NPCLink("WaterTaoist" , 7));
SendPacket(General.MyPackets.NPCLink("Let me think it over.", 255));
SendPacket(General.MyPackets.NPCSetFace(30));
SendPacket(General.MyPackets.NPCFinish());
}
if (Control == 3)
{
if (MyChar.InventoryContains(721259, 1))
{
MyChar.RemoveItem(MyChar.ItemNext(721259));
MyChar.ReBorn(11);
}
}
if (Control == 4)
{

if (MyChar.InventoryContains(721259, 1))
{
MyChar.RemoveItem(MyChar.ItemNext(721259));
MyChar.ReBorn(21);
}
}
if (Control == 5)
{

if (MyChar.InventoryContains(721259, 1))
{
MyChar.RemoveItem(MyChar.ItemNext(721259));
MyChar.ReBorn(41);
}
}
if (Control == 6)
{

if (MyChar.InventoryContains(721259, 1))
{
MyChar.RemoveItem(MyChar.ItemNext(721259));
MyChar.ReBorn(101);
}
}
if (Control == 7)
{
if (MyChar.InventoryContains(721259, 1))
{
MyChar.RemoveItem(MyChar.ItemNext(721259));
MyChar.ReBorn(131);
}

}
if (Control == 8)
{
SendPacket(General.MyPackets.NPCSay("What would you like to get second reborn into? Remember that your earlier skills don't save and it cost an ExemptionToken."));
SendPacket(General.MyPackets.NPCLink("Trojan", 9));
SendPacket(General.MyPackets.NPCLink("Warrior", 10));
SendPacket(General.MyPackets.NPCLink("Archer", 11));
SendPacket(General.MyPackets.NPCLink("Fire Taoist", 12));
SendPacket(General.MyPackets.NPCLink("WaterTaoist" , 13));
SendPacket(General.MyPackets.NPCLink("WaterTaoist" , 14));
SendPacket(General.MyPackets.NPCLink("Let me think it over.", 255));
SendPacket(General.MyPackets.NPCSetFace(30));
SendPacket(General.MyPackets.NPCFinish());
}
if (Control == 9)
{

if (MyChar.InventoryContains(721259, 1))

MyChar.ReBorn(11);
}

if (Control == 10)
{

if (MyChar.InventoryContains(721259, 1))
MyChar.ReBorn(21);
}

if (Control == 11)
{

if (MyChar.InventoryContains(721259, 1))
MyChar.ReBorn(41);
}

if (Control == 12)
{

if (MyChar.InventoryContains(721259, 1))
MyChar.ReBorn(101);
}

if (Control == 13)
{
if (MyChar.InventoryContains(721259, 1))
MyChar.ReBorn(131);
}


}

the npc is sitting in tc but he wont talk...

he jstu stands there like a tard...

see anything wrong?
Arcotemple is offline  
Old 04/18/2009, 10:40   #2
 
elite*gold: 0
Join Date: Apr 2009
Posts: 148
Received Thanks: 15
Are the NPCID's the same, in your database and in the code. Also, check that it's not conflicting with another NPC.
flaMe~ is offline  
Old 04/18/2009, 10:46   #3
 
elite*gold: 0
Join Date: Dec 2006
Posts: 3
Received Thanks: 0
post the link of emma pls
wouterg007 is offline  
Old 04/18/2009, 20:40   #4
 
elite*gold: 0
Join Date: Jan 2009
Posts: 201
Received Thanks: 9
Quote:
Originally Posted by flaMe~ View Post
Are the NPCID's the same, in your database and in the code. Also, check that it's not conflicting with another NPC.
i did that...
the npc id's aer the same
Arcotemple is offline  
Old 04/18/2009, 23:41   #5
 
doku66655's Avatar
 
elite*gold: 0
Join Date: Feb 2009
Posts: 59
Received Thanks: 7
I've got exactly the same problem. I know 10000000% the UID of NPC is the same... But Arcotemple is right. The NPC won't even say a thing. Tried to add NPCs in diffirent places, diffirent UIDs and types... EVERYWHERE the NPC does not works.
doku66655 is offline  
Old 04/19/2009, 01:24   #6
 
doku66655's Avatar
 
elite*gold: 0
Join Date: Feb 2009
Posts: 59
Received Thanks: 7
Any advice? Cuz I really need that NPC...
doku66655 is offline  
Old 04/19/2009, 02:39   #7
 
elite*gold: 0
Join Date: Apr 2009
Posts: 148
Received Thanks: 15
Did you check to see if it is conflicting with anything else?
flaMe~ is offline  
Old 04/19/2009, 08:39   #8
 
doku66655's Avatar
 
elite*gold: 0
Join Date: Feb 2009
Posts: 59
Received Thanks: 7
I have checked everything... But... If I put another reborn NPC posted here... It works =/
doku66655 is offline  
Old 04/19/2009, 11:44   #9
 
elite*gold: 0
Join Date: Apr 2009
Posts: 148
Received Thanks: 15
Then just use that new npc.. O.o
flaMe~ is offline  
Reply


Similar Threads Similar Threads
Where to do reborn and 2nd reborn in CoMy?
09/05/2009 - CO2 Private Server - 5 Replies
where can i do reborn and 2nd reborn? Thats the question
130 Non Reborn Tro
07/17/2007 - Conquer Online 2 - 7 Replies
does anyone know the stats for a 130 non-reborn tro? cause im a second reborn tro and and dont remember what stats a 130 tro has, ill give karma to whoever helps me...lol.. :cool:
QUESTION about reborn and 2nd reborn at lv130
12/14/2006 - Conquer Online 2 - 9 Replies
my question is if i got reborn at lv130 and got extra 55point after i got lv130 again and got reborn again what will happen to the extra 55point when i first reborn? because i don't want to waste time lv to 130 if i got 2nd reborn these point will gone. any one have a lv130-lv130-and reborn please help me thank you^^



All times are GMT +1. The time now is 01:32.


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