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

Help


Post New Thread Closed Thread   
 
Thread Tools Display Modes
Author Message
mix97mix
Member
Join Date: Sep 2011
Old 10-11-2011 , 08:17   Help
#1

using this

/*============================================ ====================================

-----------------------------------
-*- [ZP] Class: Zombie: Dragon -*-
-----------------------------------

This plugin is part of Zombie Plague Mod and is distributed under the
terms of the GNU General Public License. Check ZP_ReadMe.txt for details.

============================================= ===================================*/

#include <amxmodx>
#include <zp50_class_zombie>

// Dragon Zombie Attributes
new const zombieclass1_name[] = "Dragon Zombie"
new const zombieclass1_info[] = "=Balanced="
new const zombieclass1_models[][] = { "dragon_zombie" }
new const zombieclass1_clawmodels[][] = { "models/zombie_plague/zombi_teeth.mdl" }
const zombieclass1_health = 1800
const Float:zombieclass1_speed = 0.75
const Float:zombieclass1_gravity = 1.0
const Float:zombieclass1_knockback = 1.0

new g_ZombieClassID

public plugin_precache()
{
register_plugin("[ZP] Class: Zombie: Classic", ZP_VERSION_STRING, "ZP Dev Team")

new index

g_ZombieClassID = zp_class_zombie_register(zombieclass1_name, zombieclass1_info, zombieclass1_health, zombieclass1_speed, zombieclass1_gravity)
zp_class_zombie_register_kb(g_ZombieClassID, zombieclass1_knockback)
for (index = 0; index < sizeof zombieclass1_models; index++)
zp_class_zombie_register_model(g_ZombieClassI D, zombieclass1_models[index])
for (index = 0; index < sizeof zombieclass1_clawmodels; index++)
zp_class_zombie_register_claw(g_ZombieClassID , zombieclass1_clawmodels[index])
}


how can i make it fly?

#include <amxmodx>
#include <engine>


#define PLUGIN "Fly"
#define VERSION "1.0"
#define AUTHOR "Stereo"


public plugin_init()
register_plugin(PLUGIN, VERSION, AUTHOR)

public
client_PreThink(id)
{
if(
is_user_alive(id) )
{
new
Float:fAim[3] , Float:fVelocity[3];
VelocityByAim(id , 250 , fAim);

if(!(
get_user_button(id) & IN_JUMP))
{
fVelocity[0] = fAim[0];
fVelocity[1] = fAim[1];
fVelocity[2] = fAim[2];

set_user_velocity(id , fVelocity);
}
}
return
PLUGIN_CONTINUE;
}
mix97mix is offline
Send a message via MSN to mix97mix Send a message via Skype™ to mix97mix
ConnorMcLeod
Veteran Member
Join Date: Jul 2006
Location: France (95)
Old 10-11-2011 , 08:24   Re: Help
#2

http://forums.alliedmods.net/showthread.php?t=169000
http://forums.alliedmods.net/showthread.php?t=169340
http://forums.alliedmods.net/showthread.php?t=169339

Read the rules.

For your information, i have request a ban against you.
__________________
- tired and retired -

- my plugins -

Last edited by ConnorMcLeod; 10-11-2011 at 08:27.
ConnorMcLeod is offline
Closed Thread


Thread Tools
Display Modes

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 07:42.


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