Jump to content

Coookie

Members
  • Content Count

    36
  • Joined

  • Last visited

Posts posted by Coookie


  1. On 7/8/2020 at 5:08 PM, Chatterboy said:

    it work  but we hope they will update like goddameit make like this with teleport. its better to use plugins than patch ^_^ ROK! on this Project... LODI!!!

    This works perfectly fine on me i just did a lot of rebuilt code on it and it is fully working on my end.


  2. On 7/6/2020 at 1:42 AM, Chatterboy said:

    No new update for this? i download it i got error 

    autoattack.c: In function ‘autoattack_motion’: autoattack.c:65:7: error: ‘struct unit_interface’ has no member named ‘walktoxy’ unit->walktoxy(&sd->bl, sd->bl.x+(rand()%2==0?-1:1)*(rand()%10), sd->bl.y+(rand()%2==0?-1:1)*(rand()%10),0);

    
    autoattack.c: In function autoattack_motion’:
    autoattack.c:65:7: error: struct unit_interface has no member named walktoxy
       unit->walktoxy(&sd->bl, sd->bl.x+(rand()%2==0?-1:1)*(rand()%10), sd->bl.y+(rand()%2==0?-1:1)*(rand()%10),0);

     

    No more update on this one the only autoattack successfuly rebuilt is from levRO.


  3. you can import things thru sql command. or in phpmyadmin install it on your debian. you need to install php/ phpmyadmin and configure it.  if you want to.
    You can also perform a remote connection to your vps without phpmyadmin so you can easily connect your sql to your MYSQL Query browser
    In default it was set as no connection other than 127.0.0.1 so you need to enable your ip restriction to able connect it on your windows.


  4. 14 minutes ago, Vejova said:

    Hey, I need some help getting the server started.

     

    I'm getting these errors when I try to start up my server:

     

    [Error]: conf/import/inter-server.conf:34 - syntax error
    [Warning]: Using the default user/password s1/p1 is NOT RECOMMENDED.
    [Notice]: Please edit your 'login' table to create a proper inter-server user/password (gender 'S')
    [Notice]: And then change the user/password to use in conf/char/char-server.conf (or conf/import/char-server.conf)
    [Info]: Done reading conf/common/inter-server.conf.
    [Error]: conf/import/inter-server.conf:34 - syntax error
    [Info]: Connect Character DB server.... (Character Server)

    : Access denied for user 'ragnarok'@'localhost' (using password: YES) [Debug]: at loginlog.c:97

    
    : Access denied for user 'ragnarok'@'localhost' (using password: YES)
    	[Debug]: at inter.c:951
    	[Warning]: map_config_read: Loop detected! Skipping 'import'...
    	[Warning]: Using the default user/password s1/p1 is NOT RECOMMENDED.
    	[Notice]: Please edit your 'login' table to create a proper inter-server user/password (gender 'S')
    	[Notice]: and then edit your user/password in conf/map-server.conf (or conf/import/map_conf.txt)
    	[Warning]: Not all IP addresses in /conf/map/map-server.conf configured, auto-detecting...
    	[Info]: Defaulting to *** as our IP address
    	[Info]: Map Server IP Address : ***
    	[Info]: Char Server IP Address : ***
    	[Error]: conf/import/inter-server.conf:34 - syntax error
    	[Info]: Logging item transactions to table 'picklog'.
    	[Info]: Logging chat to table 'chatlog'.
    	[Info]: Logging commands to table 'atcommandlog'.
    	[Info]: Logging item transactions to table 'picklog'.
    	[Info]: Logging chat to table 'chatlog'.
    	[Info]: Logging commands to table 'atcommandlog'.
    	[Info]: Connecting to the Map DB Server....
    	[SQL]: Access denied for user 'ragnarok'@'localhost' (using password: YES)
    
    
    
    
    		

     

    I updated all of the Conf files using the ones in Github, so i'm not sure why it's saying s1/p1 or "ragnarok'@localhost. 

     

     

    Check carefully the conf/global/sql_configuration it about your database configuration. your mysql.
    You should setup your mysql username password.


  5. 1 hour ago, rans said:

    Hi, can you give me a hint of whats the function name of it in src? thanks!

    You need to add it manually. This source has no confirmation on delay skill since it use different ms of skills and items.


  6. 3 hours ago, rans said:

    Hello,
    The script is ignoring the skill delay, it will spam the skill regardless of the cooldown. 
    Possible to add check before using skill?


    Try to add some skill delay checker on it. 


  7. I believe this is the account locker 
     

    - script AccountLocker -1,{
    
    OnPCLoginEvent:
    if (#setpw == 1) goto P_insert;
    if (#dontp == 1) end;
    mes "[Account Locker]";
    mes "Do you want to set an Account locker?";
    next;
    menu "Set an Account Locker",P_check,"No",-;
    mes "[Account Locker]";
    mes "Are you sure you don't want to set an Account locker?";
    mes "I will only ask this once !!";
    next;
    menu "Ok I want to set an account locker.",P_check,"Still No",-;
    mes "[Account Locker]";
    mes "Okay !!";
    set #dontp,1;
    close;
    
    P_Check:
    sc_start sc_berserk, 1000000000, 1;
    mes "[Account Locker]";
    mes "Input your password locker whatever you want. Can be letters or numbers. CASE SENSITIVE.";
    next;
    input #lockpw$;
    next;
    mes "[Account Locker]";
    mes "Password Verification.";
    mes "Please input the password you had entered.";
    input #lockvpw$;
    if (#lockvpw$ != #lockpw$) {
    next;
    mes "[Account Locker]";
    mes "The verification password you had entered is incorrect.";
    next;
    goto P_Check;
    } else {
    next;
    mes "[Account Locker]";
    mes "Thank you. Please remember the password you had setted. I will ask for it again everytime you login.";
    set #setpw,1;
    sc_end sc_berserk;
    close;
    }
    
    
    P_insert:
    sc_start sc_berserk, 1000000000, 1;
    mes "[Account Locker]";
    mes "Please enter your locker password";
    next;
    input #insertlp$;
    if (#insertlp$ == #lockpw$) goto P_pass;
    mes "[Account Locker]";
    mes "Invalid password. Try again.";
    next;
    input #insertlp$;
    if (#insertlp$ == #lockpw$) goto P_pass;
    mes "[Account Locker]";
    mes "Invalid password. Try again.";
    next;
    mes "[Account Locker]";
    mes "Invalid password. Try again.";
    if (#insertlp$ == #lockpw$) goto P_pass;
    atcommand "@kick "+strcharinfo(0);
    end;
    
    P_pass:
    sc_end sc_berserk;
    close;
    }

     

×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.