Правила форума Гаранты форума
Размещение рекламы AMX-X компилятор

Здравствуйте, гость Вход | Регистрация

Наши новости:

14-дек
24-апр
10-апр
11-апр

История благодарностей участнику vip-servera ::: Спасибо сказали: 11
Дата поста: В теме: За сообщение: Спасибо сказали:
14.6.2011, 10:14 Loading Game Banner
Давайте вообше у игроков удалим кс :D
DEz_MonD
13.6.2011, 15:07 Loading Game Banner
cs-portal,
Какой молодец
cs-portal
11.6.2011, 12:23 Как узнать настройки чужого сервера
Цитата
Sw1ch

ну звуки убиств qs или ul
музыка erm
на вотка на игроков делал себе давно за 5 мин плагин не выложу
атак 3 версии
статистика статс шел 2
голосование галилео
античит для соурсе который был sbguardian советую убрать там 4 бекдора как я знаю
руская радио
4 модельки 2 адм 2 вип вип
вип плагин переведеный версии 2.0.5
малясь переделаный мискстатс
Sw1ch
11.6.2011, 8:43 ResetScore
Код
#include <amxmodx>
#include <amxmisc>
#include <cstrike>
#include <fun>
#include <colorchat>

#define adtime 600.0 //Default of 10 minuites

new pcvar_Advertise
new pcvar_Display

public plugin_init()
{
register_plugin("Reset Score", "1.0", "Silenttt")

//You may type /resetscore or /restartscore
register_clcmd("say /resetscore", "reset_score")
register_clcmd("say /rs", "reset_score")

//This command by default will be set at 0
//Change it to 1 in server.cfg if you want
//A message to be shown to advertise this.
pcvar_Advertise = register_cvar("sv_rsadvertise", "1")
//This command by default is also 0
//Change it to 1 in server.cfg if you want
//It to show who reset their scores when they do it
pcvar_Display = register_cvar("sv_rsdisplay", "0")

if(get_cvar_num("sv_rsadvertise") == 1)
{
set_task(adtime, "advertise", _, _, _, "b")
}
}

public reset_score(id)
{
//These both NEED to be done twice, otherwise your frags wont
//until the next round
cs_set_user_deaths(id, 0)
set_user_frags(id, 0)
cs_set_user_deaths(id, 0)
set_user_frags(id, 0)
cs_set_user_money(id, 800)

if(get_pcvar_num(pcvar_Display) == 1)
{
new name[33]
get_user_name(id, name, 32)
ColorChat(0,GREEN,"^x01[^x04ResetScore^x01] ^x03%sx01 аннулировал свои фраги, смерти и деньги. ", name)
}
else
{
ColorChat(0,GREEN,"^x01[^x04ResetScore^x01] Вы аннулировали свои фраги, смерти и деньги.")
}
}

public advertise()
{
set_hudmessage(255, 0, 0, -1.0, 0.20, 0, 0.2, 12.0)
show_hudmessage(0, "By typing /resetscore you can restart your deaths and kills back to 0")
}

public client_putinserver(id)
{
if(get_pcvar_num(pcvar_Advertise) == 1)
{
set_task(10.0, "connectmessage", id, _, _, "a", 1)
}
}

public connectmessage(id)
{
if(is_user_connected(id))
{
ColorChat(0,GREEN,"^x01[^x04ResetScore^x01] Напишите ^x04/rs^x01 что бы аннулировать свои фраги, смерти и деньги.")
}
}
Dale
10.6.2011, 1:40 Помогите подобрать рейты
sv_maxrate 25000
sv_minrate 100000
sv_maxupdaterate 33
sv_minupdaterate 11
sys_ticrate 10000
sv_maxsped 900
I LOVE YOU...CS-1.6
8.6.2011, 14:47 VIP плагин
Код
#include <amxmodx>
#include <amxmisc>
#include <fun>
#include <cstrike>


public plugin_init()
{
register_plugin("vip", "1.0", "test")
register_event("ResetHUD", "ResetHUD", "be")
}

public ResetHUD(id)
{
set_task(0.5, "VIP", id + 6910)
}

public VIP(TaskID)
{
new id = TaskID - 6910

if (get_user_flags(id) & ADMIN_LEVEL_E)
{
message_begin(MSG_ALL, get_user_msgid("ScoreAttrib"))
write_byte(id)
write_byte(4)
message_end()

give_item(id,"weapon_hegrenade")
give_item(id,"weapon_flashbang")
give_item(id,"weapon_flashbang")
give_item(id,"weapon_smokegrenade")
give_item(id,"weapon_elite")
give_item(id,"item_assaultsuit")
}

if(cs_get_user_money (id) < 15500){
        cs_set_user_money(id, cs_get_user_money(id) +2500)
}

return PLUGIN_HANDLED
}
Fangers, KapoBa
7.6.2011, 9:33 setmaster!
народ не че лучще шас не делать как будут сервера 48 протокола тогда нужно раскручивать а шас лучще подождать
Mr.Dmitry