RedBeard submitted a new resource:

Spider that spins a web - Web Spinning Spider

Here is a cool script I made. According to Ultima lore Spiders Silk was generally difficult to find. One would have to search caves and catacombs in search of the reagent. Many mages took to raising spiders for their silk because of it being so hard to obtain.
This Giant Spider spins a web 1 hr. from birth and then every 2 hrs until death. The web self deletes after 2 hrs. so no worries. The web performs two functions. It is a source of spiders silk random 8-12 no skill check.
Also if you...

Read more about this resource...
 
Very rpg nice release.

Btw If you dont add in deserialization of the spider web the restart of timer it will never delete from world after server restart/crash.

also

need to correct
Code:
public override void OnDoubleClick(Mobile from)
        {
            if (from.InRange(this.GetWorldLocation(), 2)) 
                from.AddToBackpack(new SpidersSilk(Utility.RandomMinMax(8, 12)));
                from.SendMessage("You collect some spiders silk and place it in your backpack."); 
            this.Delete();
			
        }

should be

Code:
public override void OnDoubleClick(Mobile from)
        {
            if (from.InRange(this.GetWorldLocation(), 2)) 
			{
                from.AddToBackpack(new SpidersSilk(Utility.RandomMinMax(8, 12)));
                from.SendMessage("You collect some spiders silk and place it in your backpack."); 
            this.Delete();
			}
        }
 
Last edited:
Back