Jump to content

Conflicts

Members
  • Posts

    317
  • Joined

  • Last visited

  • Days Won

    8

Posts posted by Conflicts

  1. Only you would know the correct directly of your files. I'm guessing it's /home/YOURUSERNAME/trunk/sql-files

    It is beyond our scope, and really, you should ask Wanhosting for support. It is part of their job, isn't it?\

     

    Ah, even worse, you're using VNC. So it must be /home/YOURUSERNAME/Desktop/trunk/sql-files

  2. You don't have to log on to mysql before issuing the command.

    Does the database ragnarok exist in your MySQL installation? You can use the command SHOW DATABASES to confirm.

     

    If it doesn't, then omit the -D part, making the command. (Execute the commands on a new Terminal session)

    cd /trunk/sql-files

    mysql - u root -p ragnarok < main.sql

  3. At least let us know how it didn't work. What error(s) did it give out (if any)?

    Or any other useful information that would help us help you resolve the issue.

     

    Alternatively, you can do;

    cd /rAthena/sql-files

    mysql -u root -p -D YOURDATABASE < main.sql

    Then type your root MySQL password when prompted to.

  4. This becomes a problem when you reach the 128 entry limit for arrays. Other than that, this should work.

    -	script	dual_ip	-1,{
    OnPCLoadMapEvent:
    	getmapxy(.@amap$,.@mapx,.@mapy,0);
    	
    	if(.@amap$!="xmas") end; 
              
    		query_sql("SELECT last_ip FROM `login` WHERE account_id = "+getcharid(3)+"", .@LastIP$);
    		query_sql("SELECT account_id FROM `login` WHERE last_ip = '"+.@LastIP$+"'", .@AccountId);
    		set .@aidtemp,getcharid(3,strcharinfo(0));
    
    		for(set .@i ,0;.@i<getarraysize(.@AccountId);set .@i,.@i+1)
    			{
    				if(attachrid(.@AccountId[.@i]))
    				{
    					getmapxy(.@qmap$,.@qmapx,.@qmapy,0);
    					if (.@qmap$== .@amap$) set .@j,.@j+1;
    				}
    				detachrid;
    			}
    		attachrid .@aidtemp;
    		if(.@j > 1) {
    			dispbottom "You may not dual client on this map.";
    			warp "prontera",156,183;   
    		}
    	end;
    }
       
       //------Enable map OnPCLoadMapEvent-------------------
    xmas	mapflag	loadevent
    

    Just replace xmas with the map of your choice.

  5. If you're using a newer client, be careful and test your storage each time you decide to increase the max capacity.

    I remember going only up to 700 before items magically vanish from my storage. Increase it by 50 or 100 incrementally.

  6. Please keep it on-topic. And @Tales, I understand that this guy is trying to ask for the sun and the moon.

    However, telling them to buy something for you so that you'll help them is downright extortion. I wont give you warning points this time.

     

    Also, I've moved this to Client-side request. Be nice to one another. It's what an open-source community is for.

  7. What did you change on your FluxCP installation? I noticed the Labels on the left menu are literally named Label, which shouldn't be.

    Also, for your issue, I think it (/module) requires you to confirm the e-mail, by entering it twice, but your theme (/themes) doesn't show the text-box for it.

    • Upvote 1
  8.  

    Try and start each server manually;

    cd /path/to/your/server

    ./login-server

    ./char-server

    ./map-server

    ./char-server2 (?)

    ./map-server2 (?)

     

    Now if that works for you, then putting them on a shell script should be the easier part.

    (?) - cause I really have no idea what your second char / map server are called.

     

    It has the same name with char-server & map-server with the first server.

     

    That's a really unhelpful feedback. Anyway, this Wiki article explains it best.

    It even tells you what to do with your athena-start so you can start both servers at once. (Which solves your first problem)

  9. Try and start each server manually;

    cd /path/to/your/server

    ./login-server

    ./char-server

    ./map-server

    ./char-server2 (?)

    ./map-server2 (?)

     

    Now if that works for you, then putting them on a shell script should be the easier part.

    (?) - cause I really have no idea what your second char / map server are called.

  10. Please make sure your login-server / char-server / map-server are closed before trying to recompile.

    Also, on where you see Debug, change it and make it Release. That would get rid of most warnings, but would still halt your compilation in case of an error.

×
×
  • Create New...