Thread: Quest events
View Single Post
06-30-05, 02:42 AM   #1
Hans Kamp
A Kobold Labourer
Join Date: Jun 2005
Posts: 1
Quest events

I am programming a macro that must send text to the party chat when:
- I accept a quest;
- I kill a quest mob;
- I collect an item;
- I abandon a quest;
- I complete a quest;
- I log in and I was in a party before I logged out.

There are several quest events that are fired, but some events have no arguments, and it is hard to see what quests are affected in one of the 6 situations above:

- After loading a character: QUEST_LOG_UPDATE;
- After abandoning a quest: QUEST_LOG_UPDATE;
- When talking with a questgiver: QUEST_DETAIL;
- When accepting a quest: QUEST_FINISHED;
- When declining a quest: QUEST_FINISHED;
- When picking up a quest item: QUEST_LOG_UPDATE;
- When killing a quest mob: QUEST_LOG_UPDATE;
- When going back to the questgiver: QUEST_COMPLETE;
- When clicking on the Complete-button: QUEST_FINISED.

There are too many same events in different occasions. So there must be some functions that I can use, to see what quests are affected, and what kind of situation exactly occurred.

Somebody can give me a clue?
  Reply With Quote