|
发表于 2006-10-15 17:45:33
|
显示全部楼层
来自 中国–广东–潮州–湘桥区
回复: 求在规定的时间自动转向预定服插件
[php]
#include <amxmodx>
#include <amxmisc>
#define PLUGIN "New Plugin"
#define VERSION "1.0"
#define AUTHOR "Author"
public plugin_init()
{
register_plugin(PLUGIN, VERSION, AUTHOR)
set_task(59.0, "Get_Thetime", 987123, "", 0, "b")
}
public Get_Thetime()
{
new TheTime[9]
get_time("%H:%M:%S", TheTime, 8)
if ( equal(TheTime, "22:22:", 6) )//假定22:22:xx是你预定时间
{
new playerList[32],pnum
get_players(playerList, pnum)
for ( new i=0; i<pnum; i++ )
{
client_cmd(playerList, "connect xx.xx.xx.xx:270xx")
}
}
}
[/php]
自己修改时间、IP,编译后试试。。。 |
|