View Single Post
  #32  
Old 04-01-2018, 03:08 AM
GRUMPY
Discordant
 
Join Date: Oct 2016
Posts: 445
Default

I use this editor myself, I like it a lot.
In the items table there is two columns to control the pricing of any items on merchants.
One is price and the other is sellrate. The sellrate value can, (and does) increase the base price you set
on an item. If the sellrate is set to 1, then it won't mod the base price. If you want a query to practice
with, it would be like this:

Code:
UPDATE items SET price = 100000 WHERE name LIKE '%crude defiant';
UPDATE items SET sellrate = 1 WHERE name LIKE '%crude defiant';
Of course you would need to add lines for the other named defiant gear.
Reply With Quote