sldabbs
Member
sldabbs submitted a new resource:
Shards of Minax trash for tokens fix to backpack - trash for tokens fix
Read more about this resource...
Shards of Minax trash for tokens fix to backpack - trash for tokens fix
using System;
using Server;
using Server.Items;
using Server.Mobiles;
namespace Server.Items
{
public class Trash4TokensBackpack : Backpack
{
[Constructable]
public Trash4TokensBackpack() : base()
{
Name = "Safe Trash 4 Tokens Backpack 2";
Movable = true; // Prevents easy movement or pickup
Hue = 1173;
}
public override bool OnDragDrop(Mobile from, Item dropped)
{
if (from == null ||...
Read more about this resource...