ShowBarterMenu - Actor
Revision as of 12:00, 10 December 2012 by imported>JustinOther (Formatting/Grammar/Standardized capitalization/Removed native function declaration from example/Objective page is objective (no need to ...sign the page))
Member of: Actor Script
Shows the barter menu for this actor.
Syntax
Function ShowBarterMenu() native
Parameters
None.
Return Value
None.
Examples
- Standard use.
BobREF.ShowBarterMenu() ; Shows BobREF's barter menu
- Prompt a barter menu via an activator.
ScriptName YourActivatorScript Extends ObjectReference
Actor Property kSomeActor Auto ; Filled with desired merchant Actor
Event OnActivate(ObjectReference akActionRef)
If akActionRef == Game.GetPlayer() ; Only if activated by the player
kSomeActor.ShowBarterMenu() ; Show this actor's barter menu
EndIf
EndEvent