Register for your free account! | Forgot your password?

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

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

Advertisement



Need promotation npc in coemu

Discussion on Need promotation npc in coemu within the CO2 Private Server forum part of the Conquer Online 2 category.

Reply
 
Old   #1
 
sawickas's Avatar
 
elite*gold: 0
Join Date: Sep 2008
Posts: 617
Received Thanks: 38
Need promotation npc in coemu

Maby sombary can realaise all get promet npcs?
sawickas is offline  
Old 06/02/2009, 11:51   #2
 
-Reflexis-'s Avatar
 
elite*gold: 0
Join Date: Nov 2008
Posts: 412
Received Thanks: 314
Quote:
Originally Posted by sawickas View Post
Maby sombary can realaise all get promet npcs?
***Better English***
Can someone release the Promotion NPCs at the Promo Center?
-Reflexis- is offline  
Thanks
1 User
Old 06/02/2009, 12:18   #3
 
sawickas's Avatar
 
elite*gold: 0
Join Date: Sep 2008
Posts: 617
Received Thanks: 38
Yes promotacion center an for ninja to
sawickas is offline  
Old 06/02/2009, 12:25   #4
 
sawickas's Avatar
 
elite*gold: 0
Join Date: Sep 2008
Posts: 617
Received Thanks: 38
Thanks for beter inglish xD
sawickas is offline  
Old 06/02/2009, 12:29   #5
 
mejo33's Avatar
 
elite*gold: 0
Join Date: Sep 2007
Posts: 370
Received Thanks: 117
Its promoter for ninja in promotion center MIGHTYTAO he give guard for reborn char on global.

