Hi,
I want to hide the players targetid when you look at them, I have looked online and found a console command but it does not work, and I would like it coded in lua not a command. Command was hud_showtargetid 0
This is what i want to remove:
puush link
If anyone can help that would be great.
Hey, is it possibile that you're using an deprecated Version of DarkRP?
In my Case and with the newest there isn't any TargetID showing.
https://files.facepunch.com/forum/upload/301280/481e5c22-689c-40dd-b18d-94f796ef7ce4/Screenshot_15.png
function GM:HUDDrawTargetID()
return false
end
or
function GM:HUDDrawTargetID()
end
Try type it in cl_init.lua, should help.
Got from here.
Thank you for the event name,
this worked for me:
hook.Add("HUDDrawTargetID", "removetargetid", function()
return false
end)
I was making custom names above player heads and wanted to remove that.
Thanks
Sorry, you need to Log In to post a reply to this thread.