Hello,

I am learning about ServUO, and so far it is a lot easier then some of the others that I tried years ago.

Sunny
 
Welcome Sunny! Let us know if you have questions along the way, there are plenty of folks here who can help.
 
Not sure if this is the right place or not.
NPC Vendors, I know I am just overlooking it but where is the script that stocks the npc vendors and what they carry?
 
That would be in the SB[vendor type here].cs files. They should be in the Mobiles folder somewhere (I forget the folder/file locations on a default server package).
 
Thank you very much, found it and it all looks good now I just have to figure out why the NPC's are not stocking/restocking every hour like they are supposed to
 
Strange they are not restocking, found this in basevendor has restock of 1 hour- maybe some one can help out :)

public BaseVendor(Serial serial)
: base(serial)
{ }
public DateTime LastRestock { get { return m_LastRestock; } set { m_LastRestock = value; } }
public virtual TimeSpan RestockDelay { get { return TimeSpan.FromHours(1); } }
 
Back