Advertisement
CheezPuff

Simple Endless Bullets in Deagle

Nov 18th, 2014
457
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Pawn 0.80 KB | None | 0 0
  1. /* Plugin generated by AMXX-Studio */
  2.  
  3. #include < amxmodx >
  4. #include < cstrike >
  5. #include < hamsandwich >
  6. #include < fakemeta_util >
  7.  
  8. #define PLUGIN "New Plug-In"
  9. #define VERSION "1.0"
  10. #define AUTHOR "CheezPuff aka Fuck For Fun ;]"
  11.  
  12.  
  13. public plugin_init() {
  14.     register_plugin(PLUGIN, VERSION, AUTHOR)
  15.    
  16.     RegisterHam( Ham_Spawn, "player", "FwdPlayerSpawn_Post", 1 );
  17. }
  18.  
  19.  
  20. public FwdPlayerSpawn_Post( client )
  21. {
  22.     if ( !is_user_alive( client ) )
  23.         return 1;
  24.        
  25.     //fm_strip_user_weapons( client );     // If you want that it only will give deagle, without a knife Take off = //
  26.     //fm_give_item( client, "weapon_knife" );      //  If you want it, to give a knife to players, take off = //
  27.     fm_give_item( client, "weapon_deagle" );
  28.     cs_set_user_bpammo( client, CSW_DEAGLE, 9999 );
  29.    
  30.     return 1;
  31. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement