I would like to prevent players from farming gold by selling items obtained by using create food spell with 100% lrc. Any ideas, solutions?
 
Go to the vendors script example :
( SBProvisioner )

then check the next line

Code:
public class InternalSellInfo : GenericSellInfo
        {
            public InternalSellInfo()
            {
                Add( typeof( Arrow ), 2 );
                Add( typeof( Bolt ), 3 );
                Add( typeof( Backpack ), 7 );
                Add( typeof( Pouch ), 3 );
                Add( typeof( Bag ), 3 );

thats the list of things that the provisioner will buy

if your create food creates APPLES and u find the apple in that list, delete it and the provisioner wouldnt buy apples anymore

you can also modify createfood.cs and delete the food u dont want from there.

Sorry if i dont explain myself good, i slept 3hours yesterday :D
 
Back