If I understood you right , you are trying to make every NPC that have wear_type = 9 sells the same thing ?Quote:
is there a way to set up a sell all npc that will sell all items dura or non dura useing the wear_type from itemresource in the db?
like
if wear_type = 9 ?
If it's the case then this should do the job :
Code:
Update Arcadia.dbo.NpcResource set contact_script = 'your_npc_lua()' where wear_type = '9'