Jump to content

Break

Members
  • Posts

    153
  • Joined

  • Last visited

  • Days Won

    1

Posts posted by Break

  1. When I use items, the buff icons are displayed differently and do not meet the requirements.

    For example, the Buble Gum icon is displayed like this and the description is

    screenFeelTheRo000.jpg.64641295031207d7015550c67f9e12d6.jpg

    How to fix this? Thanks. Client 2015-09-16aRagexe.

  2. I will try to update in the near future for the latest version of the rAthena.

    Open ../src/login/account.cpp


    Search:

    "SELECT `account_id`,`userid`,`user_pass`,`sex`,`email`,`group_id`,`state`,`unban_time`,`expiration_time`,`logincount`,`lastlogin`,`last_ip`,`birthdate`,`character_slots`,`pincode`, `pincode_change`, `vip_time`, `old_group` FROM `%s` WHERE `account_id` = %d",

    Change to:

    "SELECT `account_id`,`userid`,`user_pass`,`sex`,`email`,`group_id`,`state`,`unban_time`,`expiration_time`,`logincount`,`lastlogin`,`last_ip`,`birthdate`,`character_slots`,`pincode`, `pincode_change`, `vip_time`, `old_group`,`lock_id` FROM `%s` WHERE `account_id` = %d",

    Search:

    "SELECT `account_id`,`userid`,`user_pass`,`sex`,`email`,`group_id`,`state`,`unban_time`,`expiration_time`,`logincount`,`lastlogin`,`last_ip`,`birthdate`,`character_slots`,`pincode`, `pincode_change` FROM `%s` WHERE `account_id` = %d",

    Change to:

    "SELECT `account_id`,`userid`,`user_pass`,`sex`,`email`,`group_id`,`state`,`unban_time`,`expiration_time`,`logincount`,`lastlogin`,`last_ip`,`birthdate`,`character_slots`,`pincode`, `pincode_change`, `lock_id` FROM `%s` WHERE `account_id` = %d",

    Search: 

    #ifdef VIP_ENABLE
    
    Sql_GetData(sql_handle, 16, &data, NULL); acc->vip_time = atol(data);
    
    Sql_GetData(sql_handle, 17, &data, NULL); acc->old_group = atoi(data);
    
    #endif

    After add:

    Sql_GetData(sql_handle, 18, &data, NULL); acc->lock_id = strtoul(data, NULL, 10);

     

  3. 8 hours ago, Badarosk0 said:

    Open ../src/login/account.h

    Search:

    struct global_reg account_reg2[ACCOUNT_REG2_NUM];


    The above line of code no longer exists in the file. Could help? Even if you do manual the instructions are outdated with the version of rAthena. @Break

    Open ../src/login/account.hpp

    After: 

    #ifdef VIP_ENABLE
    
    int old_group;
    
    time_t vip_time;
    
    #endif
     

    Add:

    unsigned int lock_id;

     

  4. Guild Locations


    Rent of guild locations. Used: Default map (gld2_prt)

    Features:

    • Warp to the location using the @gogl command
    • Call of the MVP every 12 hours
    • Kafra NPC
    • PVP Switcher
    • Guild Storage with password

    Note:

    • Cost of location - x for each location its price
    • Rent locations only to guild masters
    • You can only rent one location for your guild

     

  5. On 09.02.2018 at 6:15 AM, maken06 said:

    how can I edit the buttons with external links?

    1. Download Client
    2. Information
    3. Support Service
    4. Rewie Us
    5. Database

    and - Subcribe! - Botton? i think this is for facebook link. Where can I find it??

     

    You can find this files in PSD folder theme (buttons, facebookBtn, menuLinksLeft)

  6. I purchased bg mod 2.0 to rAthena emulator from https://rathena.org/board/profile/1303-smoke/

    But now he is not responsible and can not itself fixed a fall. Who can help with this? Ready to pay for work for fixes. Please write to PM.

    [Error]: clif_name: bad type 0(0) 

    [Error]: Server received crash signal! Attempting to save all online characters!

    [Error]: clif_name: bad type 0(0)
    
    Program received signal SIGSEGV, Segmentation fault.
    0x00005555556522eb in skill_clear_unitgroup ()
    (gdb) bt full
    #0  0x00005555556522eb in skill_clear_unitgroup ()
    No symbol table info available.
    #1  0x00005555556b09d8 in pc_setpos ()
    No symbol table info available.
    #2  0x00005555555ef47e in buildin_bg_warp ()
    No symbol table info available.
    #3  0x000055555566e3e4 in run_func ()
    No symbol table info available.
    #4  0x000055555567ca38 in run_script_main ()
    No symbol table info available.
    #5  0x000055555567d330 in run_script_timer ()
    No symbol table info available.
    #6  0x000055555557c979 in main ()
    No symbol table info available.

     

    clif.c

  7. Good day!

    It is required to rewrite 2.0 from the eamod under the last revision of the rAthena emulator (i need a diff patch file)

    Source codes from the forum are obsolete and not working, the server crashes when registering for bg.

    By terms and cost of work we agree - write here in the LS.

     

    P.S: sorry for my eng, i use translate :)

  8. On 23.11.2016 at 2:15 AM, Break said:

    Before in the channel system was:

    if OnPcLoginEvent label add @join #main ->

    it is automatically inserted channel name in whisper message

    In this modification, it is envisaged? Since Ramod latest revision removed this feature...

     

    On 27.11.2016 at 7:07 PM, Kakaroto said:

    @Cydh

     

    A small suggestion.

    As soon as the player enters the game, the channel name appears in the PM bar, so he does not need to enter the channel name. Players are lazy!

    So if you have rAmod, you can change this lines and it's work on latest revision

    /src/map/channel.c

    find channel_join

    	} else if( channel->opt & CHAN_OPT_ANNOUNCE_JOIN ) {
    		char message[60];
    		sprintf(message, "[ #%s ] '%s' has joined.",channel->name,sd->status.name);
    		clif_channel_msg(channel,sd,message,channel->color);
    	}

    and replace

        } else {
            char output[256];
            char channel_name[256];
            sprintf(channel_name, "#%s",channel->name);
            sprintf(output, msg_txt(sd, 760),sd->status.name, channel_name);
            
            clif_wis_message(sd->fd, channel_name, output, strlen(output) + 1);
        }

    script

    -    script    #channel_autojoin    -1,{
    OnPCLoginEvent:
        atcommand "@join #main";
        end;
    }

     

    • Upvote 1
  9. Possible if the writing commands @votekick,

    allowing BG to vote against the other participants in the AFK characters (eg for approval Kick need 3 votes)?

     

    Just as well to change leader team @voteleader

×
×
  • Create New...