Поиск Restart before map change

Сообщения
31
Реакции
0
Hello i need one plugin when its time to change map plugin to reset map i have mp_timelimit 45 , who can help me
 
Сообщения
31
Реакции
0
trendafili, it’s not clear what is needed
Я хочу, чтобы мой сервер не менял карту, у меня просто mp_timelimit 45, но я хочу, чтобы игра перезапускалась через 44 минуты через любую команду, потому что мы не всегда находимся в активном админе, поэтому сервер перезагружается автоматически.
amx_cvar sv_restart 1 и сообщить в HUD Игра началась, удачи!
 
Сообщения
964
Реакции
51
Помог
10 раз(а)
Тоесть увеличивал mp_timelimit на большее значение?
 
Сообщения
31
Реакции
0
Я вас понимаю, я его увеличивал раньше, но постоянно увеличивать тайминг не хочется, поэтому мне нужен плагин, чтобы просто обновить игру перезапуском, только карту не менять
 
Сообщения
108
Реакции
17
Помог
2 раз(а)
C++:
#include <amxmodx>

new g_TimeSet[32][2]
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_clcmd("say timeleft", "sayTimeLeft", 0, "- displays timeleft")
    register_clcmd("say thetime", "sayTheTime", 0, "- displays current time")
    
    set_task(0.6, "timeRemain", 8648458, "", 0, "b")
}

public sayTheTime(id)
{
    if (get_cvar_num("amx_time_voice"))
    {
        new mhours[6], mmins[6], whours[32], wmins[32], wpm[6]
        
        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] = 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[64]
    
    get_time("%H!y:!t%M!y:!t%S !yDate: !t%d!y/!t%m!y/!t%Y", ctime, 63)
    chat_color(0, "!g[Server] !yCurrent time: !t%s", ctime)
    
    return PLUGIN_CONTINUE
}

public sayTimeLeft(id)
{
    if (get_cvar_float("mp_timelimit"))
    {
        new a = get_timeleft()
        
        if (get_cvar_num("amx_time_voice"))
        {
            new svoice[128]
            setTimeVoice(svoice, 127, 0, a)
            client_cmd(id, "%s", svoice)
        }
        chat_color(0, "!g[Server] !yTime left: !t%d!y:!t%02d", (a / 60), (a % 60))
    }
    else
        chat_color(0, "!g[Server] !yTime left: !t45 !yminutes before auto restart!")
    
    return PLUGIN_CONTINUE
}

setTimeText(text[], len, tmlf, id)
{
    new secs = tmlf % 60
    new mins = tmlf / 60
    
    if (secs == 0)
        formatex(text, len, "%d %L", mins, id, (mins > 1) ? "MINUTES" : "MINUTE")
    else if (mins == 0)
        formatex(text, len, "Auto restart game in %d %L", secs, id, (secs > 1) ? "SECONDS" : "SECOND")
    else
        formatex(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[7][32]
    new secs = tmlf % 60
    new mins = tmlf / 60
    
    for (new a = 0;a < 7;++a)
        temp[a][0] = 0

    if (secs > 0)
    {
        num_to_word(secs, temp[4], 31)
        
        if (!(flags & 8))
            temp[5] = "seconds "
    }
    
    if (mins > 59)
    {
        new hours = mins / 60
        
        num_to_word(hours, temp[0], 31)
        
        if (!(flags & 8))
            temp[1] = "hours "
        
        mins = mins % 60
    }
    
    if (mins > 0)
    {
        num_to_word(mins, temp[2], 31)
        
        if (!(flags & 8))
            temp[3] = "minutes "
    }
    
    if (!(flags & 4))
        temp[6] = "remaining "
    
    return formatex(text, len, "spk ^"vox/%s%s%s%s%s%s%s^"", temp[0], temp[1], temp[2], temp[3], temp[4], temp[5], temp[6])
}

findDispFormat(time)
{
    for (new i = 0; g_TimeSet[i][0]; ++i)
    {
        if (g_TimeSet[i][1] & 16)
        {
            if (g_TimeSet[i][0] > time)
            {
                if (!g_Switch)
                {
                    g_CountDown = g_Switch = time
                    remove_task(8648458)
                    set_task(0.9, "timeRemain", 34543, "", 0, "b")
                }
                
                return i
            }
        }
        else if (g_TimeSet[i][0] == time)
        {
            return i
        }
    }
    
    return -1
}

public setDisplaying()
{
    new arg[32], flags[32], num[32]
    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[i][0] = str_to_num(num)
        g_TimeSet[i][1] = read_flags(flags)
        
        i++
    }
    g_TimeSet[i][0] = 0
    
    return PLUGIN_HANDLED
}

