[FilterScript] Unsteady Sniper Aim (Realistic)
#1

Hi. I made this for share, in short;

Video:
[ame="http://www.youtube.com/watch?v=B1JaSb9SF8Q"]http://www.youtube.com/watch?v=B1JaSb9SF8Q[/ame]

Installation:

On top
pawn Код:
#define PRESSED(%0) \
    (((newkeys & (%0)) == (%0)) && ((oldkeys & (%0)) != (%0)))
   
#define KEY_AIM     (128)
This one for OnPlayerUpdate
pawn Код:
if(GetPlayerWeapon(playerid) != 34) return SetPlayerDrunkLevel(playerid,2000);
And this one for OnPlayerKeyStateChange
pawn Код:
if(PRESSED(KEY_AIM))
    {
        if(loggedin[playerid] == 1) //replace with what you're using
        {
            if(GetPlayerWeapon(playerid) == 34)
            {
                SendClientMessage(playerid,-1,"aiming"); //
                SetPlayerDrunkLevel(playerid,4999);
                return 1;
            }
            return 1;
        }
        return 1;
    }
* Enjoy
Reply
#2

Good Job man
Reply
#3

why not just check if the player released KEY_AIM and reset the drunk level instead of onplayerupdate?

Nice job, cod servers would love this :P
Reply
#4

well i can tell you play call of duty. (sadly) but you should also make it go up and down. that way its a little more realistic. :P
Reply
#5

Not realistic at all. moving too fast. There are different ways to hold a gun to have less recoil. meh over all its okay since in samp
Reply
#6

very nice idea, makes me jealous that I didn't think of it first
Reply
#7

Quote:
Originally Posted by xXitsgodzillaXx
Посмотреть сообщение
well i can tell you play call of duty. (sadly) but you should also make it go up and down. that way its a little more realistic. :P
Up/Down impossible :P

Quote:
Originally Posted by Mark_Weston
Посмотреть сообщение
Not realistic at all. moving too fast. There are different ways to hold a gun to have less recoil. meh over all its okay since in samp
Too fast but you can reduce it with changing SetPlayerDrunkLevel(playerid,4999);
Reply
#8

This is not realistic, the drunk level is the worst way to use but only way possible sadly.
If you shoot in a certain direction, you will hit a certain point instead of a random one.
It does not work, try aiming at a wall, and shooting while holding the scope in the same position.
Reply
#9

Nice job and simple! recommended for deathmatch servers
Reply
#10

Quote:
Originally Posted by Jack_Wilson
Посмотреть сообщение
This is not realistic, the drunk level is the worst way to use but only way possible sadly.
If you shoot in a certain direction, you will hit a certain point instead of a random one.
It does not work, try aiming at a wall, and shooting while holding the scope in the same position.
At the end, hard to hitting players than normal.
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)