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

[REQ]Admin Zombie


Post New Thread Reply   
 
Thread Tools Display Modes
Author Message
BeNeQ
Junior Member
Join Date: Aug 2009
Old 08-13-2009 , 13:35   [REQ]Admin Zombie
Reply With Quote #1

Hey! I want please someone to make admin zombie for me.
If normal player select Admin Zombie he will be slayed and receive message "[ZP] You have been slayed because you are not admin"
He will be respawned in hmmm 5 second (my zp config) and slayed... until he choose another zombie. Can anybody do this for me? Sorry for my english
BeNeQ is offline
Zyhm
Junior Member
Join Date: Jun 2009
Old 08-14-2009 , 02:09   Re: [REQ]Admin Zombie
Reply With Quote #2

look what zombie models u have on ...\cstrike\models\player
chouse 1 and add it on ...\cstrike\addons\amxmodx\configs\zombieplag ue.ini in line what goes like this: ADMIN ZOMBIE = ...
than go in ...\cstrike\addons\amxmodx\configs\zombieplag ue.cfg and amble zombie models for admin. u can put ANY zombie model u want!
Zyhm is offline
BeNeQ
Junior Member
Join Date: Aug 2009
Old 08-14-2009 , 05:02   Re: [REQ]Admin Zombie
Reply With Quote #3

I know about this... I want special zombie only for admins... No model. When I using admin zombie from this forum normal player can set him and in next round hi is noob zombie. He can choose always round admin zombie. I want to remake this plugin to slay players, no change to noob zombie.
BeNeQ is offline
BeNeQ
Junior Member
Join Date: Aug 2009
Old 08-15-2009 , 15:57   Re: [REQ]Admin Zombie
Reply With Quote #4

I wan't please someone to remake this plugin:
Quote:
#include <amxmodx>
#include <fakemeta>
#include <amxmisc>
#include <zombieplague>

static const zname[] = "Admin Zombie ";
static const zinfo[] = "Only admins can use";
static const zmodel[] = "zombie_source";
static const zweapmodel[] = "v_knife_zombie.mdl";
const zhealth = 2500;
const zspeed = 245;
const Float:zgravity = 0.7;
const Float:zknockback = 0.5;

static const zname2[] = "Noob Zombie ";
static const zinfo2[] = "Only Noobs can use";
static const zmodel2[] = "zombie_source";
static const zweapmodel2[] = "v_knife_zombie.mdl";
const zhealth2 = 100;
const zspeed2 = 100;
const Float:zgravity2 = 2.0;
const Float:zknockback2 = 0.5;


new g_admin;
new g_normal



public plugin_init()
{
register_plugin("[ZP] Class: Admin", "0.1", "AlejandroSk");
g_admin = zp_register_zombie_class(zname, zinfo, zmodel, zweapmodel, zhealth, zspeed, zgravity, zknockback);
g_normal = zp_register_zombie_class(zname2, zinfo2, zmodel2, zweapmodel2, zhealth2, zspeed2, zgravity2, zknockback2);

}

public zp_user_infected_post(id, infector)
{

if (zp_get_user_zombie_class(id) == g_admin)
{
if (!is_user_admin(id))
{
zp_set_user_zombie_class(id, g_normal)
client_print(id, print_chat, "[ZP] Your class has been set to [Noob Zombie] Because you are not admin.")

}
else {
client_print(id, print_chat, "[ZP] You have selected [Admin Zombie]")
}

}
}
Can anybody remake this plugin to not change normal player from admin zombie to noob zombie but slay normal player when he choose admin zombie and send him message "[ZP] You have been slayed because you are not admin". Help pls. Sorry for my english.
BeNeQ 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 23:35.


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