ShowGiftMenu - Actor

Member of: Actor Script

Shows the gift menu for this actor.


SyntaxEdit

int Function ShowGiftMenu(bool abGiving, FormList apFilterList = None, bool abShowStolenItems = false, bool abUseFavorPoints = true) native

ParametersEdit

  • abGiving: True if we're giving items; false if we're taking items
  • apFilterList: Filter list. If present, only items that match keywords and objects in the list will be shown
    • Default: None
  • abShowStolenItems: If true, stolen items are shown in the menu.
    • Default: False
  • abUseFavorPoints : If true, favor points are added / subtracted with each transaction. False, favor points aren't used at all.
    • Default: True

Return ValueEdit

Total favor points spent / gained while in the menu. If no points were spent / gained, return value is 0. Return value is always non-negative.

ExamplesEdit

; Shows the give gift menu for Bob, filtering for food
Bob.ShowGiftMenu(true, OnlyFoodList)


; Shows the give gift menu for Bob with no filtering
Bob.ShowGiftMenu(true)

NotesEdit

This is a latent function and will not exit until the menu is closed.

See AlsoEdit