Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Anti-Hard Scope
#1
We need an anti-hardscope mod for bolt action servers that want a true isnipe. However, I can't seem to figure out the function for aim down sight. Well I will try out what I can find, and hopefully I'll be able to release one later for the quickscope servers out there.

Notice: Please let me know if anyone of you has attempted this and proven it does not work, or is not possible. Thanks.
Reply

#2
This should be in plugin requests :/
Do not take life too seriously. You will never get out of it alive.
[Image: UGPjFJa.jpg]
Reply

#3
This is somewhat off topic but what do you mean by "True Snipe"

It doesn't make sense that hardscoping would be wrong or bad.
Reply

#4
lol I guess this is sorta a request, even though I am currently working on it. And sniper lobby is from hardscoping, but there are a lot of quickscope lobbies out there. Plus this mod I would combine with the anticamp and antiknife.

Essentially this mod would be anticamp, antiknife, only bolt action, and no hardscope. However you could use commands to toggle plugin off. XD

This is mainly for the sniper lobbies where noobs camp and hardscope.

What i meant by "true isnipe" is from iNuke's Isnipe for MW2 (AIW). That was an extremely popular plugin on AIW
Reply

#5
Hmmm...yeah it would be sweet if theres a plugin that counts how long people are zoomed in for and automatically zooms you back out when you scope in like after a second or so..I get what hes saying

So people can't sit there and stay zoomed in for like 5 seconds...aka hard scope..
Reply

#6
(05-22-2012, 00:32)pollarpart Wrote: Hmmm...yeah it would be sweet if theres a plugin that counts how long people are zoomed in for and automatically zooms you back out when you scope in like after a second or so..I get what hes saying

So people can't sit there and stay zoomed in for like 5 seconds...aka hard scope..

Well @pollarpart, I do have the mw2 gsc mod for antihard scope. Its just a matter of converting it to C# and making it mw3 compatible now. I'll release it here for anyone else who wants to talk a look at it.

Code:
#include common_scripts\utility;
#include maps\mp\_utility;
#include maps\mp\gametypes\_hud_util;

EnableAntiHardScope(time)
{
    self endon( "disconnect" );
    self endon( "death" );

    if( !isDefined( time ) || time < 0.05 )
        time = 3;

    adsTime = 0;

    for( ;; )
    {
        if( self playerAds() == 1 )
            adsTime ++;
        else
            adsTime = 0;

        if( adsTime >= int( time / 0.05 ) )
        {
            adsTime = 0;
            self allowAds( false );

            while( self playerAds() > 0 )
                wait( 0.05 );

            self allowAds( true );
        }

        wait( 0.05 );
    
}
}
Reply

#7
laazyboy13 Wrote:'converting it to c#'

I truly wish it was that easy lol.
We can't do anything with scopes/ads yet, You need to message @Nukem to ask him to add such features.
Reply

#8
i didnt meant to say it was as easy as "converting". I really meant writing a similar mod for C#, but at least there is a base gsc to glance off of. And I just realized that there is no ads features yet. Imma message nukem see if thats possible
Reply



Possibly Related Threads…
Thread Author Replies Views Last Post
  [Release] iSnipe anti hardscope mutant 0 3,271 11-06-2013, 11:27
Last Post: mutant
  Need An Anti Hack Manuadminmod worldclass 2 3,512 10-14-2013, 09:57
Last Post: d0h!
  Searching for Anti HS ExoGamer* 10 6,165 08-08-2013, 12:39
Last Post: aceed
  [Release] Anti-Invisible Name master131 24 20,099 05-02-2013, 14:15
Last Post: .sepultura.
Music unlimited breath scope+sound when walking aim LE3* 0 1,995 04-21-2013, 08:42
Last Post: LE3*
Wink Preview ANTI ZOOMBYE! [HARD] Tony. 9 5,700 03-02-2013, 17:35
Last Post: Nukem
  [Release] Auto Quick-Scope V1 for Black Ops d0h! 25 39,522 01-02-2013, 11:55
Last Post: joey
  [Request] MW3 anti TI smasher MADD_DOGG 3 3,006 12-17-2012, 13:52
Last Post: MADD_DOGG
  Mw3 anti-cheat estebespt 18 14,982 12-04-2012, 22:50
Last Post: claudiocorona
Question Help hard question comes from me legolas 1 2,102 11-26-2012, 00:49
Last Post: legolas

Forum Jump:


Users browsing this thread:
1 Guest(s)

Forum Powered By MyBB, Theme by © 2002-2024 Melroy van den Berg.