zp_class_human_get_name
Returns a human class' name.
Syntax
native zp_class_human_get_name(classid, name[], len) /** * Returns a human class' real name (used when registering the class). * * @param classid A valid human 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_human_get_real_name(classid, real_name[], len) /** * Returns a human class' description. * * @param classid A valid human 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_human_get_desc(classid, description[], len) /** * Returns number of registered human classes. * * @return Human class count. */ native zp_class_human_get_count() /**
Usage
| classid | A valid human 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_human.inc
at line 84
.
This documentation was automatically generated from source.