-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathha1.lua
More file actions
53 lines (50 loc) · 2.13 KB
/
Copy pathha1.lua
File metadata and controls
53 lines (50 loc) · 2.13 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
local chars = {"#","$","£","§"}
surface.CreateFont("DOSFont",{
font = "System",
size = 32,
})
local font = "DOSFont"
local color = Color(200,255,200)
local function ondraw()
local centerx,centery = ScrH()/2,ScrW()/2
--draw.RoundedBox(0,0,0,ScrW(),ScrH(),Color(0,0,0))
local c = table.Random(chars)
--h
draw.DrawText(string.rep(c,4),font,0,0,color)
draw.DrawText(string.rep(c,3),font,16,24,color)
draw.DrawText(string.rep(c,3),font,16,24*2,color)
draw.DrawText(string.rep(c,3),font,16,24*3,color)
draw.DrawText(string.rep(c,3),font,16*6,24*3,color)
draw.DrawText(string.rep(c,5),font,16,24*4,color)
draw.DrawText(string.rep(c,3),font,16,24*5,color)
draw.DrawText(string.rep(c,3),font,16,24*6,color)
draw.DrawText(string.rep(c,3),font,16,24*7,color)
draw.DrawText(string.rep(c,4),font,0,24*8,color)
draw.DrawText(string.rep(c,3),font,16*7,24*4,color)
draw.DrawText(string.rep(c,3),font,16*7,24*5,color)
draw.DrawText(string.rep(c,3),font,16*7,24*6,color)
draw.DrawText(string.rep(c,3),font,16*7,24*7,color)
draw.DrawText(string.rep(c,3),font,16*7,24*8,color)
--a
draw.DrawText(string.rep(c,5),font,16*12,24*3,color)
draw.DrawText(string.rep(c,3),font,16*16,24*4,color)
draw.DrawText(string.rep(c,7),font,16*12,24*5,color)
draw.DrawText(string.rep(c,3),font,16*11,24*6,color)
draw.DrawText(string.rep(c,3),font,16*11,24*7,color)
draw.DrawText(string.rep(c,4),font,16*12,24*8,color)
draw.DrawText(string.rep(c,3),font,16*16,24*6,color)
draw.DrawText(string.rep(c,3),font,16*16,24*7,color)
draw.DrawText(string.rep(c,3),font,16*17,24*8,color)
--!
draw.DrawText(string.rep(c,3),font,16*23,0,color)
draw.DrawText(string.rep(c,5),font,16*22,24*1,color)
draw.DrawText(string.rep(c,5),font,16*22,24*2,color)
draw.DrawText(string.rep(c,5),font,16*22,24*3,color)
draw.DrawText(string.rep(c,3),font,16*23,24*4,color)
draw.DrawText(string.rep(c,1),font,16*24,24*5,color)
draw.DrawText(string.rep(c,3),font,16*23,24*7,color)
draw.DrawText(string.rep(c,3),font,16*23,24*8,color)
--version A
draw.DrawText("version A",font,16*26/2,24*10,color,TEXT_ALIGN_CENTER)
end
hook.Add("HUDPaint","ha1",ondraw)