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.
|
forma
Rejestracja: 16.12.2010Aktualnie: Nieaktywny
Poza forum Ostatnio: 02.04.2015 09:47





Statystyki
- Grupa: Power User
- Całość postów: 487
- Odwiedzin: 11 540
- Tytuł: Godlike
- Wiek: Wiek nie został ustalony
- Urodziny: Data urodzin nie została podana
-
Imię
Jakub
-
Płeć
Mężczyzna
-
Lokalizacja
Piła
#397637 VIP na PaintBall
Napisane przez forma
w 15.04.2012 19:04
#397633 zakaz skracania deathrun
Napisane przez forma
w 15.04.2012 18:57
#397630 [ROZWIĄZANE] plugin do map
Napisane przez forma
w 15.04.2012 18:55
#388106 Plugin Gongu na komendę
Napisane przez forma
w 29.03.2012 20:13
/* Plugin generated by AMXX-Studio */
#include <amxmodx>
#include <amxmisc>
#define PLUGIN "New Plug-In"
#define VERSION "1.0"
#define AUTHOR "author"
new const gong[] = "misc/gong123.wav" // sciezka
public plugin_init() {
register_plugin(PLUGIN, VERSION, AUTHOR)
register_clcmd("say /gong", "gong1");
}
public plugin_precache()
{
precache_sound(gong)
}
public gong1 (id)
{
if(is_user_connected(id) && get_user_team(id) == 2)
{
client_cmd(0, "spk %s", gong)
}
}
Coś takiego może

#387251 [ROZWIĄZANE] Automatic Knife Duel
Napisane przez forma
w 27.03.2012 22:10
Załączone pliki
-
Automaticknifeduel.sma 10,02 KB 171 Ilość pobrań
Automaticknifeduel.amxx
#383427 [ROZWIĄZANE] Anty rash
Napisane przez forma
w 19.03.2012 19:22
#383006 Plugin na respawn cos ala dm
Napisane przez forma
w 18.03.2012 18:50
#383003 Szukam plugina na Ultra kill i itp po polsku
Napisane przez forma
w 18.03.2012 18:49
#382940 [ROZWIĄZANE] za killa +5hp
Napisane przez forma
w 18.03.2012 16:35
#include <amxmodx>
#include <amxmisc>
#include <cstrike>
#include <fun>
#define PLUGIN "New Plug-In"
#define VERSION "1.0"
#define AUTHOR "author"
new health_add
new health_hs_add
new health_max
new nKiller
new nKiller_hp
new nHp_add
new nHp_max
public plugin_init() {
register_plugin(PLUGIN, VERSION, AUTHOR)
register_event("DeathMsg", "hook_death", "a", "1>0")
health_add = register_cvar("amx_vip_hp", "5")
health_hs_add = register_cvar("amx_vip_hp_hs", "15")
health_max = register_cvar("amx_vip_max_hp", "100")
}
public hook_death()
{
// Killer id
nKiller = read_data(1)
if ( (read_data(3) == 1) && (read_data(5) == 0) )
{
nHp_add = get_pcvar_num (health_hs_add)
}
else
nHp_add = get_pcvar_num (health_add)
nHp_max = get_pcvar_num (health_max)
// Updating Killer HP
nKiller_hp = get_user_health(nKiller)
nKiller_hp += nHp_add
// Maximum HP check
if (nKiller_hp > nHp_max) nKiller_hp = nHp_max
set_user_health(nKiller, nKiller_hp)
// Hud message "Healed +15/+30 hp"
set_hudmessage(0, 255, 0, -1.0, 0.15, 0, 1.0, 1.0, 0.1, 0.1, -1)
show_hudmessage(nKiller, "Zycie +%d hp", nHp_add)
}

amx_vip_hp // ile hp za zabicie amx_vip_hp_hs // ile hp za zabicie hs amx_vip_max_hp // ile maxx hp moze miec gracz.
#382844 [ROZWIĄZANE] Plugin na interp
Napisane przez forma
w 18.03.2012 14:00
/* Plugin generated by AMXX-Studio */
#include <amxmodx>
#include <amxmisc>
#define PLUGIN "New Plug-In"
#define VERSION "1.0"
#define AUTHOR "author"
public plugin_init() {
register_plugin(PLUGIN, VERSION, AUTHOR)
set_task(5.0, "sprawdz",0,_,_,"b");
}
public sprawdz()
{
for(new id=1;id<33;id++)
{
client_cmd( id , "rate 25000" )
client_cmd( id , "cl_cmdrate 101" )
client_cmd( id , "cl_updaterate 101" )
client_cmd( id , "ex_interp 0.01" )
}
}
Trudno jest pomyśleć ? i zamienić 30.0 na 5.0
#382840 /respawn lub /spawn
Napisane przez forma
w 18.03.2012 13:58
/* Plugin generated by AMXX-Studio */
#include <amxmodx>
#include <amxmisc>
#include <hamsandwich>
#define PLUGIN "New Plug-In"
#define VERSION "1.0"
#define AUTHOR "author"
public plugin_init() {
register_plugin(PLUGIN, VERSION, AUTHOR)
register_clcmd("say /respawn", "ozyw");
register_clcmd("say spawn", "ozyw");
}
public ozyw (id)
{
if(!is_user_alive(id))
{
ExecuteHamB(Ham_CS_RoundRespawn, id);
}
}
auto
#include <amxmodx>
#include <hamsandwich>
#define PLUGIN "Auto Respawn"
#define AUTHOR "hiroshima"
#define VERSION "1.0"
public plugin_init()
{
register_plugin(PLUGIN, VERSION, AUTHOR);
RegisterHam(Ham_Killed, "player","Killed", 1);
}
public Killed(id)
set_task(3.0, "Respawn", id);
public Respawn(id)
ExecuteHamB(Ham_CS_RoundRespawn, id);
#382814 [ROZWIĄZANE] Plugin na interp
Napisane przez forma
w 18.03.2012 13:02
#382617 Rangi na serwer
Napisane przez forma
w 18.03.2012 00:41
#382589 [ROZWIĄZANE] Witam szukam paczki PaintBall
Napisane przez forma
w 17.03.2012 23:45
http://forums.allied...ad.php?p=695730
http://forums.allied...ead.php?t=65201
Mody nie paczki
ps. idzie pobrać.
#382549 Szukam pluginu specinfo
Napisane przez forma
w 17.03.2012 22:41
- AMXX.pl: Support AMX Mod X i SourceMod
- → Przeglądanie profilu: Reputacja: forma
- Regulamin