Zarejestruj się Użytkownicy Kalendarz Zaznacz Wszystkie Fora jako Przeczytane CS FAQ Regulamin forum =w= Tani STEAM


Wróć   Forum Counter Strike > Serwer HLDS - wszytko o własnym serwerze do Counter Strike 1.6 Steam i Non Steam > Pluginy, dodatki, AMX, AMXX

Pluginy, dodatki, AMX, AMXX Tutaj piszemy o dodatkach do serwerach, pluginach, modach, AMX i AMXX


Wyłaczenie Stref Raszu na rundzie nożowej

- Tagi: , , , ,

HashJama FFA Steam 32 sloty - 193.33.176.188:27015
sponsor:


Konkurs dla aktywnych użytkowników - 10 kluczy CS 1.6+CS:CZ do wygrania

główny sponsor nagród (najtańsze klucze do gier):

najtańsze klucze steam

 
 
LinkBack Narzędzia wątku

Wyłaczenie Stref Raszu na rundzie nożowej

  stare
csmordpl is Offline
Spamer z doświadczeniem
 
Postów: 373

Poziom upalenia:
X------- Doświadczenie: palił z lufki
Zarejestrowany: Jan 2008
  Wyślij wiadomośc poprzez AIM do csmordpl  

Witam Jest możliwość aby w tym pluginie można było wyłączyć strefe raszu na cały okres rundy nożowej?

Cytat:
/*
* AMX Mod X script.
* Auto restart Knives by VikuS
* Skrypt powstał na bazie skryptu Auto-Restart by -ThX-
* Działa tylko pod AMXX
*
* amx_auto_rr_knives -- 1-ON 0-OFF
*
* CVAR: auto_rr_time <time> default 45
*
*/

#include <amxmodx>
#include <amxmisc>

#define SETHUDMSG set_hudmessage(000, 100, 255, -1.0, 0.25, 0, 6.0, 1.0, 0.1, 0.2, 4);
#define LEVEL_LEVEL ADMIN_CFG

new bool:AutoRR = true
new bool:knifeArena = false

public plugin_init()
{
register_plugin("Auto-Restart-Knives","0.2","VikuS")
register_dictionary("auto_restart_knives.txt")
register_concmd("amx_auto_rr_knives","auto_rr",LEV EL_LEVEL," - 1 : ON | 0 : OFF")
register_cvar("auto_rr_time","45")
register_event("TextMsg","restart_time","a","2&#Ga me_C")
register_event("CurWeapon","switchweapon","be","1= 1","2!29")
return PLUGIN_CONTINUE
}

public auto_rr(id)
{
if (!(get_user_flags(id)&LEVEL_LEVEL)) {
client_print(id, print_console, "[AMXX] %L", LANG_PLAYER, "NO_ACCESS")

return PLUGIN_HANDLED
}

new arg [2]
read_argv(1,arg,1)

if(equal(arg, "1"))
{
AutoRR = true
client_print(id,print_console,"[AMXX] %L", LANG_PLAYER, "ENABLED")
}
else if(equal(arg, "0"))
{
AutoRR = false
client_print(id,print_console,"[AMXX] %L", LANG_PLAYER, "DISABLED")
}
else if(!equal(arg, "1") || equal(!arg, "0"))
{
client_print(id,print_console,"amx_auto_rr_knives 1 = On | 0 = Off");
}
return PLUGIN_HANDLED
}

public switchweapon(id)
{
if (!knifeArena)
return PLUGIN_CONTINUE

engclient_cmd(id,"weapon_knife")
return PLUGIN_CONTINUE
}

public restart_time()
{
if (AutoRR==true)
{
new restart_time=get_cvar_num("auto_rr_time")

knifeArena = true
pause("ac","antirusher.amxx")

SETHUDMSG
show_hudmessage(0, "%L", LANG_PLAYER, "AUTO_RR_FOR_SEC",restart_time)

set_task(float(restart_time),"restart_map",0)
set_task(float(restart_time)-1,"restart_1s",0)
set_task(float(restart_time)-2,"restart_2s",0)
set_task(float(restart_time)-3,"restart_3s",0)
set_task(float(restart_time)-4,"restart_4s",0)
set_task(float(restart_time)-5,"restart_5s",0)

if (restart_time > 10)
{
set_task(float(restart_time)-10,"restart_10s",0)
}
if (restart_time > 15)
{
set_task(float(restart_time)-15,"restart_15s",0)
}
if (restart_time > 20)
{
set_task(float(restart_time)-20,"restart_20s",0)
}
if (restart_time > 30)
{
set_task(float(restart_time)-30,"restart_30s",0)
}
if (restart_time > 40)
{
set_task(float(restart_time)-40,"restart_40s",0)
}
if (restart_time > 50)
{
set_task(float(restart_time)-50,"restart_50s",0)
}
if (restart_time > 60)
{
set_task(float(restart_time)-60,"restart_60s",0)
}
}
}

