Jump to content

THPO

Members
  • Posts

    45
  • Joined

  • Last visited

  • Days Won

    1

Community Answers

  1. THPO's post in [Solve]can't delete char on client 20151104 was marked as the answer   
    make sure you set this option on conf/char_athena.conf
    set to 1 for "email"
    // Restrict character deletion by email address or birthdate. // This restricts players from changing the langtype and deleting characters. // Defaults based on client date. // 1: Email address // 2: Birthdate // 3: Email address or Birthdate // IMPORTANT! // - This config only works for clients that send 0x0068 or 0x01fb for delete request. // - Use langtype 1 for newer clients (2013+), to use 0x01fb. // - Clients that are not using 0x0068 or 0x01fb, only use birthdate (YYMMDD) as default. char_del_option: 2 after diff your client with NEMO with "Always use email for character deletion"
  2. THPO's post in Using MariaDB instead of MySQL was marked as the answer   
    this thread solved my problem: 
     
  3. THPO's post in Hourly Points Problem was marked as the answer   
    The problem is here:
    //Check for 3 hours consecutive if(@consecutive_hour == 3) { set @consecutive_hour,0; set #CASHPOINTS, #CASHPOINTS + .point_amt; dispbottom "You receive "+.cpoint_amt+" Cash Points in playing for 12 consecutive hours"; should be:
    //Check for 3 hours consecutive if(@consecutive_hour == 3) { set @consecutive_hour,0; set #CASHPOINTS, #CASHPOINTS + .cpoint_amt; dispbottom "You receive "+.cpoint_amt+" Cash Points in playing for 12 consecutive hours";
  4. THPO's post in [SCRIPT] How to get the Character Class id or name? was marked as the answer   
    if ( Class == Job_Novice )
×
×
  • Create New...