Jump to content

daim

Members
  • Posts

    38
  • Joined

  • Last visited

  • Days Won

    2

Posts posted by daim

  1. Here’s the updated explanation with all points formatted for easy copying:


    Welcome to the Online Custom Item Generator!

    🌐 Website: https://rotools.ti-server.com/


    What is the Custom Item Generator?

    The Custom Item Generator is an innovative, user-friendly online tool designed to simplify and enhance your Ragnarok Online (RO) gaming or server development experience. Whether you're a server administrator, developer, or enthusiast, this platform helps you create and manage custom items efficiently and accurately.


    Key Features:

    1. Custom Item Creation

      • Automates the generation of custom items for your server.
      • Input file names (e.g., sprites or resources), and the tool will generate the required configurations or assets seamlessly.
    2. Sprite Management Tools

      • Organize and preview custom sprites easily.
      • Generate item and resource file lists for smooth integration into your server.
    3. Batch Processing

      • Handle multiple files simultaneously to speed up tedious manual tasks.
      • Perfect for bulk sprite or resource management.
    4. Error Checking

      • Validate configurations to ensure compatibility and reduce server-side issues.
    5. User-Friendly Interface

      • An intuitive design makes it accessible for users of all experience levels.

    Who Is This For?

    • Server Administrators: Quickly configure and manage custom items or server assets.
    • Players: Create personalized items for your favorite private servers.
    • RO Developers: Test and fine-tune game elements with ease.

    Why Choose the Custom Item Generator?

    • Fast & Reliable: Built with automation to save you time and effort.
    • Accessible Anywhere: Available online—no need to install software.
    • Secure & Private: Ensures the safety of your data during processing.

    Start creating and managing your RO assets effortlessly by visiting the Custom Item Generator today!

    Feel free to share feedback or reach out for support through the platform. 😊


    This layout ensures users can easily copy individual points or sections as needed. Let me know if further tweaks are required!

    Please let me know if you found any bugs.

    • Love 2
    • Like 1
  2. 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?

  3. 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.

  4. 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.

  5. 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
  6. 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

     

  7. 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?

  8. 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?

  9. 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...