Raised This Month: $51 Target: $400
 12% 

Help


Post New Thread Reply   
 
Thread Tools Display Modes
Author Message
Merry Christmas
Member
Join Date: Oct 2010
Old 11-05-2010 , 16:26   Help
Reply With Quote #1

Sorry guys for stupid question, but how i can delete Zombie Class Leech zombie??
Merry Christmas is offline
felix123
Member
Join Date: Nov 2010
Old 11-29-2010 , 17:14   Re: Help
Reply With Quote #2

umm go to ur plugins.ini and delete the .amxx that u write into

then go into plugins-zplague.cfg then delete the .amxx plugin in there
felix123 is offline
abdul-rehman
Veteran Member
Join Date: Jan 2010
Location: Khi, Pakistan
Old 11-30-2010 , 02:35   Re: Help
Reply With Quote #3

Quote:
Originally Posted by felix123 View Post
umm go to ur plugins.ini and delete the .amxx that u write into

then go into plugins-zplague.cfg then delete the .amxx plugin in there
Leech zombie is not a seprate plugin!

BTW you can remove the line where it gett registered in the zp_zclasses.sma file
__________________

My Plugins For ZP

Inactive due to College and Studies
abdul-rehman is offline
Send a message via Yahoo to abdul-rehman Send a message via Skype™ to abdul-rehman
.Dare Devil.
Veteran Member
Join Date: Sep 2010
Old 11-30-2010 , 04:40   Re: Help
Reply With Quote #4

Go To The amxmodx/scripting and find zp_zclasses40.sma , Open It And you see this codes

