AlliedModders

AlliedModders (https://forums.alliedmods.net/index.php)
-   Zombie Plague Mod (https://forums.alliedmods.net/forumdisplay.php?f=126)
-   -   [ZP] Zombie Class: Dog (https://forums.alliedmods.net/showthread.php?t=132814)

Zombie-rus 07-19-2010 06:06

[ZP] Zombie Class: Dog
 
[ZP] Zombie Class: Dog

Class code:
Code:

#include <amxmodx>
#include <fakemeta>
#include <zombieplague>
#include <cstrike>
#include <fun>

new g_zclassid1, cvar_fov

new g_zombies_fov

public plugin_init()
{
    register_plugin("[ZP] Class: Dog Zombie", "0.1", "Zombie-rus")

    cvar_fov = register_cvar("zp_class_fov", "120")
}

public plugin_precache()
{
    g_zclassid1 = zp_register_zombie_class("Zombie Dog", "Speed++ HP- Jump++", "bobik", "v_knife_dog_zombie.mdl", 1200, 220, 1.0, 1.0)

}

public plugin_cfg()
{
    g_zombies_fov = get_cvar_pointer("zp_zombie_fov")
}

public zp_user_infected_post(id, infector)
{
    if (zp_get_user_zombie_class(id) == g_zclassid1)
    {
        client_print(id, print_chat, "[ZP] You become a zombie dog!")
        set_user_footsteps(id, 1)
       
    }
}

public msg_one_unreliable(id)
{
    if (zp_get_user_zombie_class(id) == g_zclassid1)
    {
        message_begin(MSG_ONE_UNRELIABLE, get_user_msgid("SetFOV"), {0,0,0}, id)
        write_byte(get_pcvar_num(cvar_fov))
        message_end()
    }
    else
    {
        message_begin(MSG_ONE_UNRELIABLE, get_user_msgid("SetFOV"), {0,0,0}, id)
        write_byte(g_zombies_fov) // fov angle
        message_end()
    }
}

Picture

[IMG]http://img837.**************/img837/104/skrinzombiedog.jpg[/IMG]

[RU]У класса есть своя модель + модель рук. Которые можно скачать ниже
[EN] Class has its own model + model hands. Which can be downloaded below

:arrow:
http://www.mediafire.com/?uf33at4tmcf9n0f

dias 07-19-2010 06:13

Re: [ZP] Zombie Class: Dog
 
Wow. Nice :D

vaan123 07-19-2010 07:10

Re: [ZP] Zombie Class: Dog
 
why not just zip it here?, nice hands btw.

zeus 07-19-2010 12:46

Re: [ZP] Zombie Class: Dog
 
Map name?

Hx7r 07-19-2010 15:25

Re: [ZP] Zombie Class: Dog
 
This model is strange, his "eye" is inside the mouth

Zombie-rus 07-19-2010 21:30

Re: [ZP] Zombie Class: Dog
 
Quote:

Map name?
de_dust_arena

Leon_12 07-20-2010 02:47

Re: [ZP] Zombie Class: Dog
 
is this headcrab zombie?

Ryokin 07-20-2010 06:00

Re: [ZP] Zombie Class: Dog
 
No special ability ?

Zombie-rus 07-22-2010 01:29

Re: [ZP] Zombie Class: Dog
 
Quote:

is this headcrab zombie?
No

georgik57 07-22-2010 09:24

Re: [ZP] Zombie Class: Dog
 
Quote:

Originally Posted by Leon_12 (Post 1245280)
is this headcrab zombie?

the title says "Zombie Class: Dog" and he's asking if it's a headcrab...a whole new level of stupidity


All times are GMT -4. The time now is 16:22.

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