banner



how to get rid of dirt

We strive to provide all our services for free and not interrupt your visit with intrusive advertisements or restrictions - support us by disabling your ad blocker or whitelisting our site.


Go Back UnKnoWnCheaTs - Multiplayer Game Hacking and Cheats
  • First-Person Shooters
  • Counter Strike
  • Counterstrike Global Offensive
  • Reload this Page [Help] trying to get rid of dirt material i can see when scoped in a dark place

    trying to get rid of dirt material i can see when scoped in a dark place trying to get rid of dirt material i can see when scoped in a dark place
    Authenticator Code

    Reply

    Thread Tools

    trying to get rid of dirt material i can see when scoped in a dark place
    Old 30th October 2019, 01:12 AM #1

    novalaki

    Member


    novalaki's Avatar

    Join Date: Dec 2017

    Location: house

    Posts: 70

    Reputation: 138
    Rep Power: 95
    novalaki is in the shadow of all hacking legends novalaki is in the shadow of all hacking legends

    Points: 2,205, Level: 4

    Points: 2,205, Level: 4 Points: 2,205, Level: 4 Points: 2,205, Level: 4

    Level up: 15%, 595 Points needed

    Level up: 15% Level up: 15% Level up: 15%

    Activity: 14.9%

    Activity: 14.9% Activity: 14.9% Activity: 14.9%
    Last Achievements trying to get rid of dirt material i can see when scoped in a dark place

    trying to get rid of dirt material i can see when scoped in a dark place


    Im trying to get rid of this dirt on the scope that i can see when scoped in a dark place. its super annoying because i lower the value of mat_force_tonemap_scale for "nightmode" and the dirt is super visible.

    example of what im talking about: https://imgur.com/a/FgWoMko

    this is how im doing it.

    Code:

                                static auto dirt = interfaces.materialSystem->findMaterial("materials/models/weapons/shared/scope/scope_lens_dirt.vtf"); 	dirt->setMaterialVarFlag(MaterialVarFlag::NO_DRAW, config.visuals.removeScopeDirt);

    and its hooked in Postscreeneffects

    Code:

                                interfaces.engine->isInGame

    Code:

                                Visuals::removeScopeDirt();

    idk if this is the right way to do this but if somebody has an idea any help is appreciated. (it obviously isnt because its now working lol)

    and yes i know i made a thread about this before but i cant reply to it because of how old it is.


    Last edited by novalaki; 30th October 2019 at 01:16 AM.

    novalaki is offline
    Reply With Quote


    Old 30th October 2019, 01:36 AM #2

    JamesLP

    lol


    JamesLP's Avatar

    Join Date: Jul 2017

    Location: yea

    Posts: 598

    Reputation: 5154
    Rep Power: 116
    JamesLP DEFINES UNKNOWNCHEATS JamesLP DEFINES UNKNOWNCHEATS JamesLP DEFINES UNKNOWNCHEATS JamesLP DEFINES UNKNOWNCHEATS JamesLP DEFINES UNKNOWNCHEATS JamesLP DEFINES UNKNOWNCHEATS JamesLP DEFINES UNKNOWNCHEATS JamesLP DEFINES UNKNOWNCHEATS JamesLP DEFINES UNKNOWNCHEATS JamesLP DEFINES UNKNOWNCHEATS JamesLP DEFINES UNKNOWNCHEATS

    Points: 13,029, Level: 14

    Points: 13,029, Level: 14 Points: 13,029, Level: 14 Points: 13,029, Level: 14

    Level up: 57%, 571 Points needed

    Level up: 57% Level up: 57% Level up: 57%

    Activity: 6.7%

    Activity: 6.7% Activity: 6.7% Activity: 6.7%
    Last Achievements trying to get rid of dirt material i can see when scoped in a dark place trying to get rid of dirt material i can see when scoped in a dark place

    Code:

                              static auto blur_overlay = interfaces::mat_system->FindMaterial("dev/scope_bluroverlay", TEXTURE_GROUP_OTHER); 		static auto lens_dirt = interfaces::mat_system->FindMaterial("models/weapons/shared/scope/scope_lens_dirt", TEXTURE_GROUP_OTHER); 		blur_overlay->SetMaterialVarFlag(MATERIAL_VAR_NO_DRAW, true); 		lens_dirt->SetMaterialVarFlag(MATERIAL_VAR_NO_DRAW, true);

    __________________

    JamesLP is offline
    Reply With Quote


    Old 30th October 2019, 01:56 AM #3

    novalaki

    Member


    novalaki's Avatar

    Threadstarter

    Join Date: Dec 2017

    Location: house

    Posts: 70

    Reputation: 138
    Rep Power: 95
    novalaki is in the shadow of all hacking legends novalaki is in the shadow of all hacking legends

    Points: 2,205, Level: 4

    Points: 2,205, Level: 4 Points: 2,205, Level: 4 Points: 2,205, Level: 4

    Level up: 15%, 595 Points needed

    Level up: 15% Level up: 15% Level up: 15%

    Activity: 14.9%

    Activity: 14.9% Activity: 14.9% Activity: 14.9%
    Last Achievements trying to get rid of dirt material i can see when scoped in a dark place

    Quote:

    Originally Posted by JamesLP View Post

    Code:

                                    static auto blur_overlay = interfaces::mat_system->FindMaterial("dev/scope_bluroverlay", TEXTURE_GROUP_OTHER); 		static auto lens_dirt = interfaces::mat_system->FindMaterial("models/weapons/shared/scope/scope_lens_dirt", TEXTURE_GROUP_OTHER); 		blur_overlay->SetMaterialVarFlag(MATERIAL_VAR_NO_DRAW, true); 		lens_dirt->SetMaterialVarFlag(MATERIAL_VAR_NO_DRAW, true);

    still not working. maybe its not the right texture im looking for?


    Last edited by novalaki; 30th October 2019 at 02:52 AM.

    novalaki is offline
    Reply With Quote


    Old 30th October 2019, 12:10 PM #4

    JamesLP

    lol


    JamesLP's Avatar

    Join Date: Jul 2017

    Location: yea

    Posts: 598

    Reputation: 5154
    Rep Power: 116
    JamesLP DEFINES UNKNOWNCHEATS JamesLP DEFINES UNKNOWNCHEATS JamesLP DEFINES UNKNOWNCHEATS JamesLP DEFINES UNKNOWNCHEATS JamesLP DEFINES UNKNOWNCHEATS JamesLP DEFINES UNKNOWNCHEATS JamesLP DEFINES UNKNOWNCHEATS JamesLP DEFINES UNKNOWNCHEATS JamesLP DEFINES UNKNOWNCHEATS JamesLP DEFINES UNKNOWNCHEATS JamesLP DEFINES UNKNOWNCHEATS

    Points: 13,029, Level: 14

    Points: 13,029, Level: 14 Points: 13,029, Level: 14 Points: 13,029, Level: 14

    Level up: 57%, 571 Points needed

    Level up: 57% Level up: 57% Level up: 57%

    Activity: 6.7%

    Activity: 6.7% Activity: 6.7% Activity: 6.7%
    Last Achievements trying to get rid of dirt material i can see when scoped in a dark place trying to get rid of dirt material i can see when scoped in a dark place

    Quote:

    Originally Posted by novalaki View Post

    still not working. maybe its not the right texture im looking for?

    call it in dme

    __________________

    JamesLP is offline
    Reply With Quote


    Old 30th October 2019, 05:00 PM #5

    novalaki

    Member


    novalaki's Avatar

    Threadstarter

    Join Date: Dec 2017

    Location: house

    Posts: 70

    Reputation: 138
    Rep Power: 95
    novalaki is in the shadow of all hacking legends novalaki is in the shadow of all hacking legends

    Points: 2,205, Level: 4

    Points: 2,205, Level: 4 Points: 2,205, Level: 4 Points: 2,205, Level: 4

    Level up: 15%, 595 Points needed

    Level up: 15% Level up: 15% Level up: 15%

    Activity: 14.9%

    Activity: 14.9% Activity: 14.9% Activity: 14.9%
    Last Achievements trying to get rid of dirt material i can see when scoped in a dark place

    Quote:

    Originally Posted by JamesLP View Post

    call it in dme

    Thank you man! I got it working finally +rep

    novalaki is offline
    Reply With Quote

    Reply


    We strive to provide all our services for free and not interrupt your visit with intrusive advertisements or restrictions - support us by disabling your ad blocker or whitelisting our site.


    Similar Threads
    Thread Thread Starter Forum Replies Last Post
    [Help] Can see arms through cham material eqkx Counterstrike Global Offensive 2 15th July 2019 12:24 AM
    [Help] trying to get rid of weird dirt looking texture when im scoped in a sniper novalaki Counterstrike Global Offensive 10 17th May 2019 09:18 AM
    [Question] I am trying to make my character transparent when scoped in SceneEnd hook GDPR_Anonymous Counterstrike Global Offensive 13 26th February 2018 05:59 PM
    [Help] Can you see any player in the Dark Zone with Extropy ESP? TacticalPotato Tom Clancy's The Division 6 10th May 2016 01:23 PM
    Dirt 3 Promo Hanoi Off Topic 25 9th September 2011 08:05 AM

    Tags
    dirt, scoped, rid, dark, super, idk, [help], idea, thread, reply

    « Previous Thread | Next Thread »


    Forum Jump


    All times are GMT. The time now is 07:31 PM.


    Contact Us - Toggle Dark Theme

    Terms of Use Information Privacy Policy Information
    Copyright ©2000-2021, Unknowncheats� UKCS #312436
    trying to get rid of dirt material i can see when scoped in a dark place trying to get rid of dirt material i can see when scoped in a dark place

    no new posts

    how to get rid of dirt

    Source: https://www.unknowncheats.me/forum/counterstrike-global-offensive/360748-trying-rid-dirt-material-scoped-dark.html

    Posted by: holmbergknome1944.blogspot.com

    0 Response to "how to get rid of dirt"

    Post a Comment

    Iklan Atas Artikel

    Iklan Tengah Artikel 1

    Iklan Tengah Artikel 2

    Iklan Bawah Artikel