PDA

View Full Version : [Plugin] NIGHT TIME



Dracke ♪
24-04-2016, 03:03 AM
Descriere: Cu ajutorul acestui plugin face ca serverul de cs sa aibe un program de noapte si unul de zi. În programul de noapte se joaca doar o singura harta . Când vine ziua, serverul va trece la setarile initiale, urmând sa se joace mai multe harti.Este un plugin foarte folositoar mai ales pentru modurile CS , DR.

Plugin:Nigh Time
Versiune: 1.0
Autor: -
Download link:
#include <amxmodx>

new a[6]

public plugin_init()
{
register_plugin("Map Scheduler", "1.0", "Author")

set_task(60.0, "task_check_time", 38427236, _, _, "b")
}

public task_check_time()
{
get_time("%H:%M", a, 5)

if (equal(a, "23:59"))
{
chat_color(0, "!g[AMXX] !nEste ora !g23:59 !nserverul trece pe setarile de noapte.")
}

if (equal(a, "00:00"))
{
server_cmd("amx_map de_dust2")
server_cmd("amx_rcon mp_timelimit 0")
server_cmd("amx_pausecfg stop adminvote")
server_cmd("amx_pausecfg stop mapchooser")
server_cmd("amx_pausecfg stop mapsmenu")
}
if (equal(a, "10:00"))
{
server_cmd("amx_map de_inferno")
server_cmd("amx_rcon mp_timelimit 30")
}

}

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, "!n", "^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()
}
}
}
}


Instalare:
1.Adaugati NightTimeMap.amxx in addons/amxmodx/plugins .
2.Adaugati NightTimeMap.sma in addons/amxmodx/scripting.
3.Intrati in addons/amxmox/configs/plugins.inisi adaugati urmatoarea linie:
NightTimeMap.amxx

Cvar-uri:
Night_start 22 <-- Ora la care începe programul de noapte
Night_stop 8 <-- Ora la care se sfârseste programul de noapte
Night_schimba 1 <-- Metoda prin care se schimba harta 1 = runda urmatoare / 0 = Dupa 5 secunde.
Night_harta fy_snow <-- Harta ce se va juca noaptea
Night_harta_2 de_dust2 <-- Harta ce va urma dupa; încheierea programului de noapte
Night_prefix NightTimeMap <-- Prefixul mesajelor din chat

Vor aparea in chat mesaje sub forma:

[NightTimeMap] Programul de noapte a inceput! Runda viitoare se va schimba harta!
[NightTimeMap] Noua hata va fi fy_snow !

~TraNda~
26-03-2017, 06:11 PM
Am actualizat link-ul de download.

~TraNda~
11-08-2017, 04:22 AM
Update


#include <amxmodx>

new a[6]

public plugin_init()
{
register_plugin("Map Scheduler", "1.0", "Author")

set_task(60.0, "task_check_time", 38427236, _, _, "b")
}

public task_check_time()
{
get_time("%H:%M", a, 5)

if (equal(a, "23:59"))
{
chat_color(0, "!g[AMXX] !nEste ora !g23:59 !nserverul trece pe setarile de noapte.")
}

if (equal(a, "00:00"))
{
server_cmd("amx_map de_dust2")
server_cmd("amx_rcon mp_timelimit 0")
server_cmd("amx_pausecfg stop adminvote")
server_cmd("amx_pausecfg stop mapchooser")
server_cmd("amx_pausecfg stop mapsmenu")
}
if (equal(a, "10:00"))
{
server_cmd("amx_map de_inferno")
server_cmd("amx_rcon mp_timelimit 30")
}

}

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, "!n", "^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()
}
}
}
}