4Botters


 
Go Back   4Botters" I am A Bad Ass Botter " > Online Games > Conquer Online Sections > Conquer Bots > Conquer Private Servers

Conquer Private Servers Post guides , scripts , advertise , anything related to Conquer Private Servers !

Reply
 
LinkBack Thread Tools Display Modes
  #1 (permalink)  
Old 01-26-2010, 06:02 PM
Demon^Child's Avatar
A Botter
 
Join Date: Dec 2009
Posts: 178
Thanks: 11
Thanked 279 Times in 32 Posts
Default Silver For Cps [5165]

I dont know if it has been released or no one has it but i got it and i thot i release it and help you all out
So open
PacketHandling/NPCsDialog.cs and add this code

Code:
#region Exchanger
                            case 66661125:
                                {
                                    if (Linkback == 0)
                                    {
                                        GC.AddSend(Packets.NPCSay("Well it seems your a hunter, And you seem to be low on Cps, Well i can exchange silver for cps, What do you think? Wanna trade. Or if you want i can exchange cps for silver. Make your choice "));
                                        GC.AddSend(Packets.NPCLink("500M to 5k Cps", 1));
                                        GC.AddSend(Packets.NPCLink("300M to 2.5k Cps", 2));
                                        GC.AddSend(Packets.NPCLink("100M to 1k Cps", 3));
                                        GC.AddSend(Packets.NPCLink("50M to 500 Cps", 4));
                                        GC.AddSend(Packets.NPCLink("Next", 5));
                                        GC.AddSend(Packets.NPCLink("Im Poor Sorry", 255));
                                        GC.AddSend(Packets.NPCSetFace(N.Avatar));
                                        GC.AddSend(Packets.NPCFinish());
                                    }
                                    if (Linkback == 1)
                                    {
                                        if (GC.MyChar.Silvers >= 500000000)
                                        {
                                            GC.MyChar.Silvers -= 500000000;
                                            GC.MyChar.CPs += 5000;
                                            GC.Message(2011, "( " + GC.MyChar.Name + " )Has changed 500kk to 5k Cps");
                                        }
                                        else
                                        {
                                            GC.AddSend(Packets.NPCSay("You dont have 50kk"));
                                            GC.AddSend(Packets.NPCLink("My bad", 255));
                                            GC.AddSend(Packets.NPCSetFace(N.Avatar));
                                            GC.AddSend(Packets.NPCFinish());

                                        }
                                    }
                                    if (Linkback == 2)
                                    {
                                        if (GC.MyChar.Silvers >= 300000000)
                                        {
                                            GC.MyChar.Silvers -= 300000000;
                                            GC.MyChar.CPs += 2500;
                                            GC.Message(2011, "( " + GC.MyChar.Name + " )Has changed 300kk to 2.5k Cps");

                                        }
                                        else
                                        {
                                            GC.AddSend(Packets.NPCSay("You dont have 30kk"));
                                            GC.AddSend(Packets.NPCLink("My bad", 255));
                                            GC.AddSend(Packets.NPCSetFace(N.Avatar));
                                            GC.AddSend(Packets.NPCFinish());
                                        }

                                    }
                                    if (Linkback == 3)
                                    {
                                        if (GC.MyChar.Silvers >= 100000000)
                                        {
                                            GC.MyChar.Silvers -= 100000000;
                                            GC.MyChar.CPs += 1000;
                                            GC.Message(2011, "( " + GC.MyChar.Name + " )Has changed 100kk to 1k Cps");
                                        }
                                        else
                                        {
                                            GC.AddSend(Packets.NPCSay("You dont have 100kk"));
                                            GC.AddSend(Packets.NPCLink("My bad", 255));
                                            GC.AddSend(Packets.NPCSetFace(N.Avatar));
                                            GC.AddSend(Packets.NPCFinish());
                                        }
                                    }
                                    if (Linkback == 4)
                                    {
                                        if (GC.MyChar.Silvers >= 50000000)
                                        {
                                            GC.MyChar.Silvers -= 50000000;
                                            GC.MyChar.CPs += 500;
                                            GC.Message(2011, "( " + GC.MyChar.Name + " )Has changed 50kk to 500 Cps");
                                        }
                                        else
                                        {
                                            GC.AddSend(Packets.NPCSay("You dont have 50kk"));
                                            GC.AddSend(Packets.NPCLink("My bad", 255));
                                            GC.AddSend(Packets.NPCSetFace(N.Avatar));
                                            GC.AddSend(Packets.NPCFinish());
                                        }
                                    }
                                    if (Linkback == 5)
                                    {
                                        GC.AddSend(Packets.NPCSay("So how much silvers do you need?"));
                                        GC.AddSend(Packets.NPCLink("5k cps to 500 MGold", 6));
                                        GC.AddSend(Packets.NPCLink("2.5k cps to 300 MGold", 7));
                                        GC.AddSend(Packets.NPCLink("1k cps to 100 MGold", 8));
                                        GC.AddSend(Packets.NPCLink("500 cps to 50 MGold", 9));
                                        GC.AddSend(Packets.NPCLink("None Go Away", 255));
                                        GC.AddSend(Packets.NPCSetFace(N.Avatar));
                                        GC.AddSend(Packets.NPCFinish());
                                    }
                                    if (Linkback == 6)
                                    {
                                        if (GC.MyChar.CPs >= 5000)
                                        {
                                            GC.MyChar.CPs -= 5000;
                                            GC.MyChar.Silvers += 500000000;
                                            GC.Message(2011, "( " + GC.MyChar.Name + " )Has changed 5k Cps to 500kk");
                                        }
                                        else
                                        {
                                            GC.AddSend(Packets.NPCSay("You dont have 5k Cps"));
                                            GC.AddSend(Packets.NPCLink("My bad", 255));
                                            GC.AddSend(Packets.NPCSetFace(N.Avatar));
                                            GC.AddSend(Packets.NPCFinish());
                                        }
                                    }
                                    if (Linkback == 7)
                                    {
                                        if (GC.MyChar.CPs >= 2500)
                                        {
                                            GC.MyChar.CPs -= 2500;
                                            GC.MyChar.Silvers += 300000000;
                                            GC.Message(2011, "( " + GC.MyChar.Name + " )Has changed 2.5k to 300kk ");
                                        }
                                        else
                                        {
                                            GC.AddSend(Packets.NPCSay("You dont have 2.5k Cps"));
                                            GC.AddSend(Packets.NPCLink("My bad", 255));
                                            GC.AddSend(Packets.NPCSetFace(N.Avatar));
                                            GC.AddSend(Packets.NPCFinish());
                                        }
                                    }
                                    if (Linkback == 8)
                                    {
                                        if (GC.MyChar.CPs >= 1000)
                                        {
                                            GC.MyChar.CPs -= 1000;
                                            GC.MyChar.Silvers += 100000000;
                                            GC.Message(2011, "( " + GC.MyChar.Name + " )Has changed 1k cps to 100kk ");

                                        }
                                        else
                                        {
                                            GC.AddSend(Packets.NPCSay("You dont have 1k Cps"));
                                            GC.AddSend(Packets.NPCLink("My bad", 255));
                                            GC.AddSend(Packets.NPCSetFace(N.Avatar));
                                            GC.AddSend(Packets.NPCFinish());
                                        }
                                    }
                                    if (Linkback == 9)
                                    {
                                        if (GC.MyChar.CPs >= 500)
                                        {
                                            GC.MyChar.CPs -= 500;
                                            GC.MyChar.Silvers += 50000000;
                                            GC.Message(2011, "( " + GC.MyChar.Name + " )Has changed 500 to 50kk ");
                                        }
                                        else
                                        {
                                            GC.AddSend(Packets.NPCSay("You dont have 500 Cps"));
                                            GC.AddSend(Packets.NPCLink("My bad", 255));
                                            GC.AddSend(Packets.NPCSetFace(N.Avatar));
                                            GC.AddSend(Packets.NPCFinish());
                                        }
                                    }

                                    break;
                                }
                            #endregion
