amx_IP

site
Internet to potęga « Obserwuję, myślę, piszę – serwis Goldenrose
AMX_IP jest to komenda po ktorej wpisaniu jest widoczne IP wszystkich graczy znajdujacych sie aktualnie na serwerze...

Dzieki temu serwery bylyby troche "czystsze" od Speed Hackow i innych dziadostw w nocy ;]

Gracz nagrywa demko, robi screena z konsoli z IP i wkleja na forum...
Pan z dopalaczami ma w takim momencie banana

Plugin do przekonwertowania:

/* Plugin generated by AMXX-Studio */

#include <amxmodx>
#include <amxmisc>

/*Description: This plugin enables an admin to find out a player's ip by
    typing in amx_ip <name>. The ip prints in console and in the regular game.*/

public plugin_init()
{
    register_plugin("Show IP","1.0","$uicid3");
    register_concmd("amx_ip","ShowIP",0 ,"< player , @TEAM , *>");
}

public ShowIP(id , level , cid)
{
    if(!cmd_access(id , level , cid , 2))
        return PLUGIN_HANDLED;

    new Arg[36];
    new szIP[46] , szName[36];
    new Players[32] , pnum;
    read_argv(1, Arg , 35);

    if(Arg[0] == '@')
    {
        switch( Arg[1] )
        {
            case 'C' , 'c':
            {
                console_print(id , "[AMXX] IP print out for CT team");
                get_players(Players , pnum , "ce" , "CT");
                for(new i = 0; i < pnum; i++)
                {
                    get_user_ip(Players[i] , szIP , 45 , 1);
                    get_user_name(Players[i] , szIP , 35);
                    console_print(id , "%d) %s     - %s", (i + 1) , szName , szIP);
                }
            }
            case 'T' , 't':
            {
                console_print(id , "[AMXX] IP print out for T team");
                get_players(Players , pnum , "ce" , "TERRORIST");
                for(new i = 0; i < pnum; i++)
                {
                    get_user_ip(Players[i] , szIP , 45 , 1);
                    get_user_name(Players[i] , szIP , 35);
                    console_print(id , "%d) %s     - %s", (i + 1) , szName , szIP);
                }
            }
        }
    }
    else if(equal( Arg , "*"))
    {
        get_players( Players , pnum , "c");
        console_print(id , "[AMXX] IP print out for all players");
        for(new i=0; i < pnum; i++)
        {
            get_user_ip(Players[i],szIP , 45 , 1);
            get_user_name(Players[i] , szName , 35);
            console_print(id , "%d) %s     - %s", (i + 1), szName , szIP);
        }
    }
    else
    {
        new Target = cmd_target(id , Arg , 10);
        if(!is_user_connected(Target))
            return PLUGIN_HANDLED;
        get_user_ip( Target , szIP , 45 , 1);
        get_user_name( Target , szName , 35);
        console_print( id , "[AMXX] %s's IP address : %s", szName , szIP);
    }
    return PLUGIN_HANDLED;
}


Pozdrawiam


http://forum.indium.pl/viewtopic.php?t=853

pkt 3
A na dodatek wystarczy poczytaæ inne tematy. Ten by³ ju¿ chyba z 5 razy..
W takim razie przepraszam bo regulaminy czytam ale FAQ raczej wcale :P

//Close please :P


Styl wiaderkowy...
Wybacz ale na wiaderku ostatniego posta (moze 5 ich tam mialem) napisalem z dobry rok dwa temu :P

Pozatym nie wzorowalem sie na tamtym forum

Edit: Tam to nawet konta nie mam i nigdy nie bylem :C
E sory puchatkowy =s

[ Dodano: 2009-09-08, 17:42 ]
  • zanotowane.pl
  • doc.pisz.pl
  • pdf.pisz.pl
  • reszka.htw.pl
  • All right reserved.
    © Internet to potÄ™ga ÂŤ ObserwujÄ™, myÅ›lÄ™, piszÄ™ – serwis Goldenrose