Skocz do zawartości

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.
  • Rozpoczynaj nowe tematy i odpowiedaj na inne
  • Zapisz się do tematów i for, aby otrzymywać automatyczne uaktualnienia
  • Dodawaj wydarzenia do kalendarza społecznościowego
  • Stwórz swój własny profil i zdobywaj nowych znajomych
  • Zdobywaj nowe doświadczenia

Dołączona grafika Dołączona grafika

Guest Message by DevFuse
 

TheRock - zdjęcie

TheRock

Rejestracja: 04.03.2012
Aktualnie: Nieaktywny
Poza forum Ostatnio: 01.03.2016 16:35
*****

Moje posty

W temacie: Wgrywanie stylu PHP By Przemo

03.07.2013 14:53

do folderu templates 

W temacie: Prośba o klasę Tajniak, Famaster i Zwinny żołnierz

29.06.2013 15:05

#include <amxmodx>
#include <amxmisc>
#include <codmod>
#include <hamsandwich>
#include <cstrike>
#include <ColorChat>
 
#define DMG_BULLET (1<<1)
        
new const nazwa[]   = "Famas-ter";
new const opis[]    = "10 pkt = 1 dmg więcej z Famasa";
new const bronie    = (1<<CSW_FAMAS);
new const zdrowie   = 20;
new const kondycja  = 5;
new const inteligencja = 0;
new const wytrzymalosc = 30;
    
new ma_klase[33];
 
public plugin_init()
{
register_plugin(nazwa, "1.0", "amxx.pl");
 
cod_register_class(nazwa, opis, bronie, zdrowie, kondycja, inteligencja, wytrzymalosc);
   
RegisterHam(Ham_TakeDamage, "player", "TakeDamage");
 
}
 
public cod_class_enabled(id)
{
ma_klase[id] = true;
 
}
 
public cod_class_disabled(id)
{
ma_klase[id] = false;
 
}
 
public TakeDamage(this, idinflictor, idattacker, Float:damage, damagebits)
{
if(!is_user_connected(idattacker))
return HAM_IGNORED;
 
if(!ma_klase[idattacker])
return HAM_IGNORED;
 
if(get_user_team(this) != get_user_team(idattacker) && get_user_weapon(idattacker) == CSW_FAMAS && damagebits & DMG_BULLET)
cod_inflict_damage(idattacker, this, 0.0, 0.55, idinflictor, damagebits);
 
return HAM_IGNORED;
}
 
 

W temacie: [GunXPMod] say /bronie

29.06.2013 14:42

http://amxx.pl/topic...ti/#entry536547

W temacie: Darmowy noktowizor dla kazdego

06.04.2013 21:47


#include <amxmodx>
#include <hamsandwich>
#include <cstrike>

#define PLUGIN_NAME "Free Defuserkit"
#define PLUGIN_VERSION "1.1."
#define PLUGIN_AUTHOR "tuty"

#pragma semicolon 1

new gEnableDefusers;
new gDefuseColor;

public plugin_init()
{
register_plugin( PLUGIN_NAME, PLUGIN_VERSION, PLUGIN_AUTHOR );
RegisterHam( Ham_Spawn, "player", "Bacon_Spawn", 1 );
gEnableDefusers = register_cvar( "free_defuser", "1" );
gDefuseColor = register_cvar( "free_defuser_color", "0 160 0" );
}
public Bacon_Spawn( id )
{
if( is_user_alive( id ) && get_pcvar_num( gEnableDefusers ) && get_user_team( id ) == 2 && !cs_get_user_defuse( id ) ){
new color[ 12 ], rgb[ 3 ][ 4 ], r, g, b;
get_pcvar_string( gDefuseColor, color, charsmax( color ) );
parse( color, rgb[ 0 ], 3 , rgb[ 1 ], 3 , rgb[ 2 ], 3 );

r = clamp( str_to_num( rgb[ 0 ] ) , 0, 255 );
g = clamp( str_to_num( rgb[ 1 ] ) , 0, 255 );
b = clamp( str_to_num( rgb[ 2 ] ) , 0, 255 );

cs_set_user_defuse( id, 1, r, g, b );
}
if( is_user_alive( id )){
cs_set_user_nvg (id,1)
}
return HAM_IGNORED;
}

W temacie: Problem z pluginem cod_adminmenu

01.04.2013 10:26

Łap