public restart_60s()
{
SETHUDMSG
show_hudmessage(0,"%L", LANG_PLAYER, "AUTO_RR_FOR_MIN",1)
}
public restart_50s()
{
SETHUDMSG
show_hudmessage(0,"%L", LANG_PLAYER, "AUTO_RR_FOR_SEC",50)
}
public restart_40s()
{
SETHUDMSG
show_hudmessage(0,"%L", LANG_PLAYER, "AUTO_RR_FOR_SEC",40)
}
public restart_30s()
{
SETHUDMSG
show_hudmessage(0,"%L", LANG_PLAYER, "AUTO_RR_FOR_SEC",30)
}
public restart_20s()
{
SETHUDMSG
show_hudmessage(0,"%L", LANG_PLAYER, "AUTO_RR_FOR_SEC",20)
}
public restart_15s()
{
SETHUDMSG
show_hudmessage(0,"%L", LANG_PLAYER, "AUTO_RR_FOR_SEC",15)
}
public restart_10s()
{
SETHUDMSG
show_hudmessage(0,"%L", LANG_PLAYER, "AUTO_RR_FOR_SEC",10)
}
public restart_5s()
{
SETHUDMSG
show_hudmessage(0,"%L", LANG_PLAYER, "AUTO_RR_FOR_SEC",5)
client_cmd(0,"spk vox/five")
}
public restart_4s()
{
SETHUDMSG
show_hudmessage(0,"%L", LANG_PLAYER, "AUTO_RR_FOR_SEC",4)
client_cmd(0,"spk vox/four")
}
public restart_3s()
{
SETHUDMSG
show_hudmessage(0,"%L", LANG_PLAYER, "AUTO_RR_FOR_SEC",3)
client_cmd(0,"spk vox/three")
}
public restart_2s()
{
SETHUDMSG
show_hudmessage(0,"%L", LANG_PLAYER, "AUTO_RR_FOR_SEC",2)
client_cmd(0,"spk vox/two")
}
public restart_1s()
{
SETHUDMSG
show_hudmessage(0,"%L", LANG_PLAYER, "AUTO_RR_FOR_SEC",1)
client_cmd(0,"spk vox/one")
}

public restart_map()
{
if (AutoRR==true)
{
set_cvar_float("sv_restart",1.0)
knifeArena = false
unpause("ac","antirusher.amxx")
set_task(2.0,"hudmess_show",0)
SETHUDMSG
show_hudmessage(0, "%L", LANG_PLAYER, "AUTOMATIC")
client_cmd(0,"spk misc/trabka.wav")
}
}

public hudmess_show()
{
set_hudmessage(0, 100, 200, 0.05, 0.65, 2, 0.02, 6.0, 0.01, 0.1, 2)
show_hudmessage(0, "%L", LANG_PLAYER, "NICE_GAME")
}

public plugin_precache()
{
precache_sound( "misc/trabka.wav")
return PLUGIN_CONTINUE
}
Proszę was o przerobienie aby podczas rundy nożowej nie działał antyrasz
M_Antirusher.amxx
  
UWAGA !!!

W tej chwili widzisz tylko pierwszy post tego tematu. Aby zobaczyć więcej wiadomości lub napisać post musisz się zalogować lub zarejestrować.

 

Narzędzia wątku

Podobne wątki
Temat Forum
Nowe Strefy Raszu M_Antirusher 2.0
Pluginy, dodatki, AMX, AMXX
Muzyka po rundzie w CS 1.6
Problemy z Counter Strike 1.6 Non Steam
Strefy raszu na serwer TP
OffTopic - Counter Strike
Muzyka podczas rundy nożowej...
Pluginy, dodatki, AMX, AMXX
Wyłaczenie amxa
Pluginy, dodatki, AMX, AMXX
Najlepszy w rundzie.
Szukam pluginu AMX/AMXX
Nietypowa granica raszu.
Szukam pluginu AMX/AMXX
Połaczenie Klanów
Klan Counter Strike 1.6 Non Steam szuka graczy
Czerwona linia granica raszu za pomoc dam pomógł;)
Pluginy, dodatki, AMX, AMXX
Amx Mod By Xvak - wyłaczenie przeżucania
Pluginy, dodatki, AMX, AMXX

Zasady Postowania
Nie możesz zakładać nowych tematów
Nie możesz pisać wiadomości
Nie możesz dodawać załączników
Nie możesz edytować swoich postów

BB Code jest Włączony
EmotikonyWłączony
[IMG] kod jest Włączony
HTML kod jest Wyłączony
Trackbacks are Włączony
Pingbacks are Włączony
Refbacks are Wyłączony


X Przeglądasz forum jako gość, zarejestruj się aby uzyskać pełen dostęp do wiaderkowego stuff'u ganja

zalogowani nie widzą reklam


Powered by vBulletin ® =w= Edition
Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
SEO by vBSEO 3.2.0
Spolszczenie: vBHELP.pl - Polski Support vBulletin
Copyright © 2007-2008 Counter Strike wiaderko.com