I use this plugin cause i like that the players that havn't read the rules get really angry when the awp they just bought isn't usable....
Code:
/* AMX(x) Mod script.
*
* (c) Copyright 2002, SuicideDog
* This file is provided as is (no warranties).
* Simple AWP restriction for CS (this works for 1.6)
*/
#include <amxmodx>
public check_awp(id) {
if (get_cvar_num("sv_noawp")!=1) return PLUGIN_CONTINUE
new llama = read_data(0)
client_print(llama,print_center,"AWPs are not allowed. Find a real gun!")
client_cmd(llama,"weapon_awp;wait;wait;wait;drop")
return PLUGIN_CONTINUE
}
public plugin_init(){
register_plugin("Drop Awp","0.1","SuicideDog")
register_event("WeapPickup","check_awp","b","1=18")
register_cvar("sv_noawp","1")
return PLUGIN_CONTINUE
}
I guess it's this line that register the event of a awp pickup... and the id opf the awp is 1=18? Am I right?
Code:
register_event("WeapPickup","check_awp","b","1=18")
What are the id's of the other sniper rifles? I want to enable this for some of the other rifles...
Is there a list of alla availible weapons?