zp_class_zombie_get_name

Returns a zombie class' name.

Syntax

native zp_class_zombie_get_name(classid, name[], len) /** * Returns a zombie class' real name (used when registering the class). * * @param classid A valid zombie class ID. * @param name The buffer to store the string in. * @param len Character size of the output buffer. * @return True on success, false otherwise. */ native zp_class_zombie_get_real_name(classid, real_name[], len) /** * Returns a zombie class' description. * * @param classid A valid zombie class ID. * @param description The buffer to store the string in. * @param len Character size of the output buffer. * @return True on success, false otherwise. */ native zp_class_zombie_get_desc(classid, description[], len) /** * Returns a zombie class' knockback multiplier. * * @param classid A valid zombie class ID. * @return Knockback multiplier (float value). */ native Float:zp_class_zombie_get_kb(classid)

Usage

classid A valid zombie class ID.
name The buffer to store the string in.
len Character size of the output buffer.

Return

True — on success, false otherwise.

Defined in zp50_class_zombie.inc at line 112 . This documentation was automatically generated from source.