Jump to content

DevJJ

Members
  • Posts

    49
  • Joined

  • Last visited

Posts posted by DevJJ

  1. 11 hours ago, DK77 said:

    Hi Guys, my server have 3 proxy IP , only one IP keep having this issue . even with no player , it keep spamming closed connection from xxx.xxx.xxx.xxx . I already allow those proxy ip at packet_athena , but issue remain same . Before this , im not having this issue , only today 😞 

     

    proxy problem.png

    Try it open packet_athena.conf

    // Order of the checks
    //   deny,allow     : Checks deny rules, then allow rules. Allows if no rules match.
    //   allow,deny     : Checks allow rules, then deny rules. Allows if no rules match.
    //   mutual-failure : Allows only if an allow rule matches and no deny rules match.
    // (default is deny,allow)

    order: deny,allow
    // order: allow,deny
    // order: mutual-failture

    // IP rules
    //   allow : Accepts connections from the ip range (even if flagged as DDoS)
    //   deny  : Rejects connections from the ip range
    // The rules are processed in order, the first matching rule of each list (allow and deny) is used

    // allow: 127.0.0.1
    // allow: 192.168.0.0/16
    // allow: 10.0.0.0/255.0.0.0
    // allow: all

    // deny: 127.0.0.1
    allow <yourIP>  <<<<<<<<<<<<try it put here then restart server

  2. On 4/29/2021 at 6:56 AM, AOCzxc said:

    Hello mga lodi. Baka may script kyo jan ng soccee ball..

    Pag click mo sa soccer ball summoner npc

    Lalabas dapat summon soccer ball 5/5 tapos mag aannounce kung sino nag summon...

    Then click ulit 

    Summon soccer ball 5/4 etc.....

    Old Event na to pero try mo check un ibang script dito mod mo nlng use google sir lalabas sila ❤️

    https://rathena.org/board/topic/83365-poring-soccer-v3-non-pvp/

  3. 13 hours ago, ellandson said:

    anything in clif_parse that can help me? I really want to do this, if you can't help me I will study until I get it.

    I hope this DLL helps you. An Open Source Ragnarok security DLL. This DLL has been created by ratalaika. This software was commercially distributed some time but now open source for everyone.

    https://github.com/M45T3Ryu/eikasia

  4. 10 hours ago, Chasewalk said:

    Anyone have credit exchanger like this thanks to all

    Credit.png

    Please specify what will be Credits to Coins? Credits to Zeny?

    prontera,160,184,5    script    Credit Exchanger    416,{

    //====================================[Customization Area]==========================//
            set .npcname$,"^0000EE[Credit Exchanger]^000000"; //NPC Name
            set .coinname$,"^0000EECredit^000000"; //Name of Item as Coin Used
            set .CoinID,501; // Credit ID Set to Red Potion
            set .zeny,10000000; // Credit Price Set by 10,000,000 or 10m
            set .capzeny,2000000000; //Zeny Capacity Set by 2,000,000,000 or 2b
    //==============================================================================//
    // Check Line 89 To Edit The Chat/Pub Name Like This:
    //        waitingroom "Credit Exchanger",0;
    //==============================================================================//

            PlayerMode:
            mes .npcname$;
            mes "Hello there "+strcharinfo(0);
            mes "Rule's Of Exchange";
            mes "1 ^0000EE"+.coinname$+"^000000 is [^0000EE"+.zeny+"z^000000]";
            mes "Zeny Exchange Capacity is [^0000EE"+.capzeny+"z^000000]";
            switch(select("(Credits) to (Zeny):(Zeny) to (Credits)")) {
        Case 1:
            next;
            mes .npcname$;    
            mes "How many Credits to exchange?";
            mes "Put The Credit Amount";
            mes "Put  ^0000EE[0]^000000 to Cancel";
            mes "1 ^0000EE"+.coinname$+"^000000 is [^0000EE"+.zeny+"z^000000]";
            mes "Zeny Exchange Capacity is [^0000EE"+.capzeny+"z^000000]";
            next;
            do{
            input @Credit,0,countitem(.CoinID);
            if( @Credit < 1 ) close;
            }while( ( ( @Credit * .zeny ) + Zeny ) > .capzeny );
            next;
            mes .npcname$;
            mes "Thanks";
            delitem .CoinID,@Credit;
            set Zeny, Zeny + ( @Credit * .zeny );
            dispbottom "Zeny Exchange Finished";
            close;

        Case 2:
            next;
            mes .npcname$;    
            mes "How much Credit you like to Gain?";
            mes "Put The Credit Amount";
            mes "Put  ^0000EE[0]^000000 to Cancel";
            mes "1 ^0000EE"+.coinname$+"^000000 is [^0000EE"+.zeny+"z^000000]";
            mes "Zeny Exchange Capacity is [^0000EE"+.capzeny+"z^000000]";
            next;
            input @Credit,0,( Zeny / .zeny );
            if( @Credit < 1 ) close;
            next;
            mes .npcname$;
            mes "Thanks.";
            set Zeny, Zeny - ( @Credit * .zeny);
            getitem .CoinID,@Credit;
            dispbottom "Credit Exchange Finished";
            close;

            OnInit:
            waitingroom "Credit Exchanger",0;
            end;
        }
    close;
    }
     

×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use and Privacy Policy.