[Help] How can i sell everything for free?(even rep items) Mangos 

Newbie Spellweaver
Joined
Feb 22, 2006
Messages
16
Reaction score
0
hi again :) my other need is to set everything for free.

i know when i use ".npc additem" and if i dont give any other information but item id vendor sells it for free.

but even if i give recipe or item for free, i cant use it unless i get reputation with that faction.

so is there a way to sell and use everything for free?

if its not possible is there a way to make an npc who teaches every possible crafts (e.g. all alchemy recipes) with 1 click ?
 
Everything in game? Simple..
Code:
UPDATE `item_template` SET `SellPrice` = "0";
UPDATE `item_template` SET `BuyPrice` = "0";

Make sure server is offline when doing this o_O , unknown results if not.

Also, this is to be used on your mangos db.
 
thanks i will try it and reply here if it works


edit: it works about prices but i need this one;

i want to use all kind of rep items without rep.
 
Back