Register for your free account! | Forgot your password?

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

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

Advertisement



[Request] Some Requests =X

Discussion on [Request] Some Requests =X within the CO2 Private Server forum part of the Conquer Online 2 category.

Reply
 
Old   #1
 
elite*gold: 0
Join Date: Aug 2007
Posts: 187
Received Thanks: 45
[Request] Some Requests =X

Hi, Its me again xD

I would like to request the following things incase anybody wishes to share with me.

Nobility System
Guilds
Guild Wars
Honor Halos
Any Pre-Made NPC's
Toxic Fog????????
Counter Kill????????
XP Skill?????????
Any un-coded skills

I know I'm a noob at thi sbut im learning as you guys are helping and some of this is starting to make sense.

+Thanks to anybody that helps.

Don't Flame Please. Thanks again. Your favourite noob Andrew.A
Andrew.A is offline  
Old 06/08/2009, 15:40   #2
 
danielachraf's Avatar
 
elite*gold: 20
Join Date: Mar 2008
Posts: 958
Received Thanks: 494
You want all things that they don't work on the source .. lol ..
danielachraf is offline  
Old 06/08/2009, 16:55   #3
 
elite*gold: 0
Join Date: Aug 2007
Posts: 187
Received Thanks: 45
Quote:
Originally Posted by danielachraf View Post
You want all things that they don't work on the source .. lol ..
So no matter how good a coder someone is it couldn't be fixed??
Andrew.A is offline  
Old 06/08/2009, 21:15   #4
 
aidas2004's Avatar
 
elite*gold: 0
Join Date: Mar 2006
Posts: 222
Received Thanks: 47
I'm not surprised that elitepvp is becoming more like circus...
I'm to stupid to code myself so ill rather will w8 for someone who actually will do everything for me, that is very serious... And the same thinking is over 50% over here...
everyone around <- like me wont stop ******** each other for that.

Maybe it's enough to be lame? , and calling yourself as noob wont help you on that,
people here will help you if you will be able to try research information, trying to code yourself something, not just copy - pasting.

So THINK! before posting stupid new threads,
I'm sick of all this ****!
aidas2004 is offline  
Old 06/08/2009, 21:32   #5
 
elite*gold: 0
Join Date: Aug 2007
Posts: 187
Received Thanks: 45
There is always one Flamer... You don't expect me to wake up one day and know it all...
Yeah I am researching and when I don't find a solution I end up here. Btw not knowing how to code down't make you stupid it just makes you not know how to code. Im sure there are alot of things you don't know.
Andrew.A is offline  
Old 06/08/2009, 21:47   #6
 
LordSesshomaru's Avatar
 
elite*gold: 0
Join Date: Mar 2009
Posts: 48
Received Thanks: 15
Quote:
Originally Posted by aidas2004 View Post
I'm not surprised that elitepvpers is becoming more like circus...
I'm to stupid to code myself so ill rather will w8 for someone who actually will do everything for me, that is very serious... And the same thinking is over 50% over here...
everyone around <- like me wont stop ******** each other for that.

Maybe it's enough to be lame? , and calling yourself as noob wont help you on that,
people here will help you if you will be able to try research information, trying to code yourself something, not just copy - pasting.

So THINK! before posting stupid new threads,
I'm sick of all this ****!
Well sadly Andrew his words aren't flaming , if you really think about it. No one is going to hand over there hard coded codes. 85% Of elitepvpers in the Conquer Online Section does not know how to code. No offense to andy but his source is buggy and a in my eyes badly organized. If you want to have those things you your server i suggest you start looking how other sources did it (NOT LOTF). If you do not want to help yourself and learn then quit , because if someone just release the codes your not learning a **** thing just how other people do stuff. And you have to realize that codes post on elitepvpers and any other forums are not 100% perfect.

Call this a flame but its the hard truth.

@Request Close Useless Thread
LordSesshomaru is offline  
Old 06/08/2009, 22:32   #7
 
elite*gold: 0
Join Date: Aug 2007
Posts: 187
Received Thanks: 45
Well can you atleast explain so i can understand how to do it just like Emma Explained what all the parts of a code ment so I could put it together?
Andrew.A is offline  
Old 06/09/2009, 00:21   #8
 
LordSesshomaru's Avatar
 
elite*gold: 0
Join Date: Mar 2009
Posts: 48
Received Thanks: 15
Well since i am not as active as i used to be and i do not use Andy's source no i won't explain it to you , because i am not familiar with his coding. Everyone codes diffrent these 3 things "Nobility System - Guilds - Guild Wars - Honor Halos" I can promise you will not be released because a server that would have this stuff would rank over other that do not. So do not ask again. And as for the skills just look at how other skills are done its not hard.
Quote:
Any Pre-Made NPC's
Toxic Fog????????
Counter Kill????????
XP Skill?????????
Any un-coded skills
Ill start form the top and work my way down.

