hulianglove 发表于 2008-9-9 17:22:03

谁帮我加一个换图倒计时的代码!

服务器到换图时间前10秒在服务器中间显示倒计时,高手帮忙啊谢谢!




/* AMX Mod X
* TimeLeft Plugin
*
* by the AMX Mod X Development Team
* originally developed by OLO
*
* This file is part of AMX Mod X.
*
*
* This program is free software; you can redistribute it and/or modify it
* under the terms of the GNU General Public License as published by the
* Free Software Foundation; either version 2 of the License, or (at
* your option) any later version.
*
* This program is distributed in the hope that it will be useful, but
* WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software Foundation,
* Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*
* In addition, as a special exception, the author gives permission to
* link the code of this program with the Half-Life Game Engine ("HL
* Engine") and Modified Game Libraries ("MODs") developed by Valve,
* L.L.C ("Valve"). You must obey the GNU General Public License in all
* respects for all of the code used other than the HL Engine and MODs
* from Valve. If you modify this file, you may extend this exception
* to your version of the file, but you are not obligated to do so. If
* you do not wish to do so, delete this exception statement from your
* version.
*/
#include <amxmodx>
new g_TimeSet
new g_LastTime
new g_CountDown
new g_Switch
public plugin_init()
{
register_plugin("TimeLeft", AMXX_VERSION_STR, "AMXX Dev Team")
register_dictionary("timeleft.txt")
register_cvar("amx_time_voice", "1")
register_srvcmd("amx_time_display", "setDisplaying")
register_cvar("amx_timeleft", "00:00", FCVAR_SERVER|FCVAR_EXTDLL|FCVAR_UNLOGGED|FCVAR_SPONLY)
register_clcmd("say timeleft", "sayTimeLeft", 0, "- displays timeleft")
register_clcmd("say thetime", "sayTheTime", 0, "- displays current time")

set_task(0.8, "timeRemain", 8648458, "", 0, "b")
}
public client_color(id,msg[]){
new playerslist,playerscount//,i
get_players(playerslist,playerscount,"c")
while(replace(msg,127,"0x01","^x01")){}
while(replace(msg,127,"0x02","^x02")){}
while(replace(msg,127,"0x03","^x03")){}
while(replace(msg,127,"0x04","^x04")){}
if(id==0){
message_begin(MSG_ALL, get_user_msgid("SayText"), {0,0,0},1)
write_byte(1)
write_string(msg)
message_end()

}
else{
message_begin(MSG_ONE, get_user_msgid("SayText"), {0,0,0}, id)
write_byte(id)
write_string(msg)
message_end()
}
}
public sayTheTime(id)
{
if (get_cvar_num("amx_time_voice"))
{
new mhours, mmins, whours, wmins, wpm

get_time("%H", mhours, 5)
get_time("%M", mmins, 5)

new mins = str_to_num(mmins)
new hrs = str_to_num(mhours)

if (mins)
num_to_word(mins, wmins, 31)
else
wmins = 0

if (hrs < 12)
wpm = "am "
else
{
if (hrs > 12) hrs -= 12
wpm = "pm "
}
if (hrs)
num_to_word(hrs, whours, 31)
else
whours = "twelve "

client_cmd(id, "spk ^"fvox/time_is_now %s_period %s%s^"", whours, wmins, wpm)
}

new ctime, msg

get_time("%m/%d/%Y - %H:%M:%S", ctime, 63)
format(msg, 127, "%L %s", LANG_PLAYER, "THE_TIME", ctime)
client_color(id,msg)

return PLUGIN_CONTINUE
}
public sayTimeLeft(id)
{
new msg
if (get_cvar_float("mp_timelimit"))
{
new a = get_timeleft()

if (get_cvar_num("amx_time_voice"))
{
new svoice
setTimeVoice(svoice, 127, 0, a)
client_cmd(id, "%s", svoice)
}
format(msg,127, "%L %d:%02d", LANG_PLAYER, "TIME_LEFT", (a / 60), (a % 60))
}
else
{
format(msg,127, "%L", LANG_PLAYER, "NO_T_LIMIT")
}
client_color(id, msg)
}
setTimeText(text[], len, tmlf, id)
{
new secs = tmlf % 60
new mins = tmlf / 60
new nextmap
get_cvar_string("amx_nextmap",nextmap,31)
if (secs == 0)
format(text, len, "剩余时间 %d %L^n^n下幅地图: %s", mins, id, (mins > 1) ? "MINUTES" : "MINUTE", nextmap)
else if (mins == 0)
format(text, len, "换图剩余时间 %d %L^n^n下幅地图: %s", secs, id, (secs > 1) ? "SECONDS" : "SECOND",nextmap)
else
format(text, len, "%d %L %d %L", mins, id, (mins > 1) ? "MINUTES" : "MINUTE", secs, id, (secs > 1) ? "SECONDS" : "SECOND")
}
setTimeVoice(text[], len, flags, tmlf)
{
new temp
new secs = tmlf % 60
new mins = tmlf / 60

for (new a = 0;a < 7;++a)
temp = 0
if (secs > 0)
{
num_to_word(secs, temp, 31)

if (!(flags & 8))
temp = "seconds " /* there is no "second" in default hl */
}

if (mins > 59)
{
new hours = mins / 60

num_to_word(hours, temp, 31)

if (!(flags & 8))
temp = "hours "

mins = mins % 60
}

if (mins > 0)
{
num_to_word(mins, temp, 31)

if (!(flags & 8))
temp = "minutes "
}

if (!(flags & 4))
temp = "remaining "

return format(text, len, "spk ^"vox/%s%s%s%s%s%s%s^"", temp, temp, temp, temp, temp, temp, temp)
}
findDispFormat(time)
{
for (new i = 0; g_TimeSet; ++i)
{
if (g_TimeSet & 16)
{
if (g_TimeSet > time)
{
if (!g_Switch)
{
g_CountDown = g_Switch = time
remove_task(8648458)
set_task(1.0, "timeRemain", 34543, "", 0, "b")
}

return i
}
}
else if (g_TimeSet == time)
{
return i
}
}

return -1
}
public setDisplaying()
{
new arg, flags, num
new argc = read_argc() - 1
new i = 0
while (i < argc && i < 32)
{
read_argv(i + 1, arg, 31)
parse(arg, flags, 31, num, 31)

g_TimeSet = str_to_num(num)
g_TimeSet = read_flags(flags)

i++
}
g_TimeSet = 0

return PLUGIN_HANDLED
}
public timeRemain(param[])
{
new gmtm = get_timeleft()
new tmlf = g_Switch ? --g_CountDown : gmtm
new stimel

format(stimel, 11, "%02d:%02d", gmtm / 60, gmtm % 60)
set_cvar_string("amx_timeleft", stimel)

if (g_Switch && gmtm > g_Switch)
{
remove_task(34543)
g_Switch = 0
set_task(0.8, "timeRemain", 8648458, "", 0, "b")

return
}
if (tmlf > 0 && g_LastTime != tmlf)
{
g_LastTime = tmlf
new tm_set = findDispFormat(tmlf)

if (tm_set != -1)
{
new flags = g_TimeSet
new arg

if (flags & 1)
{
new players, pnum

get_players(players, pnum, "c")

for (new i = 0; i < pnum; i++)
{
setTimeText(arg, 127, tmlf, players)

if (flags & 16)
set_hudmessage(255, 0, 255, -1.0, 0.65, 0, 6.0, 12.0, 0.1, 0.5, 939)
else
set_hudmessage(255, 0, 255, -1.0, 0.65, 0, 6.0, 12.0, 0.0, 0.5, 939)

show_hudmessage(players, "%s", arg)
}
}
if (flags & 2)
{
setTimeVoice(arg, 127, flags, tmlf)
client_cmd(0, "%s", arg)
}
}
}
}
页: [1]
查看完整版本: 谁帮我加一个换图倒计时的代码!