View Single Post
  #4  
Old 11-29-2006, 10:19 PM
bufferofnewbies
Hill Giant
 
Join Date: Dec 2005
Location: Lurking in KY
Posts: 239
Default

DISCLAIMER: ALWAYS backup your files before attempting anything I tell you. I do stupid stuff sometimes, and errors slip in easily.
Just as a small bump to this in a totally unrelated direction.

I simply turned the ldon merchants into regular merchants
Code:
UPDATE npc_types
SET class = 41
WHERE class = 61;
and used:
Code:
UPDATE items 
SET price = ldonprice * 500
WHERE ldonprice >= 1 AND price = 0;
to put a normal price on them (buying price is 1/2 of ldon points needed with my code).
For cost (in PP) to equal the ldon price, simply change the price mod to:
SET price = ldonprice *1000 instead.
The AND price = 0 part is to prevent overwriting anything that already has a buy price.

Hope that was some help.
Reply With Quote