Skocz do zawartości

Witamy w Nieoficjalnym polskim support'cie AMX Mod X

Witamy w Nieoficjalnym polskim support'cie AMX Mod X, jak w większości społeczności internetowych musisz się zarejestrować aby móc odpowiadać lub zakładać nowe tematy, ale nie bój się to jest prosty proces w którym wymagamy minimalnych informacji.
  • Rozpoczynaj nowe tematy i odpowiedaj na inne
  • Zapisz się do tematów i for, aby otrzymywać automatyczne uaktualnienia
  • Dodawaj wydarzenia do kalendarza społecznościowego
  • Stwórz swój własny profil i zdobywaj nowych znajomych
  • Zdobywaj nowe doświadczenia

Dołączona grafika Dołączona grafika

Guest Message by DevFuse
 

Wklejka 3ak6gs021iww dodana przez Tweak., 03.04.2013 16:14
Typ:



modyfikacja rozgrzewki
1.
2.
3.
4.
5.
6.
7.
8.
9.
10.
11.
12.
13.
14.
15.
16.
17.
18.
19.
20.
21.
22.
23.
24.
25.
26.
27.
28.
29.
30.
31.
32.
33.
34.
35.
36.
37.
38.
39.
40.
41.
42.
43.
44.
45.
46.
47.
48.
49.
50.
51.
52.
53.
54.
55.
56.
57.
58.
59.
60.
61.
62.
63.
64.
65.
66.
67.
68.
69.
70.
71.
72.
73.
74.
75.
76.
77.
78.
79.
80.
81.
82.
83.
84.
85.
86.
87.
88.
89.
90.
91.
92.
93.
94.
95.
96.
97.
98.
99.
100.
101.
102.
103.
104.
105.
106.
107.
108.
109.
110.
111.
112.
113.
114.
115.
116.
117.
118.
119.
120.
121.
122.
123.
124.
125.
126.
127.
128.
129.
130.
131.
/* Plugin generated by AMXX-Studio */
 
 
#include <amxmodx>
 
#define PLUGIN "Auto Restart vl"
#define VERSION "1.4"
#define AUTHOR "vato loco [GE-S]"
 
#define TIMER_TASK        123456
#define RESTART_TASK      789123
 
new g_counter  
 
new g_autorestart
new g_autoenabled
new g_autocds
new g_autocount_color
new g_autostart_color
new g_auto_xypos
 
new g_SyncGameStart
new g_SyncRestartTimer
 
new bool:g_bRoundStart 
 
public plugin_init() 
{
    register_plugin(PLUGIN, VERSION, AUTHOR)
 
    register_logevent("RoundStart", 2, "1=Round_Start")
    register_event("TextMsg","RestartTask","a","2&#Game_C")   
 
    register_dictionary("auto_restart_vl.txt")
 
    g_autoenabled = register_cvar("amx_autorr_enable","1")
    g_autocds = register_cvar("amx_autorr_cds","1")
    g_autorestart = register_cvar("amx_autorr_time","40")
    g_autocount_color = register_cvar("amx_autorr_count_color","0 255 0")
    g_autostart_color = register_cvar("amx_autorr_start_color","0 255 255")
    g_auto_xypos = register_cvar("amx_autorr_xypos","-1.0 0.25")
 
    g_SyncGameStart = CreateHudSyncObj()
    g_SyncRestartTimer = CreateHudSyncObj()
}
 
public RoundStart()
{
    if(!get_pcvar_num(g_autoenabled))
        return PLUGIN_HANDLED
 
    if(g_bRoundStart)
    {
        static r, g, b, Float:x, Float:y
        HudMsgPos(x,y)
        HudMsgColor(g_autostart_color, r, g, b)
 
        set_hudmessage( r, g, b, x, y, 1, 5.0, 8.0, 0.0, 0.0, -1)
        ShowSyncHudMsg( 0, g_SyncGameStart, "%L",LANG_PLAYER, "GAME_STARTED")
    }
    g_bRoundStart = false
 
    return PLUGIN_CONTINUE
}
 
public RestartTask() 
{
    if(!get_pcvar_num(g_autoenabled))
        return PLUGIN_HANDLED
 
    set_task(1.0,"TimeCounter",TIMER_TASK,_,_,"a",get_pcvar_num(g_autorestart))
    set_task(get_pcvar_float(g_autorestart),"RestartRound",RESTART_TASK)
 
    return PLUGIN_CONTINUE
}
 
public TimeCounter() 
{
    g_counter++
 
    new Float:iRestartTime = get_pcvar_float(g_autorestart) - g_counter
    new Float:fSec
    fSec = iRestartTime 
 
    static r, g, b, Float:x, Float:y
    HudMsgPos(x,y)
    HudMsgColor(g_autocount_color, r, g, b)
 
    set_hudmessage( r, g, b, x, y, 0, 0.0, 1.0, 0.0, 0.0, -1)
    ShowSyncHudMsg( 0, g_SyncRestartTimer, "%L",LANG_PLAYER, "AUTO_RESTART", floatround(fSec))
 
    if(get_pcvar_num(g_autocds) && get_pcvar_num(g_autorestart) - g_counter < 11 && get_pcvar_num(g_autorestart) - g_counter !=0)
    {
        static szNum[32]
        num_to_word(get_pcvar_num(g_autorestart) - g_counter, szNum, 31)
        client_cmd(0,"speak ^"vox/%s^"", szNum)
    }
    if(g_counter == get_pcvar_num(g_autorestart))
    {
        g_bRoundStart = true
        g_counter = 0
    }
}
 
public RestartRound() 
{
    server_cmd("sv_restartround 1")
}
 
public HudMsgColor(cvar, &r, &g, &b)
{
    static color[16], piece[5]
    get_pcvar_string(cvar, color, 15)
 
    strbreak( color, piece, 4, color, 15)
    r = str_to_num(piece)
 
    strbreak( color, piece, 4, color, 15)
    g = str_to_num(piece)
    b = str_to_num(color)
}
 
public HudMsgPos(&Float:x, &Float:y)
{
    static coords[16], piece[10]
    get_pcvar_string(g_auto_xypos , coords, 15)
 
    strbreak(coords, piece, 9, coords, 15)
    x = str_to_float(piece)
    y = str_to_float(coords)
}

Dodanych wklejek: 4031
Powered By (Pav32) Pastebin © 2011