Quote:
Originally Posted by Oneshox
and how i can make plugin somethink like that, that it print class?
if (zp_get_user_zombie_class = g_zclass6)
{
client_print("You are now (what comes here) ?
}
|
You can do it like this:
PHP Code:
// This number is your zombie class id you want to test
// 3 is usually the id of "Poison Zombie"
#define ID 3
public zp_user_infected_post(id , infector)
{
if (zp_get_user_zombie_class == ID)
client_print( id," your id is %d" ,ID)
__________________