Quote:
case 35500://MightyTao Promo NPC
{
if((int)CSocket.Client.Class >= 50 && (int)CSocket.Client.Class <= 55)
{
if(LinkBack == 0)
{
Text("What can I do for you, skillfull ninja?\n", CSocket);
Link("Get promoted.", 1, CSocket);
Link("Learn skills.", 2, CSocket);
Link("Nothing.", 255, CSocket);
End(CSocket);
}
else if(LinkBack == 2)
{
Text("Which skill will it be, ninja?\n I'm currently too lazy to teach more.", CSocket);
Link("TwoFoldBlades[Level 40]", 3, CSocket);
Link("ToxicFog[Level 70]", 4, CSocket);
Link("Poison Start[Level 70]", 5, CSocket);
/*
* TODO: reborn skill 70-6003(counter skill)
?-6003(archer bane)
exp skill
?-6010(shuriken vortex)
?-6011(fatal strike)
i have no idea of the level requirement of the "?" skillz its written fixed on the co guide
*/
End(CSocket);
}
else if(LinkBack == 3)
{
int SkillID = 6000;
if(CSocket.Client.Level >= 40)
{
if(!CSocket.Client.Skills.ContainsKey(SkillID))
{
Struct.CharSkill Skill = new Struct.CharSkill();
Skill.ID = SkillID;
Skill.Level = 0;
Skill.Exp = 0;
CSocket.Client.Skills.Add(Skill.ID, Skill);
Database.Database.SetSkill(Skill.ID, Skill.Level, Skill.Exp, CSocket.Client.ID, false);
CSocket.Send(ConquerPacket.Skill(Skill.ID, Skill.Level, Skill.Exp));
}
Text("Congrats! You have learned this skill.", CSocket);
Link("Thanks!", 255, CSocket);
End(CSocket);
}
else
{
Text("You are not yet high enough level for this skill.", CSocket);
Link("Okay, sorry.", 255, CSocket);
End(CSocket);
}
}
else if(LinkBack == 4)
{
int SkillID = 6001;
if(CSocket.Client.Level >= 70)
{
if(!CSocket.Client.Skills.ContainsKey(SkillID))
{
Struct.CharSkill Skill = new Struct.CharSkill();
Skill.ID = SkillID;
Skill.Level = 0;
Skill.Exp = 0;
CSocket.Client.Skills.Add(Skill.ID, Skill);
Database.Database.SetSkill(Skill.ID, Skill.Level, Skill.Exp, CSocket.Client.ID, false);
CSocket.Send(ConquerPacket.Skill(Skill.ID, Skill.Level, Skill.Exp));
}
Text("Congrats! You have learned this skill.", CSocket);
Link("Thanks!", 255, CSocket);
End(CSocket);
}
else
{
Text("You are not yet high enough level for this skill.", CSocket);
Link("Okay, sorry.", 255, CSocket);
End(CSocket);
}
}
else if(LinkBack == 5)
{
int SkillID = 6002;
if(CSocket.Client.Level >= 70)
{
if(!CSocket.Client.Skills.ContainsKey(SkillID))
{
Struct.CharSkill Skill = new Struct.CharSkill();
Skill.ID = SkillID;
Skill.Level = 0;
Skill.Exp = 0;
CSocket.Client.Skills.Add(Skill.ID, Skill);
Database.Database.SetSkill(Skill.ID, Skill.Level, Skill.Exp, CSocket.Client.ID, false);
CSocket.Send(ConquerPacket.Skill(Skill.ID, Skill.Level, Skill.Exp));
}
Text("Congrats! You have learned this skill.", CSocket);
Link("Thanks!", 255, CSocket);
End(CSocket);
}
else
{
Text("You are not yet high enough level for this skill.", CSocket);
Link("Okay, sorry.", 255, CSocket);
End(CSocket);
}
}
else if(LinkBack == 1)
{
if((int)CSocket.Client.Class == 50)
{
if(CSocket.Client.Level >= 15)
{
CSocket.Client.Class += 1;
CSocket.Send(ConquerPacket.Status(CSocket, 2, (int)CSocket.Client.Class, Struct.StatusTypes.Job));
Text("Congrats! You have been promoted!", CSocket);
Link("Thanks!!!", 255, CSocket);
End(CSocket);
}
else
{
Text("You must be at least level 15, sorry.", CSocket);
Link("Okay, thanks.", 255, CSocket);
End(CSocket);
}
}
else if((int)CSocket.Client.Class == 51)
{
if(CSocket.Client.Level >= 40)
{
CSocket.Client.Class += 1;
CSocket.Send(ConquerPacket.Status(CSocket, 2, (int)CSocket.Client.Class, Struct.StatusTypes.Job));
Text("Congrats! You have been promoted!", CSocket);
Link("Thanks!!!", 255, CSocket);
End(CSocket);
}
else
{
Text("You must be at least level 40, sorry.", CSocket);
Link("Okay, thanks.", 255, CSocket);
End(CSocket);
}
}
else if((int)CSocket.Client.Class == 52)
{
if(CSocket.Client.Level >= 70)
{
CSocket.Client.Class += 1;
CSocket.Send(ConquerPacket.Status(CSocket, 2, (int)CSocket.Client.Class, Struct.StatusTypes.Job));
Text("Congrats! You have been promoted!", CSocket);
Link("Thanks!!!", 255, CSocket);
End(CSocket);
}
else
{
Text("You must be at least level 70, sorry.", CSocket);
Link("Okay, thanks.", 255, CSocket);
End(CSocket);
}
}
else if((int)CSocket.Client.Class == 53)
{
if(CSocket.Client.Level >= 100)
{
CSocket.Client.Class += 1;
CSocket.Send(ConquerPacket.Status(CSocket, 2, (int)CSocket.Client.Class, Struct.StatusTypes.Job));
Text("Congrats! You have been promoted!", CSocket);
Link("Thanks!!!", 255, CSocket);
End(CSocket);
}
else
{
Text("You must be at least level 100, sorry.", CSocket);
Link("Okay, thanks.", 255, CSocket);
End(CSocket);
}
}
else if((int)CSocket.Client.Class == 54)
{
if(CSocket.Client.Level >= 110)
{
CSocket.Client.Class += 1;
CSocket.Send(ConquerPacket.Status(CSocket, 2, (int)CSocket.Client.Class, Struct.StatusTypes.Job));
Text("Congrats! You have been promoted!", CSocket);
Link("Thanks!!!", 255, CSocket);
End(CSocket);
}
else
{
Text("You must be at least level 110, sorry.", CSocket);
Link("Okay, thanks.", 255, CSocket);
End(CSocket);
}
}
else
{
Text("You need not be promoted anymore!", CSocket);
Link("Okay, thanks.", 255, CSocket);
End(CSocket);
}
}
}
else
{
Text("Please see your trainer NPC, I can only train ninjas! Get lost.", CSocket);
Link("Okay, sorry.", 255, CSocket);
End(CSocket);
}
break;
}
mejo33 is offline  
Thanks
1 User
Old 06/02/2009, 12:32   #6
 
