[Release] Custom PK Map (5165)

02/28/2010 16:13 Decker_#1
I seen someone release a Custom PKMap so I thought I would release my own.
This map is the same PK map used for the game "Execution" in AcidCo.
I hope you like it!

Put these 2 codes in NPCDialog.cs:
Code:
#region Medium PK Map
                            case 987787:
                                {
                                    if (Control == 0)
                                    {
                                        GC.AddSend(Packets.NPCSay("Would you like me to teleport you to the New PK Map?"));
                                        GC.AddSend(Packets.NPCLink("Yes", 1));
                                        GC.AddSend(Packets.NPCLink("No thanks", 255));
                                        GC.AddSend(Packets.NPCSetFace(N.Avatar));
                                        GC.AddSend(Packets.NPCFinish());
                                    }
                                    if (Control == 1)
                                    {
                                        GC.MyChar.Teleport(1081, 97, 97);
                                    }
                                    break;
                                }
                            #endregion
Code:
#region PK Map Go Back
                            case 987788:
                                {
                                    if (Control == 0)
                                    {
                                        GC.AddSend(Packets.NPCSay("Do you want to go back to Twin City?"));
                                        GC.AddSend(Packets.NPCLink("Yes please", 1));
                                        GC.AddSend(Packets.NPCLink("No", 255));
                                        GC.AddSend(Packets.NPCSetFace(N.Avatar));
                                        GC.AddSend(Packets.NPCFinish());
                                    }
                                    if (Control == 1)
                                    {
                                        GC.MyChar.Teleport(1002, 431, 379);
                                    }
                                    break;
02/28/2010 16:16 killersub#2
yay a quest XD
02/28/2010 16:29 Korvacs#3
This isnt a quest. Also all you have done is taken this release:

[Only registered and activated users can see links. Click Here To Register...]

And removed 1 dialog from the first npc and changed the map. So im closing this. Its not a custom pk map, its just a map where people can go to pk.

So yeah hardly a release, if you want to recommend this map then goto the other thread and suggest it.

Closed.