2GOOD4U
2GOOD4U 1.6 Server's iP
cs.ko.tl:27015 Dust2
cs.ko.tl:27016 Aim
cs.ko.tl:27017 Awp
cs.ko.tl:27018 Italy2
cs.ko.tl:27019 5on5 #1

Join the forum, it's quick and easy

2GOOD4U
2GOOD4U 1.6 Server's iP
cs.ko.tl:27015 Dust2
cs.ko.tl:27016 Aim
cs.ko.tl:27017 Awp
cs.ko.tl:27018 Italy2
cs.ko.tl:27019 5on5 #1
2GOOD4U
Would you like to react to this message? Create an account in a few clicks or log in to continue.

Различни Zp Plugins,скинове,карти и др.

Go down

Нормална Различни Zp Plugins,скинове,карти и др.

Писане by hARDCORE Чет Яну 14, 2010 10:24 pm

Реших да ви споделя почти всички скинове и плугини за Zombie Mod да започнем със ZP плугини.

1.50% Nemesis vs.50% Survivor-горещ дуел между Ct(Само Survivors)vs.T(Само Nemesis)▼
Описание:
Това е един Zp plugin в който се развива горещ рунд между Ct(Само Survivors)vs.T(Само Nemesis)
Ето ви кода-
КОД: ИЗБЕРИ ЦЕЛИЯ КОД
#include <amxmodx>
#include <fakemeta>
#include <zombieplague>

new g_maxplayers, cvar_plaguenemhpmulti, cvar_plaguesurvhpmulti


public plugin_init()
{
// This addon makes Plague rounds be 50% nemesis and 50% survivors
// REQUIRES ZP version 4.3-beta1 or later
register_plugin("[ZP] 50-50 Plague Mode", "0.2", "MeRcyLeZZ")

g_maxplayers = get_maxplayers()
}

public plugin_cfg()
{
cvar_plaguenemhpmulti = get_cvar_pointer("zp_plague_nem_hp_multi")
cvar_plaguesurvhpmulti = get_cvar_pointer("zp_plague_surv_hp_multi")
}

public zp_round_started(gamemode)
{
// Plague mode only
if (gamemode != MODE_PLAGUE)
return;

static id
for (id = 1; id <= g_maxplayers; id++)
{
// Dead or already a nemesis/survivor
if (!is_user_alive(id) || zp_get_user_nemesis(id) || zp_get_user_survivor(id))
continue;

if (zp_get_user_zombie(id))
{
// Turn zombies into Nemesis
zp_make_user_nemesis(id)

// Apply nemesis health multiplier
set_pev(id, pev_health, float(pev(id, pev_health))*get_pcvar_float(cvar_plaguenemhpmulti))
}
else
{
// Turn humans into Survivors
zp_make_user_survivor(id)

// Apply survivor health multiplier
set_pev(id, pev_health, float(pev(id, pev_health))*get_pcvar_float(cvar_plaguesurvhpmulti))
}
}
}

Изтеглете плугина и скрипта от тук- [You must be registered and logged in to see this link.]
Мирър-
50vs50.rar
(3.24 KiB) 83 пъти


2.Free Armor-дава на всички играчи безплатна брона▼
Описание:
Това е един Zp plugin, който дава на всички играчи безплатна брона.
CVARS:
zp_armor = 200 - Колко кръв да е бронята
Ето ви линк към плугина(не намерих amxx,но поне намерих .sma можете да си го компилирате)- [You must be registered and logged in to see this link.]
Мирър-
free armor.rar
(1.15 KiB) 28 пъти


3.Anti Block-Можете да минавате през съотборниците си▼
Описание:
Това е един Zp plugin,който ви позволява да минавате през съотборниците си и така няма да могат да се блокирват входове и др. НАТИСКАТЕ "Е" ЗА ДА МИНЕТЕ ПРЕЗ ТЯХ
Ето ви плугина - [You must be registered and logged in to see this link.]
Мирър-
Anti Block.rar
(2.85 KiB) 36 пъти


4.Nemesis Bazooka-Дава базука на Немесиса▼
Описание:
Това е един Zp plugin,който дава базука на Немесиса
CVARS:
Няма.
Ето ви плугина- [You must be registered and logged in to see this link.] ... azooka.rar
Мирър- [You must be registered and logged in to see this link.] ... zooka.html

5.Infect Countdown-отброяване до инфекцията▼
Описание:
Това е един Zp plugin,който започва да отброява от 1 до 10 и във 10-тата секунда се превръща първото Зомби.
Ето ви плугина- [You must be registered and logged in to see this link.]
Мирър-
zp_server_addon_countdown.rar
(3.31 KiB) 99 пъти


6.Choose the weapon of the survivor-избирате си оръжие за сървайвър▼
Описание:
Това е един Zp plugin,в който като станете сървайвър можете да си изберете оръжие.
CVARS:
КОД: ИЗБЕРИ ЦЕЛИЯ КОД
zp_cws_enable - позволява/забранява плугина.
zp_cws_secondary - позволява/забранява менюто да избирате оръжие за втори път.

