Heres my script that I tried to do:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
addhook("startround","_usgnprohud") function _usgnprohud() 	local id=image("gfx/GoPro/usgn.png",0,0,2) 	imagealpha(id,1.0) 	imagepos(id,334,374,0) end addhook("startround","_usgnhudtxt") function _usgnhudtxt() 	if (player(id,"usgn")>0) then 	parse('hudtxt2 '..id..' 26 "©255128000USGN: '..player(id,"usgn")..'" 292 363') 	msg2(id,"©000255000Logged in as "..player(id,"usgn").."!") else 	parse('hudtxt2 '..id..' 26 "©255000000Not Registered!" 292 363') 	msg2(id,"©255000000You don't have a USGN! Log-in or register!") end
The console just shows up a LUA ERROR: attempt to call a nil value. And it just spams up the whole console.