And go to OldCODB and open NPCs.txt and add this NPC

Code:
666250 2560 2 43 1002 438 380
Goodluck and remember to press
Thanks and i hope you like it
Reply With Quote
The Following 16 Users Say Thank You to Demon^Child For This Useful Post:
baroff (03-23-2010), Closo (01-26-2010), Combat (02-09-2010), FallOutBoy (02-12-2010), geras386 (06-05-2010), Invasion12 (01-29-2010), jhaz88 (02-26-2010), killersub (01-26-2010), MexicanoCoder (02-09-2010), speedco (01-26-2010), Spladder (02-02-2010), yes5090 (03-10-2010), zengy (03-14-2010), |^ØnëwïngëÐ^| (02-09-2010), ~!SaTaN!~ (06-29-2010), ׍ĥę×Ôŋë× (02-09-2010)
Google Adsense
  #2 (permalink)  
Old 01-26-2010, 06:05 PM
Closo's Avatar
Moderator
 
Join Date: Nov 2009
Location: In C# :D
Posts: 995
Thanks: 252
Thanked 374 Times in 151 Posts
Default Re: Silver For Cps [5165]

i think was released before? anywayz u may helped some people here is my thx but anywayz not gonna use it i code myself xD
__________________
DarkLife Server Progress:

Jobs : 100%
New NPCS : 50%
Mobs: 100%
Jobs Quests: 10%
Client: 50%
New System: 20%


-----------------------------------------------------
Check all my work here
Reply With Quote
  #3 (permalink)  
Old 01-26-2010, 06:06 PM
Demon^Child's Avatar
A Botter
 
Join Date: Dec 2009
Posts: 178
Thanks: 11
Thanked 279 Times in 32 Posts
Default Re: Silver For Cps [5165]

Quote:
Originally Posted by omom248 Sorry you can't view links because you are not registered. [ Click here to register ]
i think was released before? anywayz u may helped some people here is my thx but anywayz not gonna use it i code myself xD
Your welcome and thanks
Reply With Quote
The Following User Says Thank You to Demon^Child For This Useful Post:
chrisyan12345 (01-27-2010)
  #4 (permalink)  
