Hello. This is the Moon Platform NPC just like Real Conquer. She (Luna) teleports you to the Moon Platform. She is in the exact same spot as she is in Real Conquer in Twin City.
Put this in NPCDialog.cs:
Now put this at the bottom of OldCODB>NPCs.txt:
Done.
Press thanks!
Put this in NPCDialog.cs:
Code:
#region Moon Platform
case 998811:
{
if (Control == 0)
{
GC.AddSend(Packets.NPCSay("Would you like to go to the Moon Platform?"));
GC.AddSend(Packets.NPCLink("Yes", 1));
GC.AddSend(Packets.NPCLink("No", 255));
GC.AddSend(Packets.NPCSetFace(30));
GC.AddSend(Packets.NPCFinish());
}
else if (Control == 1)
GC.MyChar.Teleport(1100, 184, 164);
break;
}
#endregion
Code:
998811 8040 2 0 1002 372 407
Press thanks!