(03-14-2011, 07:17 AM)Raymond Wrote: I need to know what to put for the quest script.
AddQuest(string& asName, string& asNameAndTextEntry);
I did found the script but i don't know what to put, please help .
In the Journal category in you .lang file, add the following.
<Entry Name="Quest_"QUEST NAME HERE"_Text"> "QUEST TEXT HERE" </Entry>
//Remove the quotes and spaces
Then use the func as
AddQuest("STRING NAME", "QUEST NAME HERE");
Later, once the quest is complete
CompleteQuest("STRING NAME", "QUEST NAME HERE");
Just change the names in the script, leave the quotes.