I don't know how to code, but I have recently really enjoyed fiddling with the Ampris leak, adding on very very basic features, as well as just organizing the menu differently.
I want to add a feature I found in "Nano Hack"
here (MPGH Link)
The feature I wanted to add was the barrel laser it had, making a like from your barrel to where you're looking. Basically like a permanent Physgun beam...
The code for it is this
Code:
NH_REGISTERHOOK( 'PostDrawOpaqueRenderables', function()
if NH.LASER then
local tr = nh_self:GetEyeTrace()
local src = IsValid( nh_self:GetViewModel() ) and nh_self:GetViewModel():GetAttachment( 1 ) and nh_self:GetViewModel():GetAttachment( 1 ).Pos or nh_self:GetPos() + Vector( 0, 0, 10 )
SetMaterial( Material( 'trails/laser' ) )
DrawBeam( src, tr.HitPos, 8, 12, 12, NH.LASERCOLOR )
end
I can do the rest, as long as someone can help me get rid of the localizing >.<
The locals are what throw me off when it comes to understanding features in cheats I find.
Thanks in advance for any help everyone!