Jump to content

daim

Members
  • Posts

    36
  • Joined

  • Last visited

Posts posted by daim

  1. 19 hours ago, syracuase said:

    This is a source modification and I did it for my own server. We are 100% close and the effort that it took to implement was tedious. I doubt you will get it for free. If you want alternatives to doing it yourself, use a modified rAthenaCN at : https://github.com/CairoLee/rAthenaCN_Release. Their rAthena is in chinese though

    There no src in that rathenacn release. Anyway is there any other alternatives sir? If it for sell which git version can be use?

  2. Thanks will test it once I back

     

    Untested so let me know if you run into any problems @hour is the command.

     

    Hi,

     

    Its not working. I just show

     

    Time Remaining:

     

    no value after that.

  3. Hi there,

     

    Could someone help me mod this script?

     

    1. I would like to add function where there command like @reward, and it will display time remaining to get points or reward.

    //= The default points is Kafrapoints change it anyway if you like.
    //= 1.1 = Check Chatting too
    //= 1.2 = 5 Minute Idle Check & @at/@autotrade check.
    //= 1.3 = Corrected the current balance line on 12 Hours Consecutive
    //====================================================================
    -	script	hourlypoints	-1,{
    //--Start of the Script
    OnPCLoginEvent:
        addtimer .timer,"hourlypoints::OnPointGet";
        end;
        
    OnPointGet:
        while(checkvending() >= 1 || checkchatting() == 1) {
            sleep2 .delay;
            if(.@mes$=="")
                dispbottom set(.@mes$,"The hourly points event haulted because you were vending, chatting, or idle.");
        }
        set #CASHPOINTS, #CASHPOINTS + .point_amt;
        dispbottom "You received "+.point_amt+" Kafrapoints by staying ingame for 1 hour";
        dispbottom "Current Balance = "+#CASHPOINTS+" Kafrapoints";
        set @consecutive_hour, @consecutive_hour + 1;
    
        //Check for 3 hours consecutive
        if(@consecutive_hour == 3) {
            set @consecutive_hour,0;
            set #CASHPOINTS, #CASHPOINTS + .cpoint_amt;
            dispbottom "You receive "+.cpoint_amt+" Kafrapoints in playing for 12 consecutive hours";
            dispbottom "Current Balance = "+#CASHPOINTS+" Kafrapoints";
        }
        addtimer .timer,"hourlypoints::OnPointGet";
        end;
    
    OnInit:
        set .timer, 1000*15*15; //Timer in milliseconds.
        set .cpoint_amt, 15; //Points gained for consecutive time online.
        set .point_amt, 5; //Normal points gained.
        set .delay, 1000; //Delay for idle re-check check.
        set .dlimit, 60*30; //Stop points if afk greater then in seconds (30mins).
    }
    
    

    Thank you in advance.

  4. Hi there,

     

    How to compile this? Or is there any compiled version for windows?

     

    thanks


    tried compile with debian i getting this error

     

    In file included from src/ic/rbt_name_range.h:5:0,
                     from src/ic/rbt_name_range.c:1:
    src/ic/rbt_range.h:4:21: fatal error: rbt.h: No such file or directory
    compilation terminated.
    make: *** [src/rbt_name_range.o] Error 1
  5. Hi there,

     

    Im using this client for my new project. Unfortunetly i having few problems.

     

    1. Some button not translated (ie guild disband button showing glibberish text.

    2. Item info not translated. (i already put iteminfo.lub inside my grf but still it showing glibberish text on item description)

     

    please help.

     

    Thanks

     

  6. sometime after login, and also using some skills also will freeze/stuck the charecter..

    Emistry: same i still got the freeze issue.. is rathena not support 21.07.2010 version?

    if using 3rd job skill can cause FREEZE to my char.. then have to relog.. anyone know?

  7. Hi,

    Im using 21-7-2010 client, i running my server with RE features. I have no problem when login and so on.. but sometime my char just like FREEZE, no error in console. have to shut down client and start over.

    It's because of client not supported 3rd job or server having problem?

  8. Hi,

    Does anyone know how to do this check:

    .1. Count how many players with same guild online in certain map.

    or the situation like this.

    1. PLAYER A with guildname ABA

    2. PLAYER A click on NPC to warp to prontera.

    3. NPC check how many ABA guild member members online in prontera.

    it's posibble?

×
×
  • Create New...