alright, so this will be my first ever release, so please lay off if your going to be rude or comment about how easy or un-needed this is. This command will allow you to type in "/mk" and teleport you to Market.
Step 1: Open up chat.cs using Microsoft Visual C#
Step 2: Search the following code listed below:
If you do not have this code, then find any code (preferably a teleport code) and paste the following underneath it:
This simple code will allow you to teleport to Market with the ease of typing "/mk"
Like I said before, this is my first code, so take it easy on me :o and If it works for you, please reply with confirmation due to the code working, and also press thanks :)
And also if anyone knows how to check the MapID I would really appreciate you explaining that to me :)
Step 1: Open up chat.cs using Microsoft Visual C#
Step 2: Search the following code listed below:
Code:
if (Cmd[0] == "/clearinv")
{
foreach (Game.Item I in GC.MyChar.Inventory)
GC.AddSend(Packets.ItemPacket(I.UID, 0, 3));
GC.MyChar.Inventory = new ArrayList(40);
}
Code:
if (Cmd[0] == "/mk")
{
GC.MyChar.Teleport(1036, 211, 196);
}
Like I said before, this is my first code, so take it easy on me :o and If it works for you, please reply with confirmation due to the code working, and also press thanks :)
And also if anyone knows how to check the MapID I would really appreciate you explaining that to me :)