I use this script, but instead the name of the player earning the name of my server

if I might help a little to optimize
PHP Code:
#include <amxmodx>
#include <cstrike>
#include <fun>
public plugin_init() {
register_plugin( "x-","x","x" )
register_event( "DeathMsg", "Event_Death", "a" )
}
public Event_Death(id) {
//random hud
new r = random(256)
new g = random(256)
new b = random(256)
//last player
new players_ct[32], players_t[32], ict, ite;
get_players(players_ct,ict,"ae","CT")
get_players(players_t,ict,"ae","TERRORIST")
// get players
new name[32]
get_user_name(id,name,31)
if( ite == 1 ) {
client_cmd(0,"spk server/stayinalive");
set_hudmessage(r,g,b, -1.0, 0.30, 0, 6.0, 6.0)
show_hudmessage(0, "%s is alone :)", name)
} else if( ict == 1 ) {
client_cmd(id,"spk server/stayinalive");
set_hudmessage(r,g,b, -1.0, 0.30, 0, 6.0, 6.0)
show_hudmessage(0, "%s is alone :)", name)
}
}
public plugin_precache() {
precache_sound("server/stayinalive.wav")
}