Ever get those annoying Zombies that block for humans in your server?
Do you always hear the same old excuse such as "OMG I'M STUCK I CAN'T MOVE I SWEAR!"?
If you do and are sick of it, this may be the solution!
This script will teleport a zombie (default using !ztele) 10 seconds after initial zombification.
[size=18][color=red][b]This does not solve the problem fully![/b][/color][/size]
You still have the issue of blockers anyway. This reduces it slightly and can be very helpful.
Installation
[list=1]
[*] Extract the ZIP file
[*] Drag and drop contents to the cstrike folder located on your server
[*] Add [b]es_load zbbg[/b] to your [b]autoexec.cfg[/b]
[/list]
And you are done!
[code]
//Zombieblock be gone
//By Owned|Myself
//
//Basically this script removes Zombieblockers from your server, forever!
//Simply set the text to what teleport phrase you have set up and you're all set!
event player_death
{
if (event_var(weapon) equalto zombie_claws_of_death) do
{
es_delayed [color=red]10.0[/color] es_sexec event_var(userid) say [color=cyan]!ztele[/color]
}
}
event round_start
{
es_msg #lightgreen ZombieBlockBeGone is Loaded! Don't try it!
}
[/code]
[color=red]Red[/color] Text = Time delay which you can configure to your needs.
[color=cyan]Cyan[/color] Text = Teleport phrase which you can configure to your needs.
Version Notes For 1.0
Updated on: 2008-11-21 17:51:26 EST by Owned|Myself (View Zip Contents)
Currently teleports zombies within 10 seconds. Can be easily modified by you (editing the es_delayed value) so I will not continue this script (unless requested urgently).