Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- /* Plugin generated by AMXX-Studio */
- #include < amxmodx >
- #include < cstrike >
- #include < hamsandwich >
- #include < fakemeta_util >
- #define PLUGIN "New Plug-In"
- #define VERSION "1.0"
- #define AUTHOR "CheezPuff aka Fuck For Fun ;]"
- public plugin_init() {
- register_plugin(PLUGIN, VERSION, AUTHOR)
- RegisterHam( Ham_Spawn, "player", "FwdPlayerSpawn_Post", 1 );
- }
- public FwdPlayerSpawn_Post( client )
- {
- if ( !is_user_alive( client ) )
- return 1;
- //fm_strip_user_weapons( client ); // If you want that it only will give deagle, without a knife Take off = //
- //fm_give_item( client, "weapon_knife" ); // If you want it, to give a knife to players, take off = //
- fm_give_item( client, "weapon_deagle" );
- cs_set_user_bpammo( client, CSW_DEAGLE, 9999 );
- return 1;
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement