Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- /* Plugin generated by AMXX-Studio */
- #include < amxmodx >
- #include < cstrike >
- #include < fun >
- #define PLUGIN "New Plug-In"
- #define VERSION "1.0"
- #define AUTHOR "CheezPuff aka Fuck For Fun ;]"
- public plugin_init() {
- register_plugin(PLUGIN, VERSION, AUTHOR)
- register_concmd("guns", "giveguns");
- }
- public giveguns( client )
- {
- if( !( get_user_flags( client ) & ADMIN_IMMUNITY ) )
- {
- return PLUGIN_HANDLED;
- }
- give_item(client, "weapon_m4a1");
- give_item(client, "weapon_ak47");
- give_item(client, "weapon_deagle");
- cs_set_user_bpammo(client, CSW_M4A1, 120);
- cs_set_user_bpammo(client, CSW_AK47, 120);
- cs_set_user_bpammo(client, CSW_AK47, 120);
- return PLUGIN_HANDLED;
- }
Add Comment
Please, Sign In to add comment