Jump to content

rans

Members
  • Posts

    429
  • Joined

  • Last visited

  • Days Won

    7

Posts posted by rans

  1. txt server? 

    try 3ceam

    http://svn.games-service.net/

     

    Hello, If I Downloaded one of these will I have a direct Test Server?

    I meant like the one with Beginner's Eathena which you can download directly and test anything.

     

     

    I just want to ask where can i Download a test server for a 3rd job ragnarok online server. thank you.

    by default...

    3ceam, rAthena and Hercules also support for 3rd job.

    Can You please give me a link? Thank you very much.

     

    hi,

    no, you need to provide a client side to be able to connect... 

    SO my suggest is you use beginner Eathena V4 [x]3ceam (for 3rd jobs) 

    this include the server side and client side.. 

  2. Hi,


    i use this script... try it.. 





     
     
    ==========================================
     
    int atcommand_afk(const int fd, struct map_session_data* sd, const char* command, const char* message)
     
    {
    nullpo_retr(-1, sd);
    if( map[sd->bl.m].flag.autotrade == battle_config.autotrade_mapflag )
    {
     
     
    if (!message || !*message) {
     
    chat_createpcchat(sd, "(@afk) PUB~", "", 1, 1);
    trade_tradeack(sd,4);
    sd->state.autotrade = 1;
    if( battle_config.at_timeout )
    {
    int timeout = atoi(message);
    status_change_start(&sd->bl, SC_AUTOTRADE, 10000, 0, 0, 0, 0, ((timeout > 0) ? min(timeout,battle_config.at_timeout) : battle_config.at_timeout) * 60000, 0);
    }
     
    clif_authfail_fd(fd, 15);
     
    }
     
     
    if((strlen(message) < 0)||(strlen(message) > 36)) {
    chat_createpcchat(sd, "(@afk) Pm FB~", "", 1, 1);
    trade_tradeack(sd,4);
    sd->state.autotrade = 1;
    if( battle_config.at_timeout )
    {
    int timeout = atoi(message);
    status_change_start(&sd->bl, SC_AUTOTRADE, 10000, 0, 0, 0, 0, ((timeout > 0) ? min(timeout,battle_config.at_timeout) : battle_config.at_timeout) * 60000, 0);
    }
     
    clif_authfail_fd(fd, 15);
     
    }
    chat_createpcchat(sd, message, "", 1, 1);
    trade_tradeack(sd,4);
    sd->state.autotrade = 1;
    if( battle_config.at_timeout )
    {
    int timeout = atoi(message);
    status_change_start(&sd->bl, SC_AUTOTRADE, 10000, 0, 0, 0, 0, ((timeout > 0) ? min(timeout,battle_config.at_timeout) : battle_config.at_timeout) * 60000, 0);
    }
     
    clif_authfail_fd(fd, 15);
     
     
     
     
    } else
    clif_displaymessage(fd, "AFK is not allowed on this map.");
     
    return 0;
    }
  3. hmm.. to make costume item you will just edit the LOCATION of item 
    "// ID,AegisName,Name,Type,Buy,Sell,Weight,ATK,DEF,Range,Slots,Job,Class,Gender,Loc,wLV,eLV,Refineable,View,{ Script },{ OnEquip_Script },{ OnUnequip_Script }"
    Costume Tab
    2^10 1024 = Costume - Upper Headgear
    2^11 2048 = Costume - Middle Headgear
    2^12 4096 = Costume - Lower Headgear
    2^13 8192 = Costume - Armor

    • Upvote 2
×
×
  • Create New...