Forums

Nu sunteti conectat. Conectați-vă sau înregistrați-vă

Photo


Vezi subiectul anterior Vezi subiectul urmator In jos  Mesaj [Pagina 1 din 1]

MoNsTeRkIll

MoNsTeRkIll
Membru
Membru
Aici aveti tutorialul
Deschideti fisierul si cautati urmatoarea linie:
Cod:
Cod:
register_concmd("amx_last", "cmdLast", ADMIN_BAN, "- list the last few disconnected clients info");


Stergeti randul.
Acum, cautati (pe la sfarsit):
Cod:
Cod:
Selectaţi tot
public cmdLast(id, level, cid)
{
if (!cmd_access(id, level, cid, 1))
{
return PLUGIN_HANDLED;
}

new name[32];
new authid[32];
new ip[32];
new flags[32];
new access;


// This alignment is a bit weird (it should grow if the name is larger)
// but otherwise for the more common shorter name, it'll wrap in server console
// Steam client display is all skewed anyway because of the non fixed font.
console_print(id, "%19s %20s %15s %s", "name", "authid", "ip", "access");

for (new i = 0; i < g_Size; i++)
{
GetInfo(i, name, charsmax(name), authid, charsmax(authid), ip, charsmax(ip), access);

get_flags(access, flags, charsmax(flags));

console_print(id, "%19s %20s %15s %s", name, authid, ip, flags);
}

console_print(id, "%d old connections saved.", g_Size);

return PLUGIN_HANDLED;
}


Selectati - stergeti. Salvati si compilati sursa.
Acum aveti un plugin fara amx_last!

Ca sa il faceti la loc, cautati urmatorul rand:
Cod:
Cod:
register_concmd("amx_nick", "cmdNick", ADMIN_SLAY, "<name or #userid> <new nick>")
register_clcmd("amx_rcon", "cmdRcon", ADMIN_RCON, "<command line>")


Modificati-l in:
Cod:
Cod:
register_concmd("amx_nick", "cmdNick", ADMIN_SLAY, "<name or #userid> <new nick>")
register_concmd("amx_last", "cmdLast", ADMIN_BAN, "- list the last few disconnected clients info");
register_clcmd("amx_rcon", "cmdRcon", ADMIN_RCON, "<command line>")

Iar la sfarsit, dupa:
Cod:
return PLUGIN_HANDLED
}


Adaugati
Cod: Selectaţi tot
Cod:
public cmdLast(id, level, cid)
{
if (!cmd_access(id, level, cid, 1))
{
return PLUGIN_HANDLED;
}

new name[32];
new authid[32];
new ip[32];
new flags[32];
new access;


// This alignment is a bit weird (it should grow if the name is larger)
// but otherwise for the more common shorter name, it'll wrap in server console
// Steam client display is all skewed anyway because of the non fixed font.
console_print(id, "%19s %20s %15s %s", "name", "authid", "ip", "access");

for (new i = 0; i < g_Size; i++)
{
GetInfo(i, name, charsmax(name), authid, charsmax(authid), ip, charsmax(ip), access);

get_flags(access, flags, charsmax(flags));

console_print(id, "%19s %20s %15s %s", name, authid, ip, flags);
}

console_print(id, "%d old connections saved.", g_Size);

return PLUGIN_HANDLED;
}

Autorul acestui mesaj a fost eliminat din forum. - Afisati mesajul

Vezi subiectul anterior Vezi subiectul urmator Sus  Mesaj [Pagina 1 din 1]

Permisiunile acestui forum:
Nu puteti raspunde la subiectele acestui forum