1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
|
leap = require 'leap'
local LLAppearance = {}
function LLAppearance.addOutfit(folder)
leap.request('LLAppearance', {op='wearOutfit', append = true, folder_id=folder})
end
function LLAppearance.replaceOutfit(folder)
leap.request('LLAppearance', {op='wearOutfit', append = false, folder_id=folder})
end
function LLAppearance.addOutfitByName(folder)
leap.request('LLAppearance', {op='wearOutfitByName', append = true, folder_name=folder})
end
function LLAppearance.replaceOutfitByName(folder)
leap.request('LLAppearance', {op='wearOutfitByName', append = false, folder_name=folder})
end
function LLAppearance.wearItem(item_id, replace)
leap.send('LLAppearance', {op='wearItem', replace = replace, item_id=item_id})
end
function LLAppearance.detachItem(item_id)
leap.send('LLAppearance', {op='detachItem', item_id=item_id})
end
function LLAppearance.getOutfitsList()
return leap.request('LLAppearance', {op='getOutfitsList'})['outfits']
end
function LLAppearance.getOutfitItems(id)
return leap.request('LLAppearance', {op='getOutfitItems', outfit_id = id})['items']
end
return LLAppearance
|