LightbulbDarkRP Printer esp?

Posts 15 of 5 · Page 1 of 1
DarkRP Printer esp?
I have no Idea how to code so I don't know if it's possible but if someone could make a release with a DARKRP Printer "Finder/esp" I would absolutely love it! the idea sounds good in my head and yea so thanks and bye!
You know what sounds good in my head.
If you clicked the search button up top there, and you'd found what you've been looking for already.

This has been asked several times, and it's also been posted several times.
Go download falco's small scripts from Steam Workshop. run it (autorun/client/falcosutilities.lua) go falco_ESPconfig >> Add printer to the entities. This should work. You can add any entity you want so it will be even more usefull than what you'd want.
Hey, I know for sure that you can find this with the search function, but here's this since you when through the trouble of posting:
Code:
local State = -1
chat.AddText(Color(255,0,0),"Printer finder loaded.")
LocalPlayer():EmitSound("buttons/combine_button7.wav",500,100)
concommand.Add("toggle_finder", function()
	State = State * -1
	if State == 1 then
		hook.Add("HUDPaint","printerfinder", function()
			for k,Ent in pairs(ents.GetAll()) do 
				if string.find(Ent:GetClass(),"printer") then
					local PrinterPos = (Ent:GetPos()+Vector(0,0,20)):ToScreen()
					draw.SimpleTextOutlined("Printer","Trebuchet18",PrinterPos.x,PrinterPos.y,Color(255,0,0),0,0,1,Color(255,255,255))
				end
			end
		end)
		chat.AddText(Color(255,0,0),"Printer finder turned on.")
		LocalPlayer():EmitSound("UI/buttonclickrelease.wav",500,100)
	else
		hook.Remove("HUDPaint","printerfinder")
		chat.AddText(Color(255,0,0),"Printer finder turned off.")
		LocalPlayer():EmitSound("UI/buttonclickrelease.wav",500,100)
	end
end)
Type toggle_finder to start searching for printers.
Posts 15 of 5 · Page 1 of 1
This thread is closed for replies.

Similar Threads

Tags for this Thread

Need help?