AlliedModders

AlliedModders (https://forums.alliedmods.net/index.php)
-   Scripting Help (https://forums.alliedmods.net/forumdisplay.php?f=11)
-   -   Could you add this plugin a leap cooldown ? (https://forums.alliedmods.net/showthread.php?t=132618)

darkbad945 07-16-2010 22:33

Could you add this plugin a leap cooldown ?
 
Here is the code...

Code:

/*                               
/                               
/                               
/                                        [ZP] Zombie Long Jump
/                                        (new zombie class)
/
/                                            by The_Thing
/
/
/        Description :
/
/        So what can I say? This is usual Zombie class but this zombie will have long jump already. (without delay)
/
/       
/
/
/
/        Changelog :
/
/        04/10/2008 - v1.0 - First release
/        05/10/2008 - v1.1 - fixed bug that cause long jump to all zombie classes...
/        10/10/2008 - v1.2 - fixed again this bug from v1.1
/
/
/
/
/
/
*/

#include <amxmodx>
#include <fun>
#include <zombieplague>
       
new const zclass_name6[] = { "Long Jump Zombie" }
new const zclass_info6[] = { "HP+ Speed+ Gravity++ Knockback++" }
new const zclass_model6[] = { "zombie_source" }
new const zclass_clawmodel6[] = {"v_knife_zombie.mdl" }
const zclass_health6 = 2200
const zclass_speed6 = 230
const Float:zclass_gravity6 = 0.5
const Float:zclass_knockback6 = 1.7

new g_zclass_LongJump6

public plugin_precache()
{
        register_plugin("[ZP] Zombie Long Jump", "1.2", "The_Thing")
       
        g_zclass_LongJump6 = zp_register_zombie_class(zclass_name6, zclass_info6, zclass_model6, zclass_clawmodel6, zclass_health6, zclass_speed6, zclass_gravity6, zclass_knockback6)
}

public zp_user_infected_post(player, infector)
{
        if(zp_get_user_zombie_class(player) == g_zclass_LongJump6)
        {
                give_item(player, "item_longjump")
        }
        client_print(player, print_chat,"")
}


Ryokin 07-16-2010 23:33

Re: Could you add this plugin a leap cooldown ?
 
search in zp forum

darkbad945 07-17-2010 14:26

Re: Could you add this plugin a leap cooldown ?
 
I did there isnt.... there is another leap zm but it does it's leap with duck+e wich is not good for me. I need this leap zombie to be with cooldown...

mottzi 07-17-2010 14:54

Re: Could you add this plugin a leap cooldown ?
 
requests not in this forum °.°

DarkGod 07-17-2010 15:23

Re: Could you add this plugin a leap cooldown ?
 
Also, this plugin doesn't even work if you're using Steam CS...

ot_207 07-17-2010 15:26

Re: Could you add this plugin a leap cooldown ?
 
Quote:

Originally Posted by DarkGod (Post 1242593)
Also, this plugin doesn't even work if you're using Steam CS...

If you are using McLeod's fix it does.

DarkGod 07-17-2010 16:30

Re: Could you add this plugin a leap cooldown ?
 
Quote:

Originally Posted by ot_207 (Post 1242601)
If you are using McLeod's fix it does.

I wouldn't call it a fix, he made his own longjump.


All times are GMT -4. The time now is 07:13.

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