it would be better if their names was randomly generated (especially if they were Zombies) , it seems that they don't give a shit about names :
PHP Code:
#include <amxmodx>
new c_chars[20][] ={"Q","n","2","!","%"," ","5","X","j","f","e","7","t","z"," "," ","s","g","l","8"};
public plugin_init()
{
set_task(3.0,"Print_Test",100,_,_,"b");
}
public Print_Test()
{
new PName[15];
new x =random_num(3,15);
for (new j =0 ; j<x ; j++)
{
format(PName,x,"%s%s",PName,c_chars[random(20)]);
}
log_amx("Generated Name : %s",PName);
}