forked from Xinerki/kgv-phone
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontacts.lua
68 lines (63 loc) · 1.66 KB
/
contacts.lua
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
-- SetContactRaw(GlobalScaleform, 0, "Xin Voliteer", "CHAR_DEFAULT")
-- local txd = CreateRuntimeTxd('CHAR_PNGTEST')
-- local duiObj = CreateDui('https://i.imgur.com/NZaICKc.png', 64, 64)
-- _G.duiObj = duiObj
-- local dui = GetDuiHandle(duiObj)
-- local tx = CreateRuntimeTextureFromDuiHandle(txd, 'CHAR_PNGTEST', dui)
-- local txd = CreateRuntimeTxd('CHAR_LINUS')
-- local duiObj = CreateDui('https://i.imgur.com/mt4F1FL.jpg', 64, 64)
-- _G.duiObj = duiObj
-- local dui = GetDuiHandle(duiObj)
-- local tx = CreateRuntimeTextureFromDuiHandle(txd, 'CHAR_LINUS', dui)
local txd = CreateRuntimeTxd('CHAR_DOMKA')
local tx = CreateRuntimeTextureFromImage(txd, 'CHAR_DOMKA', "domka.png")
contacts = {
-- result from calling linus:
-- he hangs up and sends a text message with a randomize "tech tip"
-- use inspiration from:
-- https://twitter.com/LinusTechTip_
-- Linus = {
-- name = "LinusTechTip",
-- icon = "CHAR_LINUS",
-- },
Domka = {
name = "Domka",
icon = "CHAR_DOMKA",
},
-- Cole = {
-- name = "Cole",
-- icon = "CHAR_FILMNOIR",
-- },
-- XinVoliteer = {
-- name = "Xin Voliteer",
-- icon = "CHAR_XIN",
-- },
-- MattLaurence = {
-- name = "Matthew Laurence",
-- icon = "CHAR_DEFAULT",
-- },
-- FarbodSerran = {
-- name = "Farbod Serran",
-- icon = "CHAR_DEFAULT",
-- },
-- NotAvailable = {
-- name = "Not_Available",
-- icon = "CHAR_DEFAULT",
-- },
-- LifeInvader = {
-- name = "LifeInvader",
-- icon = "CHAR_LIFEINVADER",
-- },
Lester = {
name = "Lester",
icon = "CHAR_LESTER",
},
NikoBellic = {
name = "Niko Bellic",
icon = "CHAR_NIKO",
},
-- PNG_TEST = {
-- name = "PNG_TEST",
-- icon = "CHAR_PNGTEST",
-- },
}