Aici aveti tutorialul Deschideti fisierul si cautati urmatoarea linie:
register_concmd("amx_last", "cmdLast", ADMIN_BAN, "- list the last few disconnected clients info" ; Stergeti randul. Acum, cautati (pe la sfarsit):
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:
register_concmd("amx_nick", "cmdNick", ADMIN_SLAY, "<name or #userid> <new nick>" register_clcmd("amx_rcon", "cmdRcon", ADMIN_RCON, "<command line>" Modificati-l in:
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:
return PLUGIN_HANDLED }
|