AlliedModders

AlliedModders (https://forums.alliedmods.net/index.php)
-   Scripting Help (https://forums.alliedmods.net/forumdisplay.php?f=11)
-   -   [REQ]Awp Zoom Block Plugin ? (https://forums.alliedmods.net/showthread.php?t=86792)

aLfonZoO 03-02-2009 16:46

[REQ]Awp Zoom Block Plugin ?
 
How do I prevent awp zoom.Keep up with mouse click zoom

I'm waiting for help Thanks in advance...

Exolent[jNr] 03-02-2009 18:09

Re: [REQ]Awp Zoom Block Plugin ?
 
Code:
#include <amxmodx> #include <amxmisc> public plugin_init() {     register_message(get_user_msgid("SetFOV"), "MessageSetFOV"); } public MessageSetFOV(msgid, dest, client) {     return (get_msg_arg_int(1) < 90 && get_user_weapon(client) == CSW_AWP) ? PLUGIN_HANDLED : PLUGIN_CONTINUE; }


All times are GMT -4. The time now is 17:07.

Powered by vBulletin®
Copyright ©2000 - 2024, vBulletin Solutions, Inc.