stefan.kueneth 4 Report post Posted June 7 Hello people, how it is possible to have an item, which is only sellable but not buyble ? Where I hav to to it and how ? thanks for answer... Share this post Link to post Share on other sites
Beowulfv 305 Report post Posted June 8 class Exile_Uniform_BambiOverall { quality = 1; price = 1; sellPrice = 1; }; Share this post Link to post Share on other sites
CaptainChaos 18 Report post Posted June 8 inside the class CfgExileArsenal insert the line class MyItem { quality = 5; price = 35000; }; And Do NOT insert MyItem in the class CfgTraderCategories Share this post Link to post Share on other sites
kuplion 1785 Report post Posted June 8 1 hour ago, CaptainChaos said: inside the class CfgExileArsenal insert the line class MyItem { quality = 5; price = 35000; }; And Do NOT insert MyItem in the class CfgTraderCategories This is the correct way to do it. You can also assign a sellPrice like the example above to save you from having to double the price (because all buy prices are halved when selling back unless you have a sellPrice set). Share this post Link to post Share on other sites
stefan.kueneth 4 Report post Posted June 8 ok thanks, I try it out later Share this post Link to post Share on other sites