Here is an example from my source. (I Use hybrids base since Rev 1)
Code:
    
                case 0:
                    {
                        NpcProcessor.Dialog(Client, new string[] {
                            "AVATAR 1",
                            "TEXT Where are you heading for? I can teleport you for a price of 100 silver.",
                            "OPTION1 Phoenix Castle.",
                            "OPTION2 Desert City.",
                            "OPTION3 Ape Mountain.",
                            "OPTION4 Bird Island.",
                            "OPTION5 Mine Cave.",
                            "OPTION6 Market.",
                            "OPTION-1 Just passing by."
                        });
                        break;
                    }
                default:
                    {
                        if (Client.Money >= 100)
                        {
                            Client.Money -= 100;
                            Client.PrevMap = Client.Entity.MapID;
                            switch (OptionID)
                            {
                                case 1:
                                    Client.Teleport(1002, 958, 555);
                                    break;
                                case 2:
                                    Client.Teleport(1002, 069, 473);
                                    break;
                                case 3:
                                    Client.Teleport(1002, 555, 957);
                                    break;
                                case 4:
                                    Client.Teleport(1002, 232, 190);
                                    break;
                                case 5:
                                    Client.Teleport(1002, 053, 399);
                                    break;
                                case 6:
                                    Client.Teleport(1036, 211, 196);
                                    break;
                            }
                        }
                        else
                        {
                            NpcProcessor.Dialog(Client, new string[] {
                                "AVATAR 1",
                                "TEXT You don't have enough silvers.",
                                "OPTION-1 I see."
                            });
                        }
                        break;
                    }
            }
        }
    }
For all the requests and complaing you do about how the source does not have what you want in it , you could have already coded 50 npc's using the format of coemu here is a code i made for coemu for you!

Code:
case NPCID://What ever npc id you want to make it 
                    {
                        if (LinkBack == 0)
                        {
                            Text("If i would have spent more time coding npc's rather than asking for people's code this might have been coded", CSocket);// what the npc will say 
                            Link("Hmmmm, Why is the owner so lazy?.", 1, CSocket);// the link He will go do  liek ", 1.CSOcket): will go to link one 
                            Link("I got to go.", 255, CSocket);
                            Face(30, CSocket); End(CSocket);
                        }
                        else if (LinkBack == 1)// what will be said after you clicked the link 
                        {
                            {
                                Text("Well some people just don't how to code and or are to lazy to look at the source and code custom npc's like Lord Sesshomaru from elitepvpers made this one. While Alex just kept asking people for there codes so he never will learn how to code and like every programer that use's somone's source learn to program his own source from expernice.", CSocket);
                                Text(" After that you would have a kick ass server and to tell everyone that it is very unique. But no everyone is cut out for programing. Its not bad to use a base source like Lord Sesshomaru did with "Hybrid's Base!", CSocket);
                                Link("So what is the point of this?", 2, CSocket);
                                Link("I could care less.", 255, CSocket);
                                Face(30, CSocket); End(CSocket);
                            }
                        }
                        else if (LinkBack == 2)
                        {
                            {
                                Text("To teach Alex that it took me 5 seconds to copy and paste and edit an npc script and edit it to say what ever the hell i wanted it to say.And if he fails to realize that then he should just quit.", CSocket);
                                Link("So Why are you being so mean?", 3, CSocket);
                                Link("You Bastard.", 255, CSocket);
                                Face(30, CSocket); End(CSocket);
                            }
                        }
                        else if (LinkBack == 3)
                        {
                            {
                                Text("Well if he would just take the time and listen to what people are telling him, rather than being stubborn and read tutorialls and look more at the source he would have known how to copy and paste and edit to make new npc's .", CSocket);
                                Link("Well That ture please go on", 4, CSocket);
                                Face(30, CSocket); End(CSocket);
                            }
                        }
                        else if (LinkBack == 4)
                        {
                            {// You can also make links give items like this 
// AddInventory ( BLAH BLAH BLAH BLAH) id id and shit mine jsut dced you hahah
                               CSocket.Disconnect();
                                Link("Thanks Man.", 255, CSocket);
                                Face(30, CSocket); End(CSocket);
                            }
                        }
                        break;
                    }
Took me 2 mins to come up with that very rude but to a point npc code.

Alex i hope you take this with great consideration.

Code:
Moral of this Story : Instead of spending time complaining about something why don't you use your time doing something constructive
I know there is a lot of typos but i did this fast so i could get back to playing WoW
LordSesshomaru is offline  
Reply


Similar Threads Similar Threads
[Request] Check this i need lot's of requests :D
03/06/2010 - CO2 Private Server - 11 Replies
i need : - enlight sistem code - flower fix sistem code - npc guide and how to make them to dont say : blablabla npc id xxl - fixed item lock - original item socketer + star/tough drills :handsdown: please
[Request]Requests
02/21/2010 - Mabinogi - 65 Replies
Tell me what you want, via pm. Also click the thanks button, I want my rating to be pumped. I'll respond.
[Request]Stop Making Requests...
07/04/2009 - CO2 Private Server - 21 Replies
I hate to complain, but honestly, far to many people make request threads (some disguised as help threads, etc.). For all those that have no clue how to code period, you need to start being a bit more patient, and show some respect to the community. There are some here who are willing to release stuff to the public, but let them decide what they wish to share. Don't keep demanding stuff, it's nobodies job to make a fully working source for you. If anything, get CoEmuV2, or Hybrid's source,...
:HH: Bot Requests. You Request, I Make
02/11/2009 - CO2 Programming - 141 Replies
Hey guys, This is a thread similar to Evanxxxm's thread with requesting different bots which he made. I will be making them in AutoIt and I will also be releasing source code so that you can use it in your own projects and learn from it. Please ask and request. Also, please explain the full concept which the bot should include and give a structure to the program. Eg.



All times are GMT +1. The time now is 12:34.


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.