清心阁 发表于 2009-10-20 15:12:38

求武器落地自动消失插件

KZ服务器老是刷枪 一会服务器就crash了 求高手做一个武器掉落在地上就自动消失的插件!Thnak You...

zwfgdlc 发表于 2009-10-20 19:51:54

本帖最后由 zwfgdlc 于 2009-10-21 19:32 编辑

未测试,理论上可行。
#include <amxmodx>
#include <amxmisc>
#include <hamsandwich>
#include <fakemeta>

#define PLUGIN_NAME        "New Plug-In"
#define PLUGIN_VERSION        "1.0"
#define PLUGIN_AUTHOR        "zwfgdlc"

public plugin_init()
{
        register_plugin(PLUGIN_NAME, PLUGIN_VERSION, PLUGIN_AUTHOR);
        RegisterHam(Ham_Spawn,"weaponbox","fwd_WboxSpawn",1);
}

public fwd_WboxSpawn(ent)
{
        set_pev(ent,pev_flags,pev(ent,pev_flags)|FL_KILLME);
        dllfunc(DLLFunc_Think,ent);
}

20576526 发表于 2009-10-20 22:55:01

不等编辑呀

清心阁 发表于 2009-10-21 19:21:52

1楼 编译不成功 -。-! AMXX 1.8.1

zwfgdlc 发表于 2009-10-21 19:43:39

多了个逗号。

清心阁 发表于 2009-10-22 01:21:31

哪里?麻烦修改下 急需 谢谢

清心阁 发表于 2009-10-22 01:55:58

感谢2楼的 完全工作 可否在帮助写一个在短时间内自杀次数过多自动被服务器T出 最好可以在AMXX.CFG里自定义时间 进入KZ服务器USP直接加消音器 万分感谢 我的KZ服务器老是被他们自杀给刷爆 很烦人 再次感谢

清心阁 发表于 2009-10-23 01:07:27

继续等待2楼发插件

zwfgdlc 发表于 2009-10-23 01:45:17

不给玩家自杀就行了
#include <amxmodx>
#include <amxmisc>
#include <hamsandwich>
#include <fakemeta>

#define PLUGIN_NAME      "New Plug-In"
#define PLUGIN_VERSION      "1.0"
#define PLUGIN_AUTHOR      "zwfgdlc"

public plugin_init()
{
        register_plugin(PLUGIN_NAME, PLUGIN_VERSION, PLUGIN_AUTHOR);
        RegisterHam(Ham_Spawn,"weaponbox","fwd_WboxSpawn",1);
        register_forward(FM_ClientKill,"fwd_ClientKill");
}

public fwd_WboxSpawn(ent)
{
        set_pev(ent,pev_flags,pev(ent,pev_flags)|FL_KILLME);
        dllfunc(DLLFunc_Think,ent);
}


public fwd_ClientKill(id)
{
        return FMRES_SUPERCEDE;
}

20576526 发表于 2009-10-23 11:59:35

未测试,理论上可行。
#include
#include
#include
#include

#define PLUGIN_NAME        "New Plug-In"
#define PLUGIN_VERSION        "1.0"
#define PLUGIN_AUTHOR        "zwfgdlc"

public plugin_init()
{
        register_plugin(PL ...
zwfgdlc 发表于 2009-10-20 19:51 http://www.dt-club.net/forum/images/common/back.gif


这个代码,C4掉了也捡不了了
页: [1] 2 3
查看完整版本: 求武器落地自动消失插件