Jump to content

LCDTheOG

Members
  • Posts

    222
  • Joined

  • Last visited

  • Days Won

    2

Posts posted by LCDTheOG

  1. you must make a seperate database for log, name it log, then run the log.sql file in ur /sql-files/ folder and make sure you give it permissions. also make sure you specify in the conf/inter_athena.conf the name of ur database.

  2. go into your conf/inter_athena.conf, scroll down in the file until u see this

    // MySQL Log SQL Database
    log_db_ip: 127.0.0.1
    log_db_port: 3306
    log_db_id: ragnarok
    log_db_pw: ragnarok
    log_db_db: log //<-------------- change this to the database where your log's reside
    log_codepage:
    log_login_db: loginlog

  3. if you wanna make it so they cant use it, just go into your db/skill_tree.txt and comment out the skill you want to disable under the soul linker class, and it should darken in the skill tree.

    edit: db/re/skill_tree.txt and db/pre-re/skill_tree.txt comment out spirit of the assasin.

  4. holy crap that formula for hp is pretty complicated LOL, justin if its too complicated just make a script

    example:

    if (Class == 4015){
    set MaxHp, (your max hp limit on paladin);
    end;
    }
    

    of course, youd have to put in more checks like to check for lvl n stuff. wouldnt want a lvl 50 paladin having the max hp limit on ur server right when they change class xD

    emistry if u edit this i swear to god, this is just an example dont gimme this "You didnt close correctly this is how u do it" >_>

  5. download tortoiseSVN the program, make a new folder, open the folder and right click inside of it and choose svn Checkout, put that link they provided above in the url, make sure it says full repository. and hit okay. and it will start downloading your server, be aware you will need to compile a server afterwards this is like a brand new uncompiled server.

  6. wrong Dream thats for an old revision of it,

    groups: (
    {
    id: 0 /* group 0 is the default group for every new account */
    name: "Player"
    level: 0
    inherit: ( /*empty list*/ )
    commands: {
    /* no commands by default */ //<--- add commands here
    }
    permissions: {
    /* without this basic permissions regular players could not
    trade or party */
    can_trade: true
    can_party: true
    }
    },

    kakashi you need to add commands to that part of the group.conf file in ur /conf/ folder,

    to add commands you just type the name and put true afterwards i'll put an example

    groups: (
    {
    id: 0 /* group 0 is the default group for every new account */
    name: "Player"
    level: 0
    inherit: ( /*empty list*/ )
    commands: {
    /* no commands by default */
    rates: true
    commands: true
    help: true
    exp: true //<--- custom commands and what not. just read the file and you'll know how it works.
    }
    permissions: {
    /* without this basic permissions regular players could not
    trade or party */
    can_trade: true
    can_party: true
    }
    },

    • Upvote 1
  7. just like that cept u would put

    Oninit:
    setwall (the rest of the command idk it off the top of my head)
    end;

    it will put a barricade every time you restart your server :)

    edit: idk if theres supposed to be tabs on that barricade thing but yeah just follow the directions on how to use setwall or wahtever

×
×
  • Create New...