public timeRemain(param[])
{
    new gmtm = get_timeleft()
    new tmlf = g_Switch ? --g_CountDown : gmtm
    new timel[12]
    
    formatex(stimel, 11, "%02d:%02d", gmtm / 60, gmtm % 60)
    
    if (g_Switch && gmtm > g_Switch)
    {
        remove_task(34543)
        g_Switch = 0
        set_task(0.6, "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[tm_set][1]
            new arg[128]
            
            if (flags & 1)
            {
                new players[32], pnum
                
                get_players(players, pnum, "c")
                
                for (new i = 0; i < pnum; i++)
                {
                    setTimeText(arg, 127, tmlf, players[i])
                    
                    if (flags & 16)
                        set_hudmessage(0, 255, 255, -1.0, 0.33, 0, 0.0, 0.9, 0.1, 0.5, -1)
                    else
                        set_hudmessage(255, 255, 255, -1.0, 0.85, 0, 0.0, 3.0, 0.0, 0.5, -1)
                    
                    show_hudmessage(players[i], "%s", arg)
                }
            }

            if (flags & 2)
            {
                setTimeVoice(arg, 127, flags, tmlf)
                client_cmd(0, "%s", arg)
            }
        }
    }
}

stock chat_color(const id, const input[], any:...)
{
    new count = 1, players[32]

    static msg[191]

    vformat(msg, 190, input, 3)

    replace_all(msg, 190, "!g", "^4")
    replace_all(msg, 190, "!y", "^1")
    replace_all(msg, 190, "!t", "^3")
    replace_all(msg, 190, "!t2", "^0")

    if (id) players[0] = id; else get_players(players, count, "ch")
    {
        for (new i = 0; i < count; i++)
        {
            if (is_user_connected(players[i]))
            {
                message_begin(MSG_ONE_UNRELIABLE, get_user_msgid("SayText"), _, players[i])
                write_byte(players[i])
                write_string(msg)
                message_end()
            }
        }
    }
}
 
Сообщения
31
Реакции
0
C++:
#include <amxmodx>

new g_TimeSet[32][2]
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_clcmd("say timeleft", "sayTimeLeft", 0, "- displays timeleft")
    register_clcmd("say thetime", "sayTheTime", 0, "- displays current time")
   
    set_task(0.6, "timeRemain", 8648458, "", 0, "b")
}

public sayTheTime(id)
{
    if (get_cvar_num("amx_time_voice"))
    {
        new mhours[6], mmins[6], whours[32], wmins[32], wpm[6]
       
        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] = 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[64]
   
    get_time("%H!y:!t%M!y:!t%S !yDate: !t%d!y/!t%m!y/!t%Y", ctime, 63)
    chat_color(0, "!g[Server] !yCurrent time: !t%s", ctime)
   
    return PLUGIN_CONTINUE
}

public sayTimeLeft(id)
{
    if (get_cvar_float("mp_timelimit"))
    {
        new a = get_timeleft()
       
        if (get_cvar_num("amx_time_voice"))
        {
            new svoice[128]
            setTimeVoice(svoice, 127, 0, a)
            client_cmd(id, "%s", svoice)
        }
        chat_color(0, "!g[Server] !yTime left: !t%d!y:!t%02d", (a / 60), (a % 60))
    }
    else
        chat_color(0, "!g[Server] !yTime left: !t45 !yminutes before auto restart!")
   
    return PLUGIN_CONTINUE
}

