Jump to content

Disable hud/radar, and start after login


Kors

Recommended Posts

There may be several approaches to solve the issue. But the main idea is prevent invoking draw functions. As @koragg said you should unbind the drawing event in the HUD script. You also may wrap some dxDraw functions in the next manner:

local dxDrawRectangle_ = dxDrawRectangle
function dxDrawRectangle (...) 
  if drawingEnabled then
    dxDrawRectangle_(...) 
  end
end

But all approaches are require to modify the source code of the your HUD resource. 

  • Like 1
Link to comment

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...