Can someone make a little npc for me?

02/10/2011 00:40 EternityViruz#1
Hello people :)
can someone here make or post a NPC that only says something?
when u press him, he says: Hello, enjoy your stay!
And a button where it says Thanks...

PS: Source Is NewestCOServer - 5165

Thanks :)
02/10/2011 00:59 Santa#2
Which source?

case XXXXXXX:
if(Option is 1)
Text("Hello");
Link("Thanks", 255); 255 closes it
break;
02/10/2011 01:05 EternityViruz#3
Quote:
Originally Posted by StarBucks View Post
Which source?

case XXXXXXX:
if(Option is 1)
Text("Hello");
Link("Thanks", 255); 255 closes it
break;
NewestCOServer - 5165
02/10/2011 01:19 Santa#4
Quote:
Originally Posted by EternityViruz View Post
NewestCOServer - 5165
Ok, Well sorry i have never looked at that source.
02/10/2011 01:20 EternityViruz#5
Quote:
Originally Posted by StarBucks View Post
Ok, Well sorry i have never looked at that source.
ohh.. ok xD
Thanks anyway for looking over :)
any other that knows?
02/10/2011 02:48 chickmagnet#6
why dont u look at how npcs is done than u try makin ur own one thng i have learn is trial and error works great
02/10/2011 05:43 Spirited42#7
Quote:
Originally Posted by EternityViruz View Post
ohh.. ok xD
Thanks anyway for looking over :)
any other that knows?
Come on dude ... I made an npc for you a month ago...
Learn how to code already. I support people that want to learn- but you're making no effort. I taught myself how to code an npc in a day. I'm sure you can figure it out in a month. =\
02/10/2011 15:43 EternityViruz#8
Quote:
Originally Posted by Spirited View Post
Come on dude ... I made an npc for you a month ago...
Learn how to code already. I support people that want to learn- but you're making no effort. I taught myself how to code an npc in a day. I'm sure you can figure it out in a month. =\
u didnt make a NPC for me?
for 1 month ago i was playing ONLY Xbox 360 dude!
02/10/2011 16:04 Syst3m_W1z4rd#9
Quote:
Originally Posted by EternityViruz View Post
u didnt make a NPC for me?
for 1 month ago i was playing ONLY Xbox 360 dude!
Then it must be 2months.
02/10/2011 18:14 coreymills#10
here try using this i explaned what each one was best i could.

Code:
case 11://11 is the id of the npc
                                {
                                    if (option == 0)
                                    {
                                        GC.AddSend(Packets.NPCSay("Hello Welcome to my server"));// this is what the npc will say when u click on it just make sure u put what u want the npc to say in between the 2 "
                                        GC.AddSend(Packets.NPCLink("thank you", 255));//this is an option the npc will allow you to choose from 255 closes the the dialog with the npc
                                        GC.AddSend(Packets.NPCSetFace(N.Avatar));//this sets the avatar of the npc just leave this the way it is untell u learn more about how to make npc's on ur own
                                        GC.AddSend(Packets.NPCFinish());//this finishes the npc dialog just leave this the way it is too
                                    }
                                    break;
                                }
02/11/2011 01:30 EternityViruz#11
Quote:
Originally Posted by coreymills View Post
here try using this i explaned what each one was best i could.

Code:
case 11://11 is the id of the npc
                                {
                                    if (option == 0)
                                    {
                                        GC.AddSend(Packets.NPCSay("Hello Welcome to my server"));// this is what the npc will say when u click on it just make sure u put what u want the npc to say in between the 2 "
                                        GC.AddSend(Packets.NPCLink("thank you", 255));//this is an option the npc will allow you to choose from 255 closes the the dialog with the npc
                                        GC.AddSend(Packets.NPCSetFace(N.Avatar));//this sets the avatar of the npc just leave this the way it is untell u learn more about how to make npc's on ur own
                                        GC.AddSend(Packets.NPCFinish());//this finishes the npc dialog just leave this the way it is too
                                    }
                                    break;
                                }
thanks
+1
02/11/2011 01:49 .Beatz#12
There is plenty of info on making NPCs

Check my sig there is a guide in there