TCMBW 发表于 2009-8-1 15:43:10

求 删除地图枪支代码

谁有删除地图自带枪支的代码?共享一个如何?谢谢!

jim_yang 发表于 2009-8-1 15:56:14


#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)
        }
}

TCMBW 发表于 2009-8-2 17:13:29

:victory:谢谢楼上的。

Cr@zyTreE 发表于 2009-8-2 19:37:10

啊。。。直接改地图文件不行么??

TCMBW 发表于 2009-8-5 14:50:13

这多省事啊。
页: [1]
查看完整版本: 求 删除地图枪支代码