zwfgdlc 发表于 2008-9-13 12:30:14

回复: 帮改一下放包奖励的插件!有别于论坛的!

Post by PEN
zwfgdlc麻烦你按16楼的方法再帮我改一次!
这么很简单的就自己改下吧,不要一直伸手,也要学会动手.

apocalyptic 发表于 2008-9-13 12:36:36

回复: 帮改一下放包奖励的插件!有别于论坛的!

Post by zwfgdlc
看下csx.inc你就明白了
csx里面的确含有那几个函数,但是我只加载cstrike模块,没有加载csx模块也能正确编译出来。

zwfgdlc 发表于 2008-9-13 12:40:27

回复: 帮改一下放包奖励的插件!有别于论坛的!

Post by apocalyptic
csx里面的确含有那几个函数,但是我只加载cstrike模块,没有加载csx模块也能正确编译出来。
能编译不代表,能正常使用.你自己试下就明白了.

PEN 发表于 2008-9-13 17:58:45

回复: 帮改一下放包奖励的插件!有别于论坛的!

不要骂我!真的还是不懂!

PEN 发表于 2008-9-13 18:27:03

回复: 帮改一下放包奖励的插件!有别于论坛的!

我改了, 有4个错误!


#include <amxmodx>
#include <amxmisc>
#include <cstrike>
#include <csx>
#define PLUGIN_NAME "Bomb Game"
#define PLUGIN_VERSION "1.0"
#define PLUGIN_AUTHOR "Apocalyptic"
public plugin_init()
{
    register_plugin(PLUGIN_NAME, PLUGIN_VERSION, PLUGIN_AUTHOR);
}
//放置炸弹事件
public bomb_planted(planter)
{
    new name;
    get_user_name(planter,name,31);
    cs_set_user_money(planter,cs_get_user_money(planter)+5000,1)
    set_hudmessage(85, 62, 210, 0.03, 0.85, 0, 6.0, 6.0, 0.5, 0.15, 3)
    show_hudmessage(0,"%s成功放置炸弹,奖励$5000元",name)
}
//拆除炸弹事件
public bomb_defused(defuser)
{   new name;
    get_user_name(defuser,name,31);
    cs_set_user_money(defuser,cs_get_user_money(defuser)+5000,1)
    set_hudmessage(85, 62, 210, 0.03, 0.85, 0, 6.0, 6.0, 0.5, 0.15, 3)
    show_hudmessage(0,"%s成功拆除炸弹,奖励$5000元",name)
    for (new i=1;i<=32;i++)
    {
      if (is_user_connected(i) && cs_get_user_team(i)==CS_TEAM_CT)
      {
            cs_set_user_money(i,cs_get_user_money(i)+3000,1)
      }
    }
    new msg
    new iLen = format(msg, 255,"炸弹被拆除^================^全体警察额外奖励%d元",3000)
    set_hudmessage(49,179,113,-1.0,0.50,0, 0.01, 20.0, 0.01, 0.2, 4)
    show_hudmessage(0,msg)
}
//炸弹爆炸事件
public bomb_explode(planter,defuser)
{
   
    for (new i=1;i<=32;i++)
    {
      if (is_user_connected(i) && cs_get_user_team(i)==CS_TEAM_T)
      {
            cs_set_user_money(i,cs_get_user_money(i)+3000,1)
      }
    }
    new msg
    new iLen = format(msg, 255, "炸弹被引爆^================^全体匪徒额外奖励%d元",3000)
    set_hudmessage(49,179,113,-1.0,0.65,0, 0.01, 20.0, 0.01, 0.2, 4)
    show_hudmessage(0,msg)
}

PEN 发表于 2008-9-13 18:35:42

回复: 帮改一下放包奖励的插件!有别于论坛的!

如果能配合那个无限金钱和在AMXX.CFG定议放包成功奖励多少钱?拆包成功奖励多少钱?全体CT、T奖励多少钱就完美了!
页: 1 2 [3]
查看完整版本: 帮改一下放包奖励的插件!有别于论坛的!