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;