PHP Code:
/*================================================================================
 
 -----------------------------------
 -*- [ZP] Default Zombie Classes -*-
 -----------------------------------
 
 ~~~~~~~~~~~~~~~
 - Description -
 ~~~~~~~~~~~~~~~
 
 This plugin adds the default zombie classes to Zombie Plague.
 Feel free to modify their attributes to your liking.
 
 Note: If zombie classes are disabled, the first registered class
 will be used for all players (by default, Classic Zombie).
 
================================================================================*/
#include <amxmodx>
#include <fakemeta>
#include <zombieplague>
/*================================================================================
 [Plugin Customization]
=================================================================================*/
// Classic Zombie Attributes
new const zclass1_name[] = { "Classic Zombie" }
new const 
zclass1_info[] = { "=Balanced=" }
new const 
zclass1_model[] = { "zombie_source" }
new const 
zclass1_clawmodel[] = { "v_knife_zombie.mdl" }
const 
zclass1_health 1800
const zclass1_speed 190
const Float:zclass1_gravity 1.0
const Float:zclass1_knockback 1.0
// Raptor Zombie Attributes
new const zclass2_name[] = { "Raptor Zombie" }
new const 
zclass2_info[] = { "HP-- Speed++ Knockback++" }
new const 
zclass2_model[] = { "zombie_source" }
new const 
zclass2_clawmodel[] = { "v_knife_zombie.mdl" }
const 
zclass2_health 900
const zclass2_speed 225
const Float:zclass2_gravity 1.0
const Float:zclass2_knockback 1.5
// Poison Zombie Attributes
new const zclass3_name[] = { "Poison Zombie" }
new const 
zclass3_info[] = { "HP- Jump+ Knockback+" }
new const 
zclass3_model[] = { "zombie_source" }
new const 
zclass3_clawmodel[] = { "v_knife_zombie.mdl" }
const 
zclass3_health 1400
const zclass3_speed 190
const Float:zclass3_gravity 0.75
const Float:zclass3_knockback 1.25
// Big Zombie Attributes
new const zclass4_name[] = { "Big Zombie" }
new const 
zclass4_info[] = { "HP++ Speed- Knockback--" }
new const 
zclass4_model[] = { "zombie_source" }
new const 
zclass4_clawmodel[] = { "v_knife_zombie.mdl" }
const 
zclass4_health 2700
const zclass4_speed 155
const Float:zclass4_gravity 1.0
const Float:zclass4_knockback 0.5
// Leech Zombie Attributes
new const zclass5_name[] = { "Leech Zombie" }
new const 
zclass5_info[] = { "HP- Knockback+ Leech++" }
new const 
zclass5_model[] = { "zombie_source" }
new const 
zclass5_clawmodel[] = { "v_knife_zombie.mdl" }
const 
zclass5_health 1300
const zclass5_speed 190
const Float:zclass5_gravity 1.0
const Float:zclass5_knockback 1.25
const zclass5_infecthp 200 // extra hp for infections
/*============================================================================*/
// Class IDs
new g_zclass_leech
// Zombie Classes MUST be registered on plugin_precache
public plugin_precache()
{
 
register_plugin("[ZP] Default Zombie Classes""4.3""MeRcyLeZZ")
 
 
// Register all classes
 
zp_register_zombie_class(zclass1_namezclass1_infozclass1_modelzclass1_clawmodelzclass1_healthzclass1_speedzclass1_gravityzclass1_knockback)
 
zp_register_zombie_class(zclass2_namezclass2_infozclass2_modelzclass2_clawmodelzclass2_healthzclass2_speedzclass2_gravityzclass2_knockback)
 
zp_register_zombie_class(zclass3_namezclass3_infozclass3_modelzclass3_clawmodelzclass3_healthzclass3_speedzclass3_gravityzclass3_knockback)
 
zp_register_zombie_class(zclass4_namezclass4_infozclass4_modelzclass4_clawmodelzclass4_healthzclass4_speedzclass4_gravityzclass4_knockback)
 
g_zclass_leech zp_register_zombie_class(zclass5_namezclass5_infozclass5_modelzclass5_clawmodelzclass5_healthzclass5_speedzclass5_gravityzclass5_knockback)
}
// User Infected forward
public zp_user_infected_post(idinfector)
{
 
// If attacker is a leech zombie, gets extra hp
 
if (zp_get_user_zombie_class(infector) == g_zclass_leech)
  
set_pev(infectorpev_healthfloat(pev(infectorpev_health) + zclass5_infecthp))

See zclass5 is a leech zombie.
And This Is Revomed Leech Zombie code :

PHP Code:
/*================================================================================
 
 -----------------------------------
 -*- [ZP] Default Zombie Classes -*-
 -----------------------------------
 
 ~~~~~~~~~~~~~~~
 - Description -
 ~~~~~~~~~~~~~~~
 
 This plugin adds the default zombie classes to Zombie Plague.
 Feel free to modify their attributes to your liking.
 
 Note: If zombie classes are disabled, the first registered class
 will be used for all players (by default, Classic Zombie).
 
================================================================================*/
#include <amxmodx>
#include <fakemeta>
#include <zombieplague>
/*================================================================================
 [Plugin Customization]
=================================================================================*/
// Classic Zombie Attributes
new const zclass1_name[] = { "Classic Zombie" }
new const 
zclass1_info[] = { "=Balanced=" }
new const 
zclass1_model[] = { "zombie_source" }
new const 
zclass1_clawmodel[] = { "v_knife_zombie.mdl" }
const 
zclass1_health 1800
const zclass1_speed 190
const Float:zclass1_gravity 1.0
const Float:zclass1_knockback 1.0
// Raptor Zombie Attributes
new const zclass2_name[] = { "Raptor Zombie" }
new const 
zclass2_info[] = { "HP-- Speed++ Knockback++" }
new const 
zclass2_model[] = { "zombie_source" }
new const 
zclass2_clawmodel[] = { "v_knife_zombie.mdl" }
const 
zclass2_health 900
const zclass2_speed 225
const Float:zclass2_gravity 1.0
const Float:zclass2_knockback 1.5
// Poison Zombie Attributes
new const zclass3_name[] = { "Poison Zombie" }
new const 
zclass3_info[] = { "HP- Jump+ Knockback+" }
new const 
zclass3_model[] = { "zombie_source" }
new const 
zclass3_clawmodel[] = { "v_knife_zombie.mdl" }
const 
zclass3_health 1400
const zclass3_speed 190
const Float:zclass3_gravity 0.75
const Float:zclass3_knockback 1.25
// Big Zombie Attributes
new const zclass4_name[] = { "Big Zombie" }
new const 
zclass4_info[] = { "HP++ Speed- Knockback--" }
new const 
zclass4_model[] = { "zombie_source" }
new const 
zclass4_clawmodel[] = { "v_knife_zombie.mdl" }
const 
zclass4_health 2700
const zclass4_speed 155
const Float:zclass4_gravity 1.0
const Float:zclass4_knockback 0.5
/*============================================================================*/
// Class IDs
// Zombie Classes MUST be registered on plugin_precache
public plugin_precache()
{
 
register_plugin("[ZP] Default Zombie Classes""4.3""MeRcyLeZZ")
 
 
// Register all classes
 
zp_register_zombie_class(zclass1_namezclass1_infozclass1_modelzclass1_clawmodelzclass1_healthzclass1_speedzclass1_gravityzclass1_knockback)
 
zp_register_zombie_class(zclass2_namezclass2_infozclass2_modelzclass2_clawmodelzclass2_healthzclass2_speedzclass2_gravityzclass2_knockback)
 
zp_register_zombie_class(zclass3_namezclass3_infozclass3_modelzclass3_clawmodelzclass3_healthzclass3_speedzclass3_gravityzclass3_knockback)
 
zp_register_zombie_class(zclass4_namezclass4_infozclass4_modelzclass4_clawmodelzclass4_healthzclass4_speedzclass4_gravityzclass4_knockback)

Copy This Code And Paste It Your zp_zclasses40.sma Save And Compile.
When Its Done Go To The amxmodx/scripting/compiled And Find There zp_zclasses40.amxx , now go to amxmodx/plugins and paste it here .
.Dare Devil. is offline
Merry Christmas
Member
Join Date: Oct 2010
Old 11-30-2010 , 09:13   Re: Help
Reply With Quote #5

Okay..Thanks all ))
Merry Christmas is offline
Reply



Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT -4. The time now is 09:11.


Powered by vBulletin®
Copyright ©2000 - 2024, vBulletin Solutions, Inc.
Theme made by Freecode