I am in the process of updating my quest log script, and am posting some pictures. The finalized version should be up within the next few days.
I'm having trouble posting images, but they can be found at the link below
---------------------------------------------------------------------------
http://drs-scripts-resources.webs.com/apps/photos/album?albumid=15701685
---------------------------------------------------------------------------
I will edit the original post when it is complete with a new link.
Notes:
While a few things have changed the functionality is almost identical as before (OP) only there are four methods now.
$game_system::add_active_quest("Objective", "Description", experience, currency)
- This will add a new quest to the active quests list
$game_system::add_inactive_quest("Objective", "Description", experience, currency)
- This will add a new quest to the inactive quests list
$game_system::edit_quest("Objective", "New Objective." "New Description", new_experience, new_currency)
- This will search both the active and inactive quests to make the appropriate change
$game_system::remove_quest("Objective", faiure=false)
- This feature allows you to remove a quest from either list, and set it with a pass or fail.
If you fail the in menu description will read "FAILURE: Quest Description" otherwise it
will read "SUCCESS: Quest Description."
You will also be able to move quests between the active and inactive lists inside of the quest log.
Hope this clear,
Ask if you have any questions.