18 lines
356 B
Lua
18 lines
356 B
Lua
-----------------------------------
|
|
-- func: ah
|
|
-- desc: opens the Auction House menu anywhere in the world
|
|
-----------------------------------
|
|
---@type TCommand
|
|
local commandObj = {}
|
|
|
|
commandObj.cmdprops =
|
|
{
|
|
permission = 1,
|
|
parameters = ''
|
|
}
|
|
|
|
commandObj.onTrigger = function(player)
|
|
player:sendMenu(xi.menuType.AUCTION)
|
|
end
|
|
|
|
return commandObj
|