cwy534363081 发表于 2009-11-10 12:23:35

求一个死后显示广告HUD信息插件源码

求一个死后显示广告HUD信息插件源码

我有这个插件
但是没有源码,想改一下坐标.
希望有的可以提供一下.
我有很多插件,可以进行交换.
可以到我的服务器看看
58.60.110.181:27016

biscuit628 发表于 2009-11-10 12:31:29

本帖最后由 biscuit628 于 2009-11-10 12:32 编辑

#include < amxmodx >

#define X -1.0
#define Y 0.30
#define R 255
#define G 0
#define B 0

public plugin_init( )
{
        register_plugin( "???", "???", "Biscuit" );
        register_event( "DeathMsg", "EventDeathMsg", "a" )
}

public EventDeathMsg( )
{
        new Victim = read_data( 2 );

        set_hudmessage(R, G, B, X, Y, 0, 6.0, 6.0)
        show_hudmessage(Victim, "文字")

        return PLUGIN_CONTINUE
}

剛完成的

cwy534363081 发表于 2009-11-10 13:34:18

太感谢了
这个会不会显示一闪就没了

cwy534363081 发表于 2009-11-10 13:36:27

还有!我要的是类似imessage.amxx

biscuit628 发表于 2009-11-10 15:12:26

那是什麼?

cwy534363081 发表于 2009-11-10 15:26:31

就是死后或者观察者才显示这样的消息

biscuit628 发表于 2009-11-10 15:53:31

#include < amxmodx >

#define X -1.0
#define Y 0.30
#define G 0
#define R 255
#define B 0

#define delay 15.0

new p_MaxPlayers

public plugin_init( )
{
        register_plugin( "???", "???", "Biscuit" );
        p_MaxPlayers = get_maxplayers()
        set_task(delay, "print_hud",_,_,_,"b")
}

public print_hud()
{
        for(new id=1;id<=p_MaxPlayers;id++)
        {
                if(!is_user_alive(id))
                {
                        set_hudmessage(G, R, B, X, Y, 0, 6.0, 6.0)
                        show_hudmessage(id, "文字")
                }
        }
}
應該可以了

cwy534363081 发表于 2009-11-10 16:03:23

可是你这个只能显示一条信息,
我是要间隔几秒显示一段信息的
就是向AMXMOD里面自带的imessage.amxx那样

jinshumin 发表于 2009-11-10 16:20:17

imessage信息显示一闪就没了是和你F加载的显示排名和IP地址插件有关系 imessage插件没问题

cwy534363081 发表于 2009-11-10 16:48:58

有办法解决吗?
页: [1] 2
查看完整版本: 求一个死后显示广告HUD信息插件源码