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