New item for 3rd reborn?

07/31/2010 15:39 2010mrsurfer#1
So ive started a quest for 3rd rebirth, haven't got very far though, i was wondering if you could make an item.. say some beeds for the quest, could you make an item like this? If so, how?
07/31/2010 16:11 Basser#2
Yes you can create an item like that.
Cba to explain how, I'm on vacation.
07/31/2010 16:29 2010mrsurfer#3
Quote:
Originally Posted by Basser View Post
Yes you can create an item like that.
Cba to explain how, I'm on vacation.
nps :) enjoy your vacation
07/31/2010 16:55 Fish*#4
what version is this for?
07/31/2010 17:18 2010mrsurfer#5
5165 is it possible for this type?
07/31/2010 19:56 Fish*#6
u mean like, clicking on item and then sends a window show what to do?

example on how you could do it.
in npcdialog put this:
Code:
                            case 188833://Change to id u want
                                {
                                    if (Control == 0)
                                    {
                                        GC.AddSend(Packets.NPCSay("You can find the next clue near BirdIsland."));
                                        GC.AddSend(Packets.NPCSetFace(0));
                                        GC.AddSend(Packets.NPCFinish());
                                    }
                                    break;
                                }
Now in character.cs where the items are:
Code:
#region QuestItem
                    case 188833://Item id
                        {
                            MyClient.DialogNPC = 188833;//Make sure u change this to the npc id
                            NewestCOServer.PacketHandling.NPCDialog.Handle(MyClient, null, 188833, 0);//Make sure u change this to the npc id
                            MyClient.EndSend();
                            break;
                        }
                    #endregion
Now make sure u add this in npc.txt
Code:
188833 6217 2 67 5000 55 55
Dat should open up a window with text, when use item.
is what i used for bound item quest.
07/31/2010 20:26 2010mrsurfer#7
Yeah like that but the first of my quest, you have to go and give somebody some black and white pearls, the npc gives you the coordinates and the city hes located in and if you forget (some people will) you could click on the pearls and they give you the coordinates and the city, just is there anyway of like making the pearls? They wont be able to be dropped, only a quest item that disappears when a certain npc takes it off you.

I hope you understand
07/31/2010 21:48 Fish*#8
well use what i did above.
For not item to drop.
It is in ur itemx.txt and itemtype.dat.
dont know wich one have to be set to a number and what number.
07/31/2010 21:52 2010mrsurfer#9
Okay thanks ill update you with my results maybe to tomorrow :)