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.
|
papkin
Rejestracja: 20.01.2008Aktualnie: Nieaktywny
Poza forum Ostatnio: 08.10.2014 11:25





Statystyki
- Grupa: Użytkownik
- Całość postów: 27
- Odwiedzin: 2 088
- Tytuł: Życzliwy
- Wiek: Wiek nie został ustalony
- Urodziny: Data urodzin nie została podana
-
Płeć
Nie podano
Kontakt
Narzędzia użytkownika
Znajomi
papkin nie posiada znajomych
Moje tematy
Zly recoil na serwerze.
06.06.2010 09:17
Co moze byc przyczyna zlego recoilu na serwerze?
Stworzenie pluginu.
19.03.2010 20:42
z gory dziekuje za pomoc
Lekka edycja kodu
16.01.2010 18:15
Chce aby banowalo uzywajac amxbans
#include <amxmod> // AMX Mod
#include <cstrike> // AMX Mod X 1.0 CS Module
#include <fun> // AMX Mod X 1.0 Fun Module
#include <amxmisc> // AMX/AMXX Misc
#define MAX_WORD_NUM 256
new wordfile[] = "addons/amxmodx/configs/wordlist.txt"
new words[MAX_WORD_NUM][32]
new wlen[MAX_WORD_NUM]
new wnum
new swearflag[33]
public handlesay(id,level,cid) {
new msg[192]
new i, b, s
read_args(msg,191)
for (i=0;i<wnum;++i)
if ((b=containi(msg,words[i]))!=-1) {
s = 1
}
if (!s) return PLUGIN_CONTINUE
new name[32]
get_user_name(id,name,31)
if (++swearflag[id]>= 3) {
client_print(0,print_chat,"[Wilczy Szaniec] %s zostal zbanowany za przeklinanie na 5 min.",name)
new bantag[32]
get_user_authid( id, bantag, 31 )
server_cmd( "banid 5 ^"%s^" kick;wait;writeid", bantag )
} else if(swearflag[id]< 3){
client_print(0,print_chat,"[Wilczy Szaniec] %s SLAP + GOTOWKA + -FRAG.",name)
client_print(0,print_chat,"[Wilczy Szaniec] Flagi: %i/3 = BAN 5 MIN",swearflag[id])
set_user_frags(id,get_user_frags(id) - 1)
cs_set_user_money(id,cs_get_user_money(id)-3000)
user_slap(id, 50)
}
return PLUGIN_HANDLED
}
public read_wordfile() {
new line, filename[64]
build_path(filename,63,wordfile)
if (!file_exists(filename)) return 0
while (wnum<MAX_WORD_NUM && read_file(filename,line++,words[wnum],31,wlen[wnum]))
if (words[wnum][0] != ';') wnum++
return wnum
}
public client_putinserver(id)
swearflag[id]=0
public plugin_init() {
register_plugin("auto *cenzura*","0.9.x","dra mod gracz")
register_clcmd("say","handlesay")
register_clcmd("say_team","handlesay")
read_wordfile()
return PLUGIN_CONTINUE
}
przerobka auto restart knives
12.09.2009 17:52
/* * 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",LEVEL_LEVEL," - 1 : ON | 0 : OFF") register_cvar("auto_rr_time","45") register_event("TextMsg","restart_time","a","2Game_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 }
chodzi o dodanie do kodu takiej rzeczy:
po zginieciu odradzu sie odradzasz.
dziekuje i pozdrawiam
konta neo problem
14.08.2009 11:56
dlaczego?
linux, intel
- AMXX.pl: Support AMX Mod X i SourceMod
- → Przeglądanie profilu: Tematy: papkin
- Regulamin