Old 01-26-2010, 08:06 PM
killersub's Avatar
A Botter
 
Join Date: Dec 2009
Posts: 214
Thanks: 33
Thanked 80 Times in 26 Posts
Default Re: Silver For Cps [5165]

Another "Awesome" release bro...keep da good work up! +thanks
Reply With Quote
The Following User Says Thank You to killersub For This Useful Post:
chrisyan12345 (01-27-2010)
  #5 (permalink)  
Old 01-26-2010, 08:10 PM
Demon^Child's Avatar
A Botter
 
Join Date: Dec 2009
Posts: 178
Thanks: 11
Thanked 279 Times in 32 Posts
Default Re: Silver For Cps [5165]

Quote:
Originally Posted by killersub Sorry you can't view links because you are not registered. [ Click here to register ]
Another "Awesome" release bro...keep da good work up! +thanks
Thanks im trying my best
Reply With Quote
  #6 (permalink)  
Old 01-26-2010, 08:46 PM
A Botter
 
Join Date: Dec 2009
Posts: 136
Thanks: 27
Thanked 20 Times in 10 Posts
Default Re: Silver For Cps [5165]

him tell me Linkback Error why?
Reply With Quote
  #7 (permalink)  
Old 01-26-2010, 08:54 PM
Bad Ass Botta!
 
Join Date: Jan 2009
Location: Trinidad & Tobago WI
Posts: 377
Thanks: 16
Thanked 47 Times in 30 Posts
Default Re: Silver For Cps [5165]

change Linkback to "Control"
__________________
Dont get mad get even


Shit made by dill XD

http://www.4botters.com/forum/conque...-part-2-a.html <+15 npcs>

http://www.4botters.com/forum/conque...d-ur-help.html <Taoist Star>

http://www.4botters.com/forum/conque...html#post56467 <Unknown Man wine>
Reply With Quote
  #8 (permalink)  
Old 01-26-2010, 08:59 PM
A Botter
 
Join Date: Dec 2009
Posts: 136
Thanks: 27
Thanked 20 Times in 10 Posts
Default Re: Silver For Cps [5165]

lol thx work and change npc its error change to
66661125 2560 2 43 1002 438 380
Reply With Quote
  #9 (permalink)  
Old 01-26-2010, 09:06 PM
Demon^Child's Avatar
A Botter
 
Join Date: Dec 2009
Posts: 178
Thanks: 11
Thanked 279 Times in 32 Posts
Default Re: Silver For Cps [5165]

Quote:
Originally Posted by speedco Sorry you can't view links because you are not registered. [ Click here to register ]
lol thx work and change npc its error change to
66661125 2560 2 43 1002 438 380
I dont get no error o.o
Reply With Quote
  #10 (permalink)  
Old 01-26-2010, 09:10 PM
A Botter
 
Join Date: Dec 2009
Posts: 136
Thanks: 27
Thanked 20 Times in 10 Posts
Default Re: Silver For Cps [5165]

you owner real of DemonCo?
Reply With Quote
  #11 (permalink)  
Old 01-26-2010, 10:32 PM
Demon^Child's Avatar
A Botter
 
Join Date: Dec 2009
Posts: 178
Thanks: 11
Thanked 279 Times in 32 Posts
Default Re: Silver For Cps [5165]

Does anyone else get errors?
Reply With Quote
  #12 (permalink)  
Old 01-26-2010, 11:25 PM
Beginner
 
Join Date: Jan 2010
Posts: 41
Thanks: 4
Thanked 8 Times in 2 Posts
Default Re: Silver For Cps [5165]

well the npc prolly wouldnt do anything for them cuz u posted "case" in code ending in 125, but id for npc thatll spawn ending in 250.

Good work though...was thinking of coding something similar.
Reply With Quote
  #13 (permalink)  
Old 02-13-2010, 02:05 PM
Noob
 
Join Date: Jun 2008
Posts: 3
Thanks: 0
Thanked 0 Times in 0 Posts
Default Re: Silver For Cps [5165]

i add this code in npcdialgue.cs and npc.txt but nothing happend ,, i try also modifing the santa clause and put the dialogue in my language , but nothing changed ..

after i edited the npcdialogue.cs , i just saved . it need make something else ?
pls help me man

Last edited by pitaclon; 02-13-2010 at 02:46 PM.
Reply With Quote
Reply

Bookmarks


Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On

Forum Jump


Translate This Page

Similar Threads
Thread Thread Starter Forum Replies Last Post
Npc sell Bronze,Silver,Gold source 5165 speedco Conquer Private Servers 4 01-09-2010 01:37 PM
[Release]Simple Silver for Cps code hanibal Conquer Private Servers 3 11-28-2009 12:51 AM


All times are GMT. The time now is 07:45 AM.

Powered by vBulletin® Version 3.8.6
Copyright ©2000 - 2010, Jelsoft Enterprises Ltd.