View Single Post
04/08/17, 06:33 PM   #10
Sacralletius
Join Date: Apr 2017
Posts: 10
GetUnitBuffInfo -> This one is interesting. Could we use it to return whether the targeted player has the "Blade of Woe" (http://esoitem.uesp.net/viewlog.php?...kills&id=76325) and/or "Padomaic Sprint" ( http://esoitem.uesp.net/viewlog.php?...kills&id=76325) buffs?

Also, are there any events we could use for the player himself, to track whether he has done a particular quest?

Something like this:

Code:
Event OnQuestCompleted(QuestID)
     If QuestID == xxxxxx Then
         FamePoints = FamePoints + 5
     ElseIf QuestID == yyyyyy Then
         FamePoints = FamePoints + 10
     EndIf
End Event
Or when the player himself pickpockets something:

Code:
Event OnPickPocket(NPC)
     InfamyPoints = InfamyPoints + 5
End Event
  Reply With Quote