- Joined
- Sep 13, 2007
- Messages
- 23
- Reaction score
- 0
I want to make my NPC teleport me... I already have the Dialog, but I don't know how to make it teleport me to some coords and map I want.
here's my NPC dialog:
here's my NPC dialog:
Code:
if (CurrentNPC == 727)
{
SendPacket(General.MyPackets.NPCSay("Would you like to go to Pk Arena ? "));
SendPacket(General.MyPackets.NPCLink("Oh Yeah I wanna PWN noobs!", 1));
SendPacket(General.MyPackets.NPCLink("No I dont wanna get pwned!", 2));
SendPacket(General.MyPackets.NPCSetFace(30));
SendPacket(General.MyPackets.NPCFinish());
}