[Request] Some Requests =X

06/08/2009 13:27 Andrew.A#1
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. :handsdown: :p

+Thanks to anybody that helps.

Don't Flame Please. Thanks again. Your favourite noob Andrew.A
06/08/2009 15:40 danielachraf#2
You want all things that they don't work on the source .. lol ..
06/08/2009 16:55 Andrew.A#3
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??
06/08/2009 21:15 aidas2004#4
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 bitching 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 shit!
06/08/2009 21:32 Andrew.A#5
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.
06/08/2009 21:47 LordSesshomaru#6
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 bitching 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 shit!
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 damn 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
06/08/2009 22:32 Andrew.A#7
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?
06/09/2009 00:21 LordSesshomaru#8
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