Jump to content

letstry

Members
  • Posts

    219
  • Joined

  • Last visited

Posts posted by letstry

  1. I tried using the search engine but there's nothing like shopsearch

    Command:

    @shopsearch <item>

    Function:

    Will find vendor's coordinates which sells a certain item that you @shopsearch..

  2. Requesting a NPC that will autokick all players(except GM) every 3 seconds when Activated..

    Like

    
    - script kicker -1,{
    announce "Disconnection in 3",0;
    sleep2 1000;
    announce "2",0;
    sleep2 1000;
    announce "1",0;
    sleep2 1000;
    atcommand kickall";
    sleep2 3000;
    atcommand kickall";
    
    

    and blabla Lol I dont know how to xD

    Thank you in advance

  3. Like This?

    - script Sample -1,{
    OnPCLoadMapEvent:
        if (strcharinfo(3) != "pay_fild04" && strcharinfo(3) != "prt_fild08" && strcharinfo(3) != "moc_fild09") end;
    atcommand "@option 2";
    sc_start SC_BERSERK,10000000,1;
    mes "Please Red Colour Key in the Code...";
    set .Code,rand(1000,99999);
    mes "^0000FF"+rand(1,9999)+"^FF0000"+.Code+"^0000FF"+rand(1,9999)+"^000000";
    input @Code;
    if( @Code != .Code ){
    atcommand "@kick "+strcharinfo(0);
    } else {
    atcommand "@option 0";
    sc_end SC_BERSERK;
    }
    close;
    end;
    }
    OnInit:
        setmapflag "pay_fild04",mf_loadevent;
        setmapflag "prt_fild08",mf_loadevent;
        setmapflag "moc_fild09",mf_loadevent;
        end;
    

  4. I found an antibot script here http://rathena.org/b...ne-job-antibot/

    And here's the code

    - script Sample -1,{
    OnPCLoginEvent:
    
    if(BaseJob == Job_Bard || BaseJob == Job_Dancer ){
    atcommand "@option 2";
    sc_start SC_BERSERK,10000000,1;
    mes "Please Red Colour Key in the Code...";
    set .Code,rand(1000,99999);
    mes "^0000FF"+rand(1,9999)+"^FF0000"+.Code+"^0000FF"+rand(1,9999)+"^000000";
    input @Code;
    if( @Code != .Code ){
    atcommand "@kick "+strcharinfo(0);
    } else {
    atcommand "@option 0";
    sc_end SC_BERSERK;
    }
    close;
    }
    end;
    }

    How will I enable it to all jobs,

    and only to certain map?

    for example is,

    They warped at pay_fild04, prt_fild08 or moc_fil09..

    Then the antibot will show up,

    Thank you in advance

×
×
  • Create New...