Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- function updateCharInfo()
- charInfoFrame:SetName("Char Info: "..selectedChar)
- charInfoFrame_List:Clear()
- for i,v in ipairs(priorityStrs) do
- local listText = loveframes.Create("text")
- listText:SetText("---------------")
- charInfoFrame_List:AddItem(listText)
- listText = loveframes.Create("text")
- listText:SetText(v)
- charInfoFrame_List:AddItem(listText)
- print(data.people[selectedChar].strings[i])
- listText = loveframes.Create("text")
- listText:SetText("\""..data.people[selectedChar].strings[i].."\"")
- giftInfoFrame_List:AddItem(listText)
- listText = loveframes.Create("text")
- listText:SetText(" ")
- charInfoFrame_List:AddItem(listText)
- for k,v in pairs(data.people[selectedChar].items) do
- if v == i then
- listText = loveframes.Create("text")
- listText:SetText("- "..k)
- charInfoFrame_List:AddItem(listText)
- end
- end
- end
- end
Advertisement
Add Comment
Please, Sign In to add comment