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

Biohazard v2.00 Beta 3b (Zombie Mod)


Post New Thread Reply   
 
Thread Tools Display Modes
eforie
BANNED
Join Date: Dec 2008
Location: Romania
Old 05-21-2009 , 17:52   Biohazard Zombie No crosshair
Reply With Quote #3211

PHP Code:
/* Plugin generated by AMXX-Studio */
#include <amxmodx>
#include <amxmisc>
#include <biohazard>
#define PLUGIN "No crosshair for zombies"
#define VERSION "1.0"
#define AUTHOR "Sn!ff3r"
new HideWeapon
public plugin_init() {
register_plugin(PLUGINVERSIONAUTHOR
 
register_event("CurWeapon""CurWeapon""be""1!0","2=29")
HideWeapon get_user_msgid("HideWeapon")
}
public 
CurWeapon(id
{
if(
is_user_zombie(id))
{
message_begin(MSG_ONE_UNRELIABLEHideWeapon_id)
write_byte(1<<6)
message_end()
}

I just edited the original plugin from Zp (Zombie Plague) to work with Biohazard.

If you have problems with your compiler try my compiler (compiler.rar)

Original Plugin
http://forums.alliedmods.net/showthread.php?t=91842
Attached Files
File Type: sma Get Plugin or Get Source (bio_no_crosshair.sma - 1052 views - 553 Bytes)
File Type: rar compiler.rar (552.7 KB, 399 views)

Last edited by eforie; 05-21-2009 at 17:57.
eforie is offline
Send a message via Yahoo to eforie Send a message via Skype™ to eforie
eforie
BANNED
Join Date: Dec 2008
Location: Romania
Old 05-21-2009 , 18:19   [Biohazard] Low HP Heartbeat edited by me
Reply With Quote #3212

PHP Code:
/*================================================================================
 
---------------------------------
-*- [Biohazard] Low HP Heartbeat 1.1 -*-
---------------------------------
 
~~~~~~~~~~~~~~~
- Description -
~~~~~~~~~~~~~~~
 
This plugin plays a heartbeat sound on humans when their health
is under certain amount.
 
~~~~~~~~~
- CVARS -
~~~~~~~~~
 
* bio_heartbeat_hp <50> - Heartbeats start when HP is lower than this
 
~~~~~~~~~~~~~~
- Credits to -
~~~~~~~~~~~~~~
 
* ConnorMcLeod, AlexBreems: for the original plugin
 
================================================================================*/
#include <amxmodx>
#include <biohazard>
/*================================================================================
[Plugin Customization]
=================================================================================*/
// Sounds
new const g_heartbeat[] = "player/heartbeat1.wav"
/*============================================================================*/
new cvar_heartbeathp
public plugin_precache()
{
precache_sound(g_heartbeat)
}
public 
plugin_init()
{
register_plugin("[Biohazard] Low HP Heartbeat""1.1""ConnorMcLeod/MeRcyLeZZ")
 
register_event("Damage""event_damage""be""2>0")
register_event("DeathMsg""event_deathmsg""a")
register_event("ResetHUD""event_resethud""be")
register_event("Spectator""event_spectator""a")
 
cvar_heartbeathp register_cvar("bio_heartbeat_hp""50")
}
public 
event_damage(id)
{
if (
get_user_health(id) > get_pcvar_num(cvar_heartbeathp) || is_user_zombie(id))
return;
 
// * Replaced with emit_sound so players near us can hear it too *
//client_cmd(id, "spk %s", g_heartbeat)
//emit_sound(id, CHAN_STATIC, g_heartbeat, 0.0, 0.0, SND_STOP, PITCH_NORM)
 
emit_sound(idCHAN_AUTOg_heartbeat1.0ATTN_NORM0PITCH_NORM)
}
public 
event_deathmsg()
{
emit_sound(read_data(2), CHAN_AUTOg_heartbeat1.0ATTN_NORMSND_STOPPITCH_NORM)
}
public 
event_resethud(id)
{
emit_sound(idCHAN_AUTOg_heartbeat1.0ATTN_NORMSND_STOPPITCH_NORM)
}
public 
event_spectator()
{
emit_sound(read_data(1), CHAN_AUTOg_heartbeat1.0ATTN_NORMSND_STOPPITCH_NORM)
}
public 
is_user_infected(idinfector)
{
emit_sound(idCHAN_AUTOg_heartbeat1.0ATTN_NORMSND_STOPPITCH_NORM)

I edited this plugin from Zp (Zombie Plague) to work with Biohazard Mod
So,when you have under 50 Hp you will hear a beat.
bio_heartbeat_hp <50> - Heartbeats start when HP is lower than this

If you don`t have the sound
Download heartbeat1.wav and put on sound/player/
You prefer another beat sound ?Change it from .sma
new const g_heartbeat[] = "player/heartbeat1.wav"

If you have problems with your compiler ,try my compiler (is upper)
Original Plugin
http://forums.alliedmods.net/showpos...postcount=1299
Attached Files
File Type: sma Get Plugin or Get Source (bio_heartbeat.sma - 900 views - 2.4 KB)
File Type: rar heartbeat1.rar (26.7 KB, 343 views)
eforie is offline
Send a message via Yahoo to eforie Send a message via Skype™ to eforie
ID12345
Member
Join Date: May 2009
Location: Infront of the computer
Old 05-23-2009 , 03:08   Re: Biohazard v2.00 Beta 3b (Zombie Mod)
Reply With Quote #3213

whats the diff between zombie plague and biohazard?
pls answer before i download this
ID12345 is offline
Send a message via MSN to ID12345 Send a message via Yahoo to ID12345
5c0r-|3i0
Veteran Member
Join Date: Nov 2008
Location: Việt Nam
Old 05-23-2009 , 03:23   Re: Biohazard v2.00 Beta 3b (Zombie Mod)
Reply With Quote #3214

Oh my god...Gladly that someone still interest in Biohazard ^^!.
@eforie:I've saw that you like this mod...but
1)For the heartbeat.sma...
PHP Code:
public is_user_infected(idinfector)
{
emit_sound(idCHAN_AUTOg_heartbeat1.0ATTN_NORMSND_STOPPITCH_NORM)

is_user_infected should be... event_infect (That forward is in
biohazard.inc version 2.00....)

2)For the nocrosshair:...
PHP Code:
if(is_user_zombie(id)) 
Did you check that user is alive ??
Sorry if I was wrong...

@ID12345:
I don't know how to say it... U like action and horror...I think that Biohazard is da best . If u interest in this mod..Wait for Cheap_Suit to update ...
For Fun and more stuffs....That makes client to download for days...Zombie Plague ....
5c0r-|3i0 is offline
Cheap_Suit
Veteran Member
Join Date: May 2004
Old 05-23-2009 , 04:02   Re: Biohazard v2.00 Beta 3b (Zombie Mod)
Reply With Quote #3215

I'll be able to continue updating as soon as I get a new CPU cooling fan because my current one is not working right now. Thank you for your support.
__________________
HDD fried, failed to backup files. Sorry folks, just don't have free time anymore. This is goodbye.
Cheap_Suit is offline
eforie
BANNED
Join Date: Dec 2008
Location: Romania
Old 05-23-2009 , 05:36   Re: Biohazard v2.00 Beta 3b (Zombie Mod)
Reply With Quote #3216

1.search forum zombie plague
2.bio_heartbeat works fine,but bio_no_crosshair has one bug.
Sometimes crosshair disapear on both teams
3.Cheap it is a posibility to animate zombie in biohazard like in zombie plague ? (models)

You will se the "errors" in dog model (2 pictures)
http://forums.alliedmods.net/showthr...326#post815326

Last edited by eforie; 05-23-2009 at 12:25.
eforie is offline
Send a message via Yahoo to eforie Send a message via Skype™ to eforie
ID12345
Member
Join Date: May 2009
Location: Infront of the computer
Old 05-23-2009 , 23:21   Re: Biohazard v2.00 Beta 3b (Zombie Mod)
Reply With Quote #3217

Quote:
Originally Posted by 5c0r-|3i0 View Post

@ID12345:
I don't know how to say it... U like action and horror...I think that Biohazard is da best . If u interest in this mod..Wait for Cheap_Suit to update ...
For Fun and more stuffs....That makes client to download for days...Zombie Plague ....
and yes i like horror but not with stupid dumb asses bots
tell me if there is servers running this mod in the philippines or singapore
cause ill be gladly playing this with ppls instead of stupid bots
cause most of the garena servers i found are Zombie Plague 4.3
i can enter it but i cant run zp 4.3 only 4.1
so ill try this if there is servers running biohazard pls respond
*downloades biohazard v.2.00 beta*
ID12345 is offline
Send a message via MSN to ID12345 Send a message via Yahoo to ID12345
ID12345
Member
Join Date: May 2009
Location: Infront of the computer
Old 05-23-2009 , 23:25   Re: Biohazard v2.00 Beta 3b (Zombie Mod)
Reply With Quote #3218

btw is there anything to turn this off without going to start the type anything on the console?
edit:
everythings great and all
skins are much better
i have only one complain
the zombies are EASY DIE

Last edited by ID12345; 05-23-2009 at 23:40.
ID12345 is offline
Send a message via MSN to ID12345 Send a message via Yahoo to ID12345
Unity
Junior Member
Join Date: Nov 2007
Old 05-24-2009 , 13:14   Re: Biohazard v2.00 Beta 3b (Zombie Mod)
Reply With Quote #3219

Hey all,

Today I've updated version 1.94 to 2.00 beta 3b and I've a couple of questions.

Question 1: I would like to import the knockback settings of the older version.

knockback settings version 1.94
Quote:
bh_wkb_p228 5.0
bh_wkb_scout 7.0
bh_wkb_xm1014 2.5
bh_wkb_mac10 7.0
bh_wkb_aug 2.0
bh_wkb_elite 4.5
bh_wkb_fiveseven 5.5
bh_wkb_ump45 7.0
bh_wkb_sg550 2.0
bh_wkb_galil 2.0
bh_wkb_famas 2.5
bh_wkb_usp 5.0
bh_wkb_glock18 5.5
bh_wkb_awp 7.0
bh_wkb_mp5navy 2.0
bh_wkb_m249 1.5
bh_wkb_m3 2.5
bh_wkb_m4a1 1.5
bh_wkb_tmp 8.0
bh_wkb_g3sg1 2.25
bh_wkb_deagle 7.0
bh_wkb_sg552 3.0
bh_wkb_ak47 2.0
bh_wkb_knife 5.0
bh_wkb_p90 2.0
Does someone know how to do this ?

Question 2.
With the newer version players are unable to boost each other.( when a zombie players ducks and an other zombie player knife him from behind the zombie player bounced forward, I hope you understand what I mean )
Unity is offline
5c0r-|3i0
Veteran Member
Join Date: Nov 2008
Location: Việt Nam
Old 05-25-2009 , 00:39   Re: Biohazard v2.00 Beta 3b (Zombie Mod)
Reply With Quote #3220

@Cheap_Suit: Great !! You're back
@ID12345:
Want to turn it off ??
Looking in your cstrike/addons/amxmodx/configs...
Find plugins-bio.ini
Rename it to disabled-plugins-bio.ini
Done...

The Zombies are easy to die....You can edit Zombie HP in configs folder for bh_zombieclasses.ini and edit each zombie HP,Speed,and more...

According to game-monitor...I can find any Biohazard server in Singapore and Philippines
@Unity:Is that from bio_knockback ? ...If yes..So
1)It's impossible when Bio 2.00 got a new knockback system..
2)The boost thing....is from bio_knockback.sma too....So impossible

Last edited by 5c0r-|3i0; 05-25-2009 at 00:53.
5c0r-|3i0 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 03:43.


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