setTimeText(text[], len, tmlf, id)
{
    new secs = tmlf % 60
    new mins = tmlf / 60
   
    if (secs == 0)
        formatex(text, len, "%d %L", mins, id, (mins > 1) ? "MINUTES" : "MINUTE")
    else if (mins == 0)
        formatex(text, len, "Auto restart game in %d %L", secs, id, (secs > 1) ? "SECONDS" : "SECOND")
    else
        formatex(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[7][32]
    new secs = tmlf % 60
    new mins = tmlf / 60
   
    for (new a = 0;a < 7;++a)
        temp[a][0] = 0

    if (secs > 0)
    {
        num_to_word(secs, temp[4], 31)
       
        if (!(flags & 8))
            temp[5] = "seconds "
    }
   
    if (mins > 59)
    {
        new hours = mins / 60
       
        num_to_word(hours, temp[0], 31)
       
        if (!(flags & 8))
            temp[1] = "hours "
       
        mins = mins % 60
    }
   
    if (mins > 0)
    {
        num_to_word(mins, temp[2], 31)
       
        if (!(flags & 8))
            temp[3] = "minutes "
    }
   
    if (!(flags & 4))
        temp[6] = "remaining "
   
    return formatex(text, len, "spk ^"vox/%s%s%s%s%s%s%s^"", temp[0], temp[1], temp[2], temp[3], temp[4], temp[5], temp[6])
}

findDispFormat(time)
{
    for (new i = 0; g_TimeSet[i][0]; ++i)
    {
        if (g_TimeSet[i][1] & 16)
        {
            if (g_TimeSet[i][0] > time)
            {
                if (!g_Switch)
                {
                    g_CountDown = g_Switch = time
                    remove_task(8648458)
                    set_task(0.9, "timeRemain", 34543, "", 0, "b")
                }
               
                return i
            }
        }
        else if (g_TimeSet[i][0] == time)
        {
            return i
        }
    }
   
    return -1
}

public setDisplaying()
{
    new arg[32], flags[32], num[32]
    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[i][0] = str_to_num(num)
        g_TimeSet[i][1] = read_flags(flags)
       
        i++
    }
    g_TimeSet[i][0] = 0
   
    return PLUGIN_HANDLED
}

public timeRemain(param[])
{
    new gmtm = get_timeleft()
    new tmlf = g_Switch ? --g_CountDown : gmtm
    new timel[12]
   
    formatex(stimel, 11, "%02d:%02d", gmtm / 60, gmtm % 60)
   
    if (g_Switch && gmtm > g_Switch)
    {
        remove_task(34543)
        g_Switch = 0
        set_task(0.6, "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[tm_set][1]
            new arg[128]
           
            if (flags & 1)
            {
                new players[32], pnum
               
                get_players(players, pnum, "c")
               
                for (new i = 0; i < pnum; i++)
                {
                    setTimeText(arg, 127, tmlf, players[i])
                   
                    if (flags & 16)
                        set_hudmessage(0, 255, 255, -1.0, 0.33, 0, 0.0, 0.9, 0.1, 0.5, -1)
                    else
                        set_hudmessage(255, 255, 255, -1.0, 0.85, 0, 0.0, 3.0, 0.0, 0.5, -1)
                   
                    show_hudmessage(players[i], "%s", arg)
                }
            }

            if (flags & 2)
            {
                setTimeVoice(arg, 127, flags, tmlf)
                client_cmd(0, "%s", arg)
            }
        }
    }
}

stock chat_color(const id, const input[], any:...)
{
    new count = 1, players[32]

    static msg[191]

    vformat(msg, 190, input, 3)

    replace_all(msg, 190, "!g", "^4")
    replace_all(msg, 190, "!y", "^1")
    replace_all(msg, 190, "!t", "^3")
    replace_all(msg, 190, "!t2", "^0")

    if (id) players[0] = id; else get_players(players, count, "ch")
    {
        for (new i = 0; i < count; i++)
        {
            if (is_user_connected(players[i]))
            {
                message_begin(MSG_ONE_UNRELIABLE, get_user_msgid("SayText"), _, players[i])
                write_byte(players[i])
                write_string(msg)
                message_end()
            }
        }
    }
}
Thank you i want to ask this restart happen when map change or before map change ?
 

Пользователи, просматривающие эту тему

Сейчас на форуме нет ни одного пользователя.
Сверху Снизу