|
You last visited: Today at 15:14
Advertisement
[HELP] Archer Promotion is bugged...
Discussion on [HELP] Archer Promotion is bugged... within the CO2 Private Server forum part of the Conquer Online 2 category.
03/02/2010, 23:30
|
#1
|
elite*gold: 0
Join Date: Feb 2007
Posts: 26
Received Thanks: 0
|
[HELP] Archer Promotion is bugged...
I am using a version of korolos 5165 source. All of the promotions work, BESIDES archer promotion.. Once I get to eagle archer the Promotion=fail.
If anyone has a code or something along those lines I would appreciate it.
Thank you,
ztcjsa
|
|
|
03/02/2010, 23:31
|
#2
|
elite*gold: 0
Join Date: Oct 2009
Posts: 8,783
Received Thanks: 5,304
|
Because you need 5 eux ores, the npc just fails to mention it.
|
|
|
03/02/2010, 23:32
|
#3
|
elite*gold: 0
Join Date: Feb 2007
Posts: 26
Received Thanks: 0
|
Wow Arco, your a beast. I completely forgot lols. Thank you.
|
|
|
03/02/2010, 23:33
|
#4
|
elite*gold: 0
Join Date: Oct 2009
Posts: 8,783
Received Thanks: 5,304
|
Quote:
Originally Posted by ztcjsa
Wow Arco, your a beast. I completely forgot lols. Thank you.
|
Lol no problem.
Anymore problems don't hesitate to ask, as long as you don't post 342 threads a day asking for help.
|
|
|
03/02/2010, 23:34
|
#5
|
elite*gold: 0
Join Date: Feb 2007
Posts: 26
Received Thanks: 0
|
Haha, Alright. Sounds good Arco. and Ill make sure to ask you for help in the future.
|
|
|
03/02/2010, 23:39
|
#6
|
elite*gold: 0
Join Date: Feb 2010
Posts: 378
Received Thanks: 86
|
Quote:
Originally Posted by .Arco
Lol no problem.
Anymore problems don't hesitate to ask, as long as you don't post 342 threads a day asking for help.
|
Lol, Decker =P
|
|
|
03/02/2010, 23:46
|
#7
|
elite*gold: 0
Join Date: Mar 2008
Posts: 309
Received Thanks: 208
|
You could use this, this is my own archer promo npc... sorta.
I just made it sprechen englisch and I added the req'd mats for promo and where to get them. ;-;
It gives you 8,000 cps when you promote.
It's clean, it's english, and it's friendly.
It will tell you what you need to promote and where+how to get the ores.
PHP Code:
#region ArcherGod case 400: { if (GC.MyChar.Job >= 40 && GC.MyChar.Job <= 45 && Control == 0) { GC.AddSend(Packets.NPCSay("Hello " + GC.MyChar.Name + ", I have been appointed to be your instructer.\nAre you ready for your for training?")); GC.AddSend(Packets.NPCLink("Yes, I am ready for my promotion.", 1)); GC.AddSend(Packets.NPCLink("Teach me new skills master.", 2)); GC.AddSend(Packets.NPCLink("No, I just like talking to you.", 255)); GC.AddSend(Packets.NPCSetFace(N.Avatar)); GC.AddSend(Packets.NPCFinish()); } #region Promote else if (GC.MyChar.Job >= 40 && GC.MyChar.Job <= 45) { if (GC.MyChar.Job <= 44 && (Control == 1 || Control == 10)) { if (Control == 1) { GC.AddSend(Packets.NPCSay("You need to be level " + GC.MyChar.LevReqForPromote + " to promote to " + ((Game.Character.JobName)(GC.MyChar.Job + 1)).ToString() + "\n")); if (GC.MyChar.Job == 41) GC.AddSend(Packets.NPCSay("You will not be able to progress in the promotion without 5 Euxenite Ores\nPlease be sure you have one in your inventory before continuing\n")); if (GC.MyChar.Job == 42) GC.AddSend(Packets.NPCSay("You will not be able to progress in the promotion without a Emerald\nPlease be sure you have one in your inventory before continuing\n")); else if (GC.MyChar.Job == 43) GC.AddSend(Packets.NPCSay("You will not be able to progress in the promotion without a Meteor\nPlease be sure you have one in your inventory before continuing\n")); else if (GC.MyChar.Job == 44) GC.AddSend(Packets.NPCSay("You will not be able to progress in the promotion without a MoonBox\nPlease be sure you have one in your inventory before continuing\n")); GC.AddSend(Packets.NPCSay("You will get 8,000 CPs on completion of your promotion.")); GC.AddSend(Packets.NPCLink("I'm ready, Promote me.", 10)); GC.AddSend(Packets.NPCLink("Forget it.", 255)); GC.AddSend(Packets.NPCSetFace(N.Avatar)); GC.AddSend(Packets.NPCFinish()); } else if (Control == 10) { if (GC.MyChar.Level >= GC.MyChar.LevReqForPromote) { byte Need = 1; uint ID = GC.MyChar.PromoteItems; if (ID == 1072031) Need = 5; if (GC.MyChar.InventoryContains(ID, Need) || ID == 1) { for (byte i = 0; i < Need; i++) GC.MyChar.RemoveItem(GC.MyChar.NextItem(ID)); GC.MyChar.Job++; GC.MyChar.CPs += 8000;
GC.AddSend(Packets.NPCSay("Congratulations! You are now a " + ((Game.Character.JobName)GC.MyChar.Job).ToString() + "\nI have given you what I promised also.\n8,000 CPs.")); GC.AddSend(Packets.NPCLink("Thank you.", 255)); GC.AddSend(Packets.NPCSetFace(N.Avatar)); GC.AddSend(Packets.NPCFinish()); } else { GC.AddSend(Packets.NPCSay("You must bring me ")); if (GC.MyChar.Job == 41) GC.AddSend(Packets.NPCSay("5 Euxenite Ores before you can continue with your promotion.")); else if (GC.MyChar.Job == 42) GC.AddSend(Packets.NPCSay("a Emerald before you can continue with your promotion.")); else if (GC.MyChar.Job == 43) GC.AddSend(Packets.NPCSay("a Meteor before you can continue with your promotion.")); else if (GC.MyChar.Job == 44) GC.AddSend(Packets.NPCSay("a MoonBox before you can continue with your promotion.")); if (GC.MyChar.Job == 41) GC.AddSend(Packets.NPCLink("Where can I find the ores?", 96)); GC.AddSend(Packets.NPCLink("Alright.", 255)); GC.AddSend(Packets.NPCSetFace(N.Avatar)); GC.AddSend(Packets.NPCFinish()); } } else { GC.AddSend(Packets.NPCSay("You are not qualified for the promotion yet.\nYour level is too low.")); GC.AddSend(Packets.NPCLink("I see.", 255)); GC.AddSend(Packets.NPCSetFace(N.Avatar)); GC.AddSend(Packets.NPCFinish()); } } } else if (Control == 1 || Control == 10) { GC.AddSend(Packets.NPCSay("You have already been promoted to ArcherMaster.\nYou cannot be promoted any further.")); GC.AddSend(Packets.NPCLink("I see.", 255)); GC.AddSend(Packets.NPCSetFace(N.Avatar)); GC.AddSend(Packets.NPCFinish()); } else if (Control == 96) { GC.AddSend(Packets.NPCSay("Grab a Pick Axe from the Storekeeper in Twin City.\nThen head to the Mine Cave.\nTalk to the Twin City Conductress to get there. ")); GC.AddSend(Packets.NPCLink("Thanks,", 255)); GC.AddSend(Packets.NPCSetFace(N.Avatar)); GC.AddSend(Packets.NPCFinish()); } #endregion #region Skill else if (Control == 2) { GC.AddSend(Packets.NPCSay("What would you like to learn my apprentice?")); ArrayList Skills = (ArrayList)Database.SkillForLearning[(byte)4]; if (Skills.Count < 8) { for (byte i = 0; i < Skills.Count; i++) GC.AddSend(Packets.NPCLink(((Extra.SkillIDs)(((SkillLearn)Skills[i]).ID)).ToString() + "(Lv " + ((SkillLearn)Skills[i]).LevelReq.ToString() + " )", (byte)(20 + i))); } else { for (byte i = 0; i < 7; i++) GC.AddSend(Packets.NPCLink(((Extra.SkillIDs)(((SkillLearn)Skills[i]).ID)).ToString() + "(Lv " + ((SkillLearn)Skills[i]).LevelReq.ToString() + " )", (byte)(20 + i))); GC.AddSend(Packets.NPCLink("Next", 100)); } GC.AddSend(Packets.NPCSetFace(N.Avatar)); GC.AddSend(Packets.NPCFinish()); } else if (Control == 100) { GC.AddSend(Packets.NPCSay("What would you like to learn my apprentice?")); ArrayList Skills = (ArrayList)Database.SkillForLearning[(byte)4]; for (byte i = 7; i < Skills.Count; i++) GC.AddSend(Packets.NPCLink(((Extra.SkillIDs)(((SkillLearn)Skills[i]).ID)).ToString() + "(Lv " + ((SkillLearn)Skills[i]).LevelReq.ToString() + " )", (byte)(20 + i))); GC.AddSend(Packets.NPCLink("Previous", 2)); GC.AddSend(Packets.NPCSetFace(N.Avatar)); GC.AddSend(Packets.NPCFinish()); } else if (Control >= 20 && Control <= 34) { ArrayList Skills = (ArrayList)Database.SkillForLearning[(byte)4]; SkillLearn S = (SkillLearn)Skills[(byte)(Control - 20)]; if (GC.MyChar.Level >= S.LevelReq) GC.MyChar.NewSkill(S.ToSkill()); else { GC.AddSend(Packets.NPCSay("Your level does not satisfy the requirement of the skill.")); GC.AddSend(Packets.NPCLink("I see.", 255)); GC.AddSend(Packets.NPCSetFace(N.Avatar)); GC.AddSend(Packets.NPCFinish()); } } } #endregion else { GC.AddSend(Packets.NPCSay("Hello " + GC.MyChar.Name + ", I am the Archer instructor. \nI teach thoes who have chosen to be a Archer.\nBut you're not a Archer, therfor I cannot train you.\nGo find your trainer. He or she is around he somewhere.")); GC.AddSend(Packets.NPCLink("Alright.", 255)); GC.AddSend(Packets.NPCSetFace(N.Avatar)); GC.AddSend(Packets.NPCFinish()); } break; } #endregion
|
|
|
03/03/2010, 00:19
|
#8
|
elite*gold: 0
Join Date: Sep 2009
Posts: 321
Received Thanks: 60
|
or just find what it says the got to remove item, 5 or something like that how many of the ores it takes and change it to 0  simple.
|
|
|
03/03/2010, 00:29
|
#9
|
elite*gold: 0
Join Date: Feb 2010
Posts: 129
Received Thanks: 30
|
Quote:
Originally Posted by -NewDawn-
Lol, Decker =P
|
What was the point of saying that?
All you did is spam this thread
|
|
|
03/03/2010, 01:00
|
#10
|
elite*gold: 0
Join Date: Apr 2008
Posts: 275
Received Thanks: 43
|
hehehehhe, when i first play it then i play archer i have that problem too, i thought it was an error. and its not
|
|
|
Similar Threads
|
'BOUT PROMOTION! ;)
11/15/2009 - Grand Chase Philippines - 3 Replies
D U DEWDS KNOW BOUT HOW TO BE PROMOTED? IM LIKE REPORTING PPL WHO BREAK THE RULES IN THIS FORUM FOR LIKE ALMOST 5 DAYS OR SO..:)I REPORT LIKE 4 - 7 PPLS A DAY
|
Promotion bug
05/21/2009 - CO2 Private Server - 3 Replies
Hi guys, im using 5065 binaries and im wondering if anyone could help me figure out how to fix the promotions, they all work up until 100(archer) and 110(the rest) im not quite sure what is causing the problem and any help would be greatly appreciated.
|
Promotion help
08/01/2007 - Conquer Online 2 - 2 Replies
Ok well, i sjut wanted to know.
I am a lvl 113 tro-war and i can finaly get my 110 promo cause i stuffed up my points.
I was wondering when i get the 110 promo DB if i use it to re-allot my points and i dont have the defualt strength of 225 for war rb 110 promo after i re-allot my points will i still be warrior master if i dont have the points required?
might be +1k for helper xD
|
All times are GMT +1. The time now is 15:15.
|
|