Ето ви плугина- [You must be registered and logged in to see this link.]
Мирър-
zp_choose_weapons_survivor.rar
(4.03 KiB) 54 пъти


7.Gas Nades-Газови гранати,взимащи кръв▼
Описание:
Това е един Zp plugin,когато пуснете газ граната тя е като Smokegranade,но ако зомбито менава през нея тя започва да му взима кръв.
CVARS:
КОД: ИЗБЕРИ ЦЕЛИЯ КОД
zp_gasnades 1 // 0/1 Не Позволява/Пазволява плугина
zp_gasdmg 70 // По колко демидж да прави на всеки кръг, 0 за да махнете демиджа(вижте zp_gascheck)
zp_gascheck 3 // Периода от секунди,в които взима кръв
zp_gasradius 180 // Радиус на мъглата(най-добре е 170 - 230)
zp_gasobeyFF 0 // 0/1 Да позволява ли гранатата да наранява съотборници
zp_gas_restore 0 // 0/1 Да въстановява ли HP(само ако zp_gasdmg > 0)
zp_gaslighting 1 // 0/1 Да позволи ли цвят (defualt 1)
zp_gaslighting_r : Red (default 255)
zp_gaslighting_g : Green (default 0)
zp_gaslighting_b : Blue (default 0)

Ето ви плугина- [You must be registered and logged in to see this link.]
Мирър- [You must be registered and logged in to see this link.] ... nades.html

8.Last human is survivor-Последният човек е Survivor▼
Описание:
Това е един Zp plugin,в който независимо какъвто и да е рундът,когато всички Ct бъдат избити и остане само 1,той автоматично се превръща в Survivor.
CVARS:
КОД: ИЗБЕРИ ЦЕЛИЯ КОД
zp_lasthuman_survivor "1" - Пуска/Изключва плугина.


Ето ви плугина - [You must be registered and logged in to see this link.]
Мирър- [You must be registered and logged in to see this link.] ... vivor.html

9.No fall damage for zombies-НЕ взима кръв на зомбито при падане▼
Описание:
Това е един Zp plugin,който когато някое зомби скочи от много високо няма да му вземе HP.
CVARS:
Няма.

Ето ви плугина - [You must be registered and logged in to see this link.] ... amage.html
Мирър- [You must be registered and logged in to see this link.] ... damage.rar

Очаквайте още много други ZP плугини!

1.Значи ето ви линк да си издърпате папка съдържаща следните карти:
zm_assault
zm_attack_house
zm_beach
zm_blocks
zm_boatescape
zm_dd
zm_die_hard_tn
zm_dust2
zm_dust2_new
zm_jambalaya_escape
zm_lila_panic
zm_snowbase
zm_toronto
zm_zombattack
zm_tower4
zm_DeneKa
zm_officeb2_new
zm_sand_new
zm_smallnightmare_new
zm_smoka1
zm_smoka2
zm_smoka3
zm_tower_new
zm_toxichouse_new
zm_alfresco_v2
zm_assault_shadow
zm_attack_house
zm_aztec_temple
zm_biodead_land
zm_brambor
zm_burgo
zm_cave
zm_clad
zm_crazy_tower
zm_dattack
zm_dd_v1
zm_ds_army_new
zm_infantry
zm_jampadracis
zm_militia
zm_play_for_fun_house
zm_toxic_house
zm_toxic_house2
zm_toxic_house3

Ето ви линка- [You must be registered and logged in to see this link.] ... trike.html
Мирър- [You must be registered and logged in to see this link.]

2.Сега ще ви дам и скинове.
1-вата папка е Half life Moustros.-За играта Half life
Тя се състои от:
agrunt▼

bullsquid▼

friendly▼

garg▼

isable▼

skeleton▼


Може да си свалите папката от тук- [You must be registered and logged in to see this link.] ... s.rar.html
Мирър- [You must be registered and logged in to see this link.] ... stros.html

2-рата папка е hands of zombies(ръце на зомбита)-За Counter-Strike 1.6
Тя се състои от:
hands nemesis by ecua▼

hands of zombies1▼

hands of zombies2▼

hands of zombies3▼

hands of zombies4▼

hands of zombies5▼

hands of zombies6▼


Може да си свалите папката от тук- [You must be registered and logged in to see this link.] ... mbies.html
Мирър- ТУК

3-тата папка е humans(хора) -За Counter-Strike 1.6
Тя се състои от:
Hunk▼

jill valente▼


marino▼

Solder umbrella▼

umbrella2▼


umbrella 3▼


Umbrella normal▼


Може да си свалите папката от тук- [You must be registered and logged in to see this link.]
Мирър- [You must be registered and logged in to see this link.] ... umans.html

4-тата папка е predators -За Counter-Strike 1.6
Тя се състои от:
depredador1▼

depredador2▼

depredador3▼

G-man▼


