Hi all, how do i remove the ability to players to add vendors in their houses? I want to allow them to place barkeep but not player vendors. I have an area where everyone can place public vendors but i want it to be only there.

Thanks for any help !
 
There are a few vendors who sell this- you could try going into each one
SBInnKeeper.cs--SBBarkeeper--SBTavernKeeper
and remove each line as shown below - or maybe some one will have another idea :)
//if (Multis.BaseHouse.NewVendorSystem)
this.Add(new GenericBuyInfo("1062332", typeof(VendorRentalContract), 1252, 20, 0x14F0, 0x672));r
 
There are a few vendors who sell this- you could try going into each one
SBInnKeeper.cs--SBBarkeeper--SBTavernKeeper
and remove each line as shown below - or maybe some one will have another idea :)
//if (Multis.BaseHouse.NewVendorSystem)
this.Add(new GenericBuyInfo("1062332", typeof(VendorRentalContract), 1252, 20, 0x14F0, 0x672));r
Meh... Yeah just forgot to go at the base and remove the deeds instead of looking in scripts lol

Thanks !
 
Back