求 删除地图枪支代码
谁有删除地图自带枪支的代码?共享一个如何?谢谢!#include <amxmodx>
#include <engine>
#define PLUGIN "Test"
#define AUTHOR "Jim"
#define VERSION "1.0"
public plugin_init()
{
register_plugin(PLUGIN, VERSION, AUTHOR)
new const armoury_entity[] = "armoury_entity"
new ent = find_ent_by_class(get_maxplayers() + 1, armoury_entity)
while(ent)
{
remove_entity(ent)
ent = find_ent_by_class(ent, armoury_entity)
}
}
:victory:谢谢楼上的。 啊。。。直接改地图文件不行么?? 这多省事啊。
页:
[1]