It would be great if the vending text was added as lang options.
Adding all of these little things into the lang makes life just seamless
private void VendingUpdate(BasePlayer player)
{
if (vending && isEventActive)
{
vending.markerShopName = Configuration.markerName;
if (Configuration.markerTime)
if (duration > 0)
vending.markerShopName += "(" + (int)duration / 60 + "m" + duration % 60 + "s)";
else
vending.markerShopName += "(the event has ended)";
if (player != null && Configuration.markerOwnerName)
vending.markerShopName += "(" + eventOwner.displayName + ")";
vending.SendNetworkUpdate();
}
}