Witam mam serwer bb i wgrany plugin basebuilder65 ale ma on wiele bledow
Prosil bym o :
- Przerobienie wszystkich angielskich na polski [ oczywiscie nie wszystkich ale jak najiwiecej]
- I najwieksza prosba to naprawienie tego ze na dole ekranu powinno pisac Zycie : 100 . A zamiast tego pisze not found mdl czy cos w tym stylu , jest wiele takich bledow w hud i rzeczy ktore sie wyswietlaja w say np w say : hsfjhjfs found [nazwa nie dokladna] Wygrali Zombie . albo jak jest timer na srodku ekranu ile czasu do konca budowania pisze ml_notfound Timer : proszę by pisalo : Czas Budowania : 1.20 . i jak jest wbijanie na kampy by pisalo : Krycie sie : 45
- proszę by dodano gdy pisze zombie to tekst jest na czerwono a jak budowniczy to na niebiesko
- proszę o naprawienie wszystkich bledow jakie sa [takie ktore wychwycicie]
- proszę o dodanie tych klas :
// Classic Zombie Attributes
new const zclass1_name[] = { "Classic Zombie" }
new const zclass1_info[] = { "=Balanced=" }
new const zclass1_model[] = { "bb_classic" }
new const zclass1_clawmodel[] = { "v_bloodyhands" }
const zclass1_health = 3000
const zclass1_speed = 260
const Float:zclass1_gravity = 1.0
// Fast Zombie Attributes
new const zclass2_name[] = { "Fast Zombie" }
new const zclass2_info[] = { "HP-- Speed++" }
new const zclass2_model[] = { "bb_fast" }
new const zclass2_clawmodel[] = { "v_bloodyhands" }
const zclass2_health = 2000
const zclass2_speed = 300
const Float:zclass2_gravity = 1.0
// Jumper Zombie Attributes
new const zclass3_name[] = { "Jumper Zombie" }
new const zclass3_info[] = { "HP- Jump+" }
new const zclass3_model[] = { "bb_jumper" }
new const zclass3_clawmodel[] = { "v_bloodyhands" }
const zclass3_health = 2500
const zclass3_speed = 285
const Float:zclass3_gravity = 0.79
// Tanker Zombie Attributes
new const zclass4_name[] = { "Tanker Zombie" }
new const zclass4_info[] = { "HP++ Speed-" }
new const zclass4_model[] = { "bb_tanker" }
new const zclass4_clawmodel[] = { "v_bloodyhands" }
const zclass4_health = 4000
const zclass4_speed = 220
const Float:zclass4_gravity = 1.0
#define TANK_ARMOR 200
// Vip Zombie Attributes
new const zclass6_name[] = { "SUPER Zombie" }
new const zclass6_info[] = { "HP++ Speed++ Jump++"}
new const zclass6_model[] = { "nemesis" }
new const zclass6_clawmodel[] = { "v_bloodyhands" }
const zclass6_health = 5000
const zclass6_speed = 260
const Float:zclass6_gravity = 0.77
const zclass6_adminflags = ADMIN_LEVEL_H [czyli flaga t]
/*============================================================================*/
new g_zclass_tanker
// Zombie Classes MUST be registered on plugin_precache
public plugin_precache()
{
register_plugin("[BB] Default Zombie Classes", "6.5", "Tirant")
// Register all classes
bb_register_zombie_class(zclass1_name, zclass1_info, zclass1_model, zclass1_clawmodel, zclass1_health, zclass1_speed, zclass1_gravity)
bb_register_zombie_class(zclass2_name, zclass2_info, zclass2_model, zclass2_clawmodel, zclass2_health, zclass2_speed, zclass2_gravity)
bb_register_zombie_class(zclass3_name, zclass3_info, zclass3_model, zclass3_clawmodel, zclass3_health, zclass3_speed, zclass3_gravity)
g_zclass_tanker = bb_register_zombie_class(zclass4_name, zclass4_info, zclass4_model, zclass4_clawmodel, zclass4_health, zclass4_speed, zclass4_gravity)
bb_register_zombie_class(zclass6_name, zclass6_info, zclass6_model, zclass6_clawmodel, zclass6_health, zclass6_speed, zclass6_gravity, zclass6_adminflags)
}
#if defined TANK_ARMOR
public plugin_init()
{
RegisterHam(Ham_Spawn, "player", "ham_PlayerSpawn_Post", 1)
}
public ham_PlayerSpawn_Post(id)
{
if (!is_user_alive(id))
return ;
if (bb_is_user_zombie(id) && bb_get_user_zombie_class(id) == g_zclass_tanker)
{
give_item(id, "item_assaultsuit");
cs_set_user_armor(id, TANK_ARMOR, CS_ARMOR_VESTHELM);
}
}
#endif
proszę by klasy zombie byly po Polsku czyli : Zwykły Zombie , Opancerzony Zombie itd
Z góry dziękuję
Załączone pliki
Użytkownik SaQuaro edytował ten post 03.02.2015 17:21