To remove pagination, use the following code:
Code:
menu_setprop(menu, MPROP_PERPAGE, 0);
Also, you should note that the plugin is really poorly coded.
A small edit of the give_respawn function, and I came up with this for you:
Code:
public give_respawn(id)
{
if(is_user_alive(id))
{
ColorChat(id, GREEN, "^x01[AMXX] ^x04%L", id, "ALIVE")
return;
}
new cost = get_pcvar_num(respawncost)
if ( (get_user_flags(id) & ADMIN_BAN) && (kills >= cost || randomn[id] == true) )
{
if(cs_get_user_team(id) == CS_TEAM_T)
{
cs_user_spawn(id)
cs_set_user_team(id, 1)
}
else if(cs_get_user_team(id) == CS_TEAM_CT)
{
cs_user_spawn(id)
cs_set_user_team(id, 2)
}
ColorChat(id, GREEN, "^x01[AMXX] ^x04%L", id, "GIVERESPAWN")
}
else
{
ColorChat(id, RED, "^x01[AMXX] ^x03%L", id, "NOBUY")
}
}