Може да си свалите папката от тук- [You must be registered and logged in to see this link.]
Мирър- [You must be registered and logged in to see this link.] ... ators.html

5-тата папка е skeletons(скелети) -За Counter-Strike 1.6
Тя се състои от:
arctic,guerilla,leet,terror▼


Може да си свалите папката от тук- [You must be registered and logged in to see this link.]
Мирър- [You must be registered and logged in to see this link.] ... etons.html

6-тата папка е zombies(Зомбита) -За Counter-Strike 1.6
Тя се състои от:
nemesis
nemesis by ecua
nemesis by ecua 2
zombie_burned
zombie_cubano
zombie_fat
zombie_gign
zombie_guerrilla
zombie_headcrab
zombie_headcrab2
zombie_moustro
zombie_rapido
zombie_resident
zombie_resident2
zombie_scientist
zombie_security
zombie_soldier
zombie_source
zombie_swarm
zombie_terror
zombie_terror2
zombie_traje
zombie_work
Няма да ви изкарвам снимки,защото са много.Снимки има в папките на зомбитата.

Може да си свалите папката от тук- [You must be registered and logged in to see this link.]
Мирър- [You must be registered and logged in to see this link.] ... mbies.html

7-та папка е Left 4 Dead(Хора) -За Counter-Strike 1.6
Тя се състои от:
1.Bill▼

2.Francis▼

3.Louis▼

4.Zoey▼


Може да си свалите папката от тук- [You must be registered and logged in to see this link.] ... ot_l4d.rar
Мирър- [You must be registered and logged in to see this link.] ... t_l4d.html

8-та папка е Left 4 Dead(Ръце) -За Counter-Strike 1.6
Тя се състои от:
1.l4d_bommer_hands▼

2.l4d_hunter_hands▼

3.l4d_smoker_hands▼

4.l4d_witch_hands▼


Може да си свалите папката от тук- [You must be registered and logged in to see this link.]
Мирър- [You must be registered and logged in to see this link.] ... hands.html

9-тата папка е Left 4 Dead(Зомбита) -За Counter-Strike 1.6
Тя се състои от:
1.Bommer▼

2.Hunter▼

3.Smoker▼

4.Witch▼


Може да си свалите папката от тук- [You must be registered and logged in to see this link.]
Мирър- [You must be registered and logged in to see this link.] ... mbies.html

10-тата папка е Left 4 Dead(Звуци) -За Counter-Strike 1.6
Тя се състои от папките:
1.l4d_win▼
Тя съдържа 6 звукови файла,които могат да се използват на края на рунда,когато зомбитата спечелят.
2.l4d_die▼
Тя съдържа 3 звукови файла,които могат да се използват,когато някое зомби умре.
3.l4d_infect▼
Тя съдържа 5 звукови файла,които могат да се използват,когато някой човек бъде инфектиран в зомби.
4.l4d_fall▼
Тя съдържа 2 звукови файла,които могат да се използват,когато някоe зомби падне от високо.
5.l4d_pain▼
Тя съдържа 5 звукови файла,които могат да се използват,когато някоe зомби губи кръв.
6.l4d_miss_slash▼
Тя съдържа 2 звукови файла,които могат да се използват,когато някоe зомби зомби пропусне удар с ръка.

Може да си свалите папката от тук- [You must be registered and logged in to see this link.]
Мирър- [You must be registered and logged in to see this link.] ... ounds.html

11-тата папка е Interesting Zombies -За Counter-Strike 1.6
Тя се състои от:
1.Tirant▼

2.Spawn▼

3.Drowned▼

4.HeadCrab▼

5.Alien_b▼

6.Alien▼

7.Jump▼

8.Ghost▼

9.Nemesis▼


Може да си свалите папката от тук- [You must be registered and logged in to see this link.] ... ombies.rar
Мирър- [You must be registered and logged in to see this link.] ... mbies.html

12-тата папка е More zombie hands -За Counter-Strike 1.6
Тя се състои от:
1.v_knife_mummy▼

2.v_l4d_ubcs▼

3.v_knife_drowned▼

4.v_knife_jump▼

5.boomy_hands▼

6.alienclaws▼

7.v_big_hands▼

8.v_bloody_hands▼


Може да си свалите папката от тук- [You must be registered and logged in to see this link.]
Мирър- [You must be registered and logged in to see this link.] ... hands.html
hARDCORE
hARDCORE
Power user

Male Zodiac : Sagittarius Брой мнения : 297
Отсенка : 1337
Rep : 10
Регистриран на : 13.01.2010
Age : 27
Местожителство : PLOVDIV

точки
точки:
Различни Zp Plugins,скинове,карти и др. Left_bar_bleue652/1000Различни Zp Plugins,скинове,карти и др. Empty_bar_bleue  (652/1000)

https://bginter.bulgarianforum.net

Върнете се в началото Go down

Върнете се в началото

- Similar topics

 
Права за този форум:
Не Можете да отговаряте на темите