Jump to content

en_dev

Members
  • Posts

    113
  • Joined

  • Last visited

Posts posted by en_dev

  1. in ur server files, conf->char_athena.conf

    around line 99, you'll find

    start_point: new_1-1,53,111 ( which is training ground )

    modify it to

    start_point: prontera,101,101 ( which is prontera ) change the x and y coordinates to your desired location.

    new start point only applies on new character.

  2. that warning will not really do anything bad in your server, it will just rename any duplicate npc names, prolly the downside is, its gonna be hard for you to enable disable any npc during ingame, you could do, if you wanna keep the npc name as it is, you can add #uniquename after npc name, example, mynpc#d1, up to mynpc#d99.

  3. okay, on your first entry on your login table ( database )

    change your account_id = 1, userid = rag and user_pass = serverpsw to account_id = 2000000 , userid = s1 , user_pass = p1

    or change those userid and user_pass information based on your conf->char_athena.conf and map.conf ( username and password )

  4. once you've changed the account_id to 2000000, set its username and password to s1 and p1, cuz it looks like in config files, u got the default username and password which is s1 and p1. unless you've changed that, make sure they all match.

  5. This will give you idea.

    if(.takeQuest == 0){
    mes "Take Quest?";
    .takeQuest == 1;
    addtimer 10800000, strnpcinfo(3)+"::On3Hours";
    end;
    }
    else{
    mes "Sorry, you have to wait 3hrs to take the quest again";
    end;
    }
    On3Hours:
    .takeQuest, 1;
    end;
    

  6. You cant use the default account, was s1 and p1 and u just changed it to admin. I can tell by the account id which is 2000000, create a new account, like b4 you login, do something like myusername_M ( for male ) myusername_F ( for female ) then type any password you want.

  7. {bonus bAllStats,2; if(isequipped(2433,2537)) {bonus2 bSubEle,Ele_Water,15; bonus2 bSubEle,Ele_Earth,15; bonus2 bSubEle,Ele_Fire,15; bonus2 bSubEle,Ele_Wind,15; bonus2 bSubEle,Ele_Poison,15; bonus2 bSubEle,Ele_Holy,15; bonus2 bSubEle,Ele_Dark,15; bonus2 bSubEle,Ele_Ghost,15; bonus2 bSubEle,Ele_Undead,15;bonus2 bResEff,Eff_Freeze,15;}},{},{}

    you can remove bonus bAllStats,2; if you dont want them to get any +2 to all stats. and just have 15% resistance.

×
×
  • Create New...