All pastes #2096107 Raw Edit

Mine

public text v1 · immutable
#2096107 ·published 2011-12-24 02:09 UTC
rendered paste body
function rtmdisplayobjective(ply, command, args)
	
	Objective1=(tostring(table.GetFirstValue(args)))
	MsgAll("Objective is:" .. Objective1 .. "\n")
end
concommand.Add( "rtmdisplayobjective", rtmdisplayobjective )

function GM:HUDPaint()

	MsgAll("Objective is:" .. Objective1 .. "\n")
	draw.DrawText(Objective1,"HUDNumber",ScrW() * 0.5,ScrH() * 0.05,Color(255,255,0,255),TEXT_ALIGN_CENTER)
	draw.DrawText(Objective2,"HUDNumber",ScrW() * 0.5,ScrH() * 0.10,Color(255,255,0,255),TEXT_ALIGN_CENTER)
	draw.DrawText(Objective3,"HUDNumber",ScrW() * 0.5,ScrH() * 0.15,Color(255,255,0,255),TEXT_ALIGN_CENTER)
end