Mini-Scripts: set-for-sale

Set an object for sale for L$0

set-for-sale.lua
-- set-for-sale - Set for sale for L$0
-- self-deleting
 
local function main()
    ll.SetClickAction(CLICK_ACTION_BUY)
 
    -- and delete it
    ll.RemoveInventory(ll.GetScriptName())
end
 
main()

LSL