sawickas's Avatar
 
elite*gold: 0
Join Date: Sep 2008
Posts: 617
Received Thanks: 38
It work for coemu 2v?
sawickas is offline  
Old 06/02/2009, 12:59   #7
 
EnoiZe's Avatar
 
elite*gold: 0
Join Date: May 2009
Posts: 87
Received Thanks: 12
That was an CoEmu vē Release
EnoiZe is offline  
Old 06/02/2009, 13:28   #8
 
elite*gold: 0
Join Date: Jun 2007
Posts: 323
Received Thanks: 30
Quote:
Originally Posted by EnoiZe View Post
That was an CoEmu vē Release
You mean V2. 'vē' = Version Squared ;; V2 = Version 2 =]
Zanzibar is offline  
Old 06/02/2009, 16:08   #9


 
KraHen's Avatar
 
elite*gold: 0
Join Date: Jul 2006
Posts: 2,216
Received Thanks: 794
Although a Ninja Promoter NPC would be useless if you don`t have the skills...
KraHen is offline  
Old 06/02/2009, 16:35   #10
 
TheLeGend209's Avatar
 
elite*gold: 0
Join Date: May 2009
Posts: 157
Received Thanks: 15
Talking

Quote:
Originally Posted by sawickas View Post
Maby sombary can realaise all get promet npcs?
lol wat a fail post
TheLeGend209 is offline  
Old 06/02/2009, 18:09   #11
 
mejo33's Avatar
 
elite*gold: 0
Join Date: Sep 2007
Posts: 370
Received Thanks: 117
Quote:
Originally Posted by sawickas View Post
It work for coemu 2v?
yea its work on coemu v2
I helped You? Or You liked my post? Press THANKS
mejo33 is offline  
Old 06/02/2009, 18:12   #12

 
Kiyono's Avatar
 
elite*gold: 20
Join Date: Jun 2006
Posts: 3,296
Received Thanks: 925
I'm sure that the promotion NPCs were included lmao
Kiyono is offline  
Old 06/02/2009, 18:52   #13
 
sawickas's Avatar
 
elite*gold: 0
Join Date: Sep 2008
Posts: 617
Received Thanks: 38
/Closed
sawickas is offline  
Reply


Similar Threads Similar Threads
CoEmu
08/22/2009 - CO2 Private Server - 13 Replies
Can someone tell me how to create NPC Thats lets them type a comment.. and when they send the comment.. it goes to my email...?
CoEmu
06/18/2009 - CO2 Private Server - 12 Replies
I keep forgeting the code, how do I make an item in CoEmu? /item JusticeKatana 9 12 7 255 2?
[Help] COEmu 2 on LAN
06/09/2009 - CO2 Private Server - 22 Replies
Hi, I manage to run the source sample provided here (thanks Andy and to all who was involved in making. You know who you are). I perfectly run the server locally on my computer, bu since then i have extra 4 pcs and my friends wants to play FB, I manage to install the client to the other 4 pcs editing the server.dat on theirs to the ip on my pc locally with an ip address of 192.168.0.187 (you know Dlink DHCP ip's) On my pc, server.dat sticks to 127.0.0.1 I edited the loginservers...
[Help] CoEmu
06/02/2009 - CO2 Private Server - 0 Replies
Help comands for PM charakter dont vork
[HELP] CoEmu v2 GW
05/31/2009 - CO2 Private Server - 5 Replies
Hey, how i can open GW in CoEmu v2 source by andy? Thanks for help.



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


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.