-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathclient.lua
More file actions
67 lines (55 loc) · 2.19 KB
/
client.lua
File metadata and controls
67 lines (55 loc) · 2.19 KB
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
RegisterCommand('setmask', function(source, args)
drawable = tonumber(args[1])
texture = tonumber(args[2])
SetPedComponentVariation(PlayerPedId(), 1, drawable, texture, 0)
end, false)
RegisterCommand('sethair', function(source, args)
drawable = tonumber(args[1])
texture = tonumber(args[2])
SetPedComponentVariation(PlayerPedId(), 121, drawable, texture, 0)
end, false)
RegisterCommand('settorso', function(source, args)
drawable = tonumber(args[1])
texture = tonumber(args[2])
SetPedComponentVariation(PlayerPedId(), 3, drawable, texture, 0)
end, false)
RegisterCommand('setleg', function(source, args)
drawable = tonumber(args[1])
texture = tonumber(args[2])
SetPedComponentVariation(PlayerPedId(), 4, drawable, texture, 0)
end, false)
RegisterCommand('setbag', function(source, args)
drawable = tonumber(args[1])
texture = tonumber(args[2])
SetPedComponentVariation(PlayerPedId(), 5, drawable, texture, 0)
end, false)
RegisterCommand('setshoes', function(source, args)
drawable = tonumber(args[1])
texture = tonumber(args[2])
SetPedComponentVariation(PlayerPedId(), 6, drawable, texture, 0)
end, false)
RegisterCommand('setacc', function(source, args)
drawable = tonumber(args[1])
texture = tonumber(args[2])
SetPedComponentVariation(PlayerPedId(), 7, drawable, texture, 0)
end, false)
RegisterCommand('setunder', function(source, args)
drawable = tonumber(args[1])
texture = tonumber(args[2])
SetPedComponentVariation(PlayerPedId(), 8, drawable, texture, 0)
end, false)
RegisterCommand('setarmor', function(source, args)
drawable = tonumber(args[1])
texture = tonumber(args[2])
SetPedComponentVariation(PlayerPedId(), 9, drawable, texture, 0)
end, false)
RegisterCommand('setlogos', function(source, args)
drawable = tonumber(args[1])
texture = tonumber(args[2])
SetPedComponentVariation(PlayerPedId(), 10, drawable, texture, 0)
end, false)
RegisterCommand('settorso', function(source, args)
drawable = tonumber(args[1])
texture = tonumber(args[2])
SetPedComponentVariation(PlayerPedId(), 11, drawable, texture, 0)
end, false)