Advertisement
ColdWar-Pawn

AWP Zoom

Apr 18th, 2013
219
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Pawn 0.42 KB | None | 0 0
  1. /* Plugin generated by AMXX-Studio */
  2.  
  3. #include < amxmodx >
  4. #include < hamsandwich >
  5.  
  6.  
  7. public plugin_init()
  8. {
  9.     register_plugin( "Hook AWP Zoom", "v0.1", "+ColdWar" )
  10.    
  11.     RegisterHam( Ham_Weapon_SecondaryAttack, "weapon_awp", "Ham_AwpZoom_Pre", 0 )
  12. }
  13.  
  14. public Ham_AwpZoom_Pre( wepid )
  15. {
  16.     new client = get_pdata_cbase( wepid, 41, 4 );
  17.    
  18.     client_print( client, print_chat, "[AMXX] You have zoomed your AWP." );
  19. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement