• Stencil
    10 replies, posted
Anyone have a stencil Script? to outiline people?
[url]http://wiki.garrysmod.com/page/halo/Add[/url]
hook.Add( "PreDrawHalos", "AddHalos", function() halo.Add( ents.FindByClass( "prop_physics*" ), Color( 255, 0, 0 ), 5, 5, 2 ) end ) so how can i get that to go around the player?
Request code here: [url]http://facepunch.com/showthread.php?t=1257862[/url]
[QUOTE=Robotboy655;40370299]Request code here: [url]http://facepunch.com/showthread.php?t=1257862[/url][/QUOTE] I tried and someone said to come here for something simple
[lua] hook.Add( "PreDrawHalos", "AddHalos", function() halo.Add( player.GetAll() , Color( 255, 0, 0 ), 5, 5, 2 ) end ) [/lua] Blam people with red halos around them
[QUOTE=Pandaman09;40370595][lua] hook.Add( "PreDrawHalos", "AddHalos", function() halo.Add( player.GetAll() , Color( 255, 0, 0 ), 5, 5, 2 ) end ) [/lua] Blam people with red halos around them[/QUOTE] Thank you so much!!! How can i get it to go through walls and reduce the range like make it thinner it goes out pretty far
[QUOTE=Drewdinie;40371205]Thank you so much!!! How can i get it to go through walls and reduce the range like make it thinner it goes out pretty far[/QUOTE] No clue what so ever... you might need to research on the wiki. [url]http://wiki.garrysmod.com/page/Main_Page[/url] @below... well that was simple :P
Well it says to put in "boolean ignoreZ" But im not sure were to put it halo.Add( table entities, number color, number blurX, number blurY, number passes, boolean additive, boolean ignoreZ ) boolean ignoreZ Renders the halo through anything when set to true.
[QUOTE=Drewdinie;40371729]Well it says to put in "boolean ignoreZ" But im not sure were to put it halo.Add( table entities, number color, number blurX, number blurY, number passes, boolean additive, boolean ignoreZ ) boolean ignoreZ Renders the halo through anything when set to true.[/QUOTE] Instead of [lua] halo.Add( player.GetAll() , Color( 255, 0, 0 ), 5, 5, 2 )[/lua] It will be [lua]halo.Add( player.GetAll(), Color( 255, 0, 0, 255 ), 5, 5, 2, false, true ) [/lua]
AHHH, ok i just didnt understand that part thank you so much!! Edit: This makes the whole body turn that color so now instead of an outline is just a giant blue blob of human that i can see through walls
Sorry, you need to Log In to post a reply to this thread.