Mod |
IP |
Status |
Protokół |
Połącz |
4Fun / BF2 Mod |
- |
- |
S/NS |
|
Only DD2 |
- |
- |
S/NS |
|
COD Mod |
- |
- |
S/NS |
|
Zombie Mod |
- |
- |
S/NS |
|
TeamSpeak 3 |
- |
- |
TS 3 |
|
Autor |
Wiadomość |
Temat: NOWE KLASY NA SLOW MODZIE |
BuShidO
Odpowiedzi: 5
Wyświetleń: 3394
|
Forum: Kosz Wysłany: 14-05-12, 08:09 Temat: NOWE KLASY NA SLOW MODZIE |
Chciabym zaproponować dodanie na Slow Expie paru klas takich jak umarly ma AKA 2 duszki i deagla oraz tez RastaMana ma M4 1/20 na natychmiastowe jak coś to piszcie.
RastaMan do niego mam tego pluga
#include <amxmodx>
#include <amxmisc>
#include <codmod_frakcje>
#include <hamsandwich>
#include <cstrike>
new const nazwa[] = "Rasta Man";
new const opis[] = "1/20 na natychmiastowe zabice ";
new const bronie = (1<<CSW_USP)|(1<<CSW_M4A1);
new const zdrowie = 15;
new const kondycja = 10;
new const inteligencja = 0;
new const wytrzymalosc = 0;
new const frakcja[] = "Darmowa";
new ma_klase[33];
public plugin_init()
{
register_plugin(nazwa, "1.0", "amxx.pl");
cod_register_class(nazwa, opis, bronie, zdrowie, kondycja, inteligencja, wytrzymalosc, frakcja);
RegisterHam(Ham_TakeDamage, "player", "fwTakeDamage_JedenZ");
}
public cod_class_enabled(id)
{
ma_klase[id] = true;
}
public cod_class_disabled(id)
{
ma_klase[id] = false;
}
public fwTakeDamage_JedenZ(this, idInf, idAtt, Float:fDmg, dmgBits){
if(!is_user_alive(idAtt) || !ma_klase[idAtt] || !(dmgBits & (1<<1) ) || random_num(1, 20) != 1 )
return HAM_IGNORED;
cs_set_user_armor(this, 0, CS_ARMOR_NONE);
SetHamParamFloat(4, float(get_user_health(this) + 1));
return HAM_HANDLED;
} |
|
|