Hi I am looking for a program that will allow me to make a quest that the player has to turn in more than one quest item to a single NPC. Ilutzio's Questmaker 1.1 I have this quest maker but it only takes a single item.
 
There are a ton of these "quest makers" and xmlSpawner but most of them are broken, outdated or unfinished. I'd recommend updating the quest yourself via the script file. Adding an objective is one line of code.

C#:
AddObjective(new ObtainObjective(typeof(Board), "Boards", 50));

or you can do another one right under it

C#:
AddObjective(new ObtainObjective(typeof(Board), "Boards", 50));
AddObjective(new ObtainObjective(typeof(IronIngot), "Iron Ingots", 50));
 
Back