Lets start by going to Character.cs in Game/Character.cs
Search for
And youll find this code
Code:
#region Class1MoneyBag
case 723713:
{
RemoveItem(I);
Silvers += 300000;
break;
}
#endregion
Now this is where you would add this stuff like pk amulet and all that now to make your own item or something lets break it down
To make your own scroll it be like
Code:
case SCROLL CASE:
{
if (Loc.Map != 6000 && Loc.Map != 6001)
{
Teleport(MAP ID, MAP CORDS, MAP CORDS);
RemoveItem(I);
}
else
MyClient.LocalMessage(2005, "Cannot use teleport scrolls in jail.");
break;
}
Ill break it down some more later