Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include <amxmodx>
- #include <fun>
- #include <cstrike>
- public plugin_init() register_clcmd("say /chance", "Function")
- public Function(id) {
- switch(random_num(1,20))
- {
- case 5: give_item(id, "weapon_awp") & cs_set_user_bpammo(id, CSW_AWP, 30)
- case 9: give_item(id, "weapon_deagle") & cs_set_user_bpammo(id, CSW_DEAGLE, 80)
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment