Jump to content

LCDTheOG

Members
  • Posts

    222
  • Joined

  • Last visited

  • Days Won

    2

Posts posted by LCDTheOG

  1. Yes, i've set it up correctly i think because i follow the guide about where to input wan and lan ip

    also I am able to get to this after login

    rathena.jpg

    only after selecting the server i get the error

    rathena2.jpg

    why is everything in korean, do you have translation packs n stuff, and did u compile your server to correct dates n what not.

  2. 
    function script CustomBox {
    setarray .BoxItems[0],501,502,503,504;
    
    
    set .rand, rand(100);
    
    if (.rand <= 5){
    getitem .BoxItems[0],1;}
    if (.rand <= 10 && .rand > 5){
    getitem .BoxItems[1],1;}
    if (.rand <= 25 && .rand > 10){
    getitem .BoxItems[2],1;}
    if (.rand > 25){
    getitem .BoxItems[3],1;}
    end;
    }
    

    Edit the if blocks to your liking

  3. attachnpctimer strcharinfo(0);
    initnpctimer;
    
    OnTimer30000:
    set BaseExp, BaseExp+10000
    set JobExp, JobExp+10000
    end;

    i think that should do it :X

  4. if you want to connect to a server with a client you need to go into that servers grf and update the clientinfo.xml and change this part

    <address>Your IP goes here</address>

    then save it and pack it back into the grf.

  5. 1st i understand

    2nd. If their is 3 players in the event you want them warped out? but party leader of the 3 players needs to click the npc to leave?

    3rd. you want me to change, mes "No event for the moment"; to, mes "There are x players in the map this area is empty?

    you really arent making urself clear here :D

  6. head into your src/map/battle.c and look for this line

    { "max_parameter",					  &battle_config.max_parameter,				   99,	 10,	 10000,		  }

    change the 99 to 255

    { "max_baby_parameter",				 &battle_config.max_baby_parameter,			  80,	 10,	 10000,		  }

    change the 80 to 255 or whatever you want your baby parameters to be

    { "max_third_parameter",				&battle_config.max_third_parameter,			 20,	 0,	  INT_MAX,		}

    this is for 3rd job, change the 20 to 255 or whatever u want them to be.

    after you do all your changes don't forget to recompile your server or the changes wont occur.

  7. what version is your mysql o_O, its saying the syntax of REPLACE INTO is incorrect. as for the blue question mark that means that the file has been altered and or been added to the folder and it isnt in the svn.

    Edit: Try doing it with this one.

    item_db.sql

  8. i think this is a bug with Mysql 5.5, because ive been having this problem lately, i dont see how root admin wont have privledges to delete and edit users, the way around this tho is to just delete the user from the mysql database it should be in the user table, do not delete root or ur screwed LOL, just delete the other user names that u dont want

  9. this isnt a skill table error, as the database is only for storeing data, not altering any server sided things such as configureations and all that, blacked out skills usually mean, they were disabled somehow when u migrated, did all of the files get into the host, check your skill_db.txt and skill_tree.txt and make sure they are still in tact. also make sure you dont have gm's being able to bypass the skill limit ie being able to have all skills as a gm character, otherwise they will be blackened.

×
×
  • Create New...