Jump to content

Ehcloprom

Members
  • Posts

    82
  • Joined

  • Last visited

Posts posted by Ehcloprom

  1.  

     

     

    I'm not sure why you would make a new .conf for 1 script 

     

    Just put freebies.txt inside of the folder named "custom"

     

    Then edit scripts_custom.conf

     

    and add this line

     

    npc: npc/custom/freebies.txt

     

    Also try this as that script isn't going to work I haven't tested it but it should work.

    this works when i logged in my gm account it gives me the items, but when i logged in my test account and create a new character it does not give me the items.

     

    thanks man.

     

     

    After reading this I decided to test my script on 4 different accounts and it worked on each one. I do use Hercules but I don't think that matters. Try reloading server maybe it's just some fluke?

     

    i dont know why it works for you, i tried preloading the server, restarting server, reloading scripts, and stil doesnt work on any new player characters/accounts

     

     

    Are you sure it even actually loaded and worked on your GM account as you said? did you use the scripts_custom.conf? or your "gmh_freenpc.conf" and if you did is it set to load in the scripts_main.conf?

     

    Besides this I have no clue why it would work for only your GM account one single time. Maybe someone else can help or you can use the search feature I'm sure someone else made another script.

  2.  

    I'm not sure why you would make a new .conf for 1 script 

     

    Just put freebies.txt inside of the folder named "custom"

     

    Then edit scripts_custom.conf

     

    and add this line

     

    npc: npc/custom/freebies.txt

     

    Also try this as that script isn't going to work I haven't tested it but it should work.

    this works when i logged in my gm account it gives me the items, but when i logged in my test account and create a new character it does not give me the items.

     

    thanks man.

     

     

    After reading this I decided to test my script on 4 different accounts and it worked on each one. I do use Hercules but I don't think that matters. Try reloading server maybe it's just some fluke?

  3. I'm not sure why you would make a new .conf for 1 script 

     

    Just put freebies.txt inside of the folder named "custom"

     

    Then edit scripts_custom.conf

     

    and add this line

     

    npc: npc/custom/freebies.txt

     

    Also try this as that script isn't going to work I haven't tested it but it should work.

    freebies.txt

  4. LOL a search function XD.

    never noticed it....

     

    BUT

     

    did you press enter?

    I searched for custom map

    and got these 5 pages 1st

     

    Untitled.png

     

    I don't quite understand what's so difficult about finding this page you can also go to

     

    Category:

    I think the problem here is simply that you don't know how to use the wiki.

     

    Anyways I wish the best of luck with your wikia but without a large amount of contributors it will go nowhere (no offence) I just hate to see your hard work be unused. but hey I may be wrong but that's just my opinion.

    • Upvote 2
  5. I tried not to respond to this for so long but,

     

     

    Brian,

    The rAthena wiki is awefull.

    From the main page you cant find anything at all.

    Sure for beginners theres that nice little window in the top right.

    But for some reason google is the only way for me to actually find anyting on your wiki.

     

    For starters: Untitled.png

     

    One thing I can agree is that the current wiki does indeed need to to be reorganized.

     

    But as far as actually having to create an entire new wiki is an aweful idea all that does is spread information throughout multiple websites the whole point of the wiki is to be able to aquire information quickly and all in one place.

     

    And also how much have you actually contributed to the rA wiki? (0) Yeah it's not perfect but it's far better then having to forum search thoughout rA.

     

    sietse I'm not trying to bash down you in anyway I'm glad to see someone trying to make things easier but I think your going in the wrong direction why not try to improve the current wiki?

    • Upvote 1
  6. I have never ran rAthena/eAthena on any operating system other then windows therefore I'm left with a few questions.

     

    For starters from what I read compiling the server is done via SSH but as far as uploading my own files to my didicated server and editing current files I have no idea how that would be done or if it would be a "pain in the ass" therefore am I left with no other choice then paying an extra 15$ - 20$ a month for Direct Admin or Cpanel/WHM. (or something like that - Any recommendations?)

     

    It's not that huge of a deal getting something like the two above CPs if it would make it that much easier to edit files

    (especially since my server is currently closed beta and will obviously require constant editing.)

     

    Any recommendations for me before I go head and order my didicated server?

     

     

    Here's an list of Control Panels offered by the host I'll be using

     

    • OpenVZ /w HyperVM
    • Webmin
    • SolusVM - Master (OpenVZ)
    • DirectAdmin
    • Parallels Plesk Panel 11
    • cPanel/WHM v11
  7. I'm pretty sure giving it another name would be difficult you would probably have to duplicate the skill in the source .

    Each skill get's it's name from skillnametable.txt

    Such as:

    // Lord_Knight Skills \\
    LK_AURABLADE#Aura_Blade#
    LK_BERSERK#Berserk#
    LK_CONCENTRATION#Concentration#
    

    Changing that would change the name of the entire skill so it change it for LK as well.

    So I guess the only way would to too make a duplicate then make a entire new skill via rA's source.

    With a different ID and such then add another line in skillnametable.txt

    But you can give concentration to another class easily:

    JOB_ID_HERE,357,5,4,5,55,5,63,1,0,0,0,0 //LK_CONCENTRATION#Concentration#
    

    under another job in skill_tree

    For example let's give Concentration to High Priests.

    //HighPriest
    4009,357,5,4,5,55,5,63,1,0,0,0,0 //LK_CONCENTRATION#Concentration#
    4009,1,9,0,0,0,0,0,0,0,0,0,0 //NV_BASIC#Basic Skill#
    ...
    ...
    ...
    

  8. Couldn't figure out how to rename files on codeblocks so I made a new cpp file and copied and pasted my noob ass calculator ive bee making.

    #include <iostream>
    #include <string>
    #include <limits>
    
    using namespace std;
    
    int main(){
    
           /*Setting up the 3 main variables*/
    
           int calc, num1, num2;
    
           /*In forming the user to input the first number.*/
    
           cout << endl << "\nPlease enter the first number: ";
    
           /*Setting the variable 'num1' to the number the user input.
             and checking to make sure the user input is a whole number.*/
    
           while (!(cin >> num1)){
               cin.clear();
               cin.ignore(numeric_limits<streamsize>::max(),'\n');
               cout << endl << "Please input a proper 'whole' number!: " << "\n\nPlease enter the first number: ";}
    
           cout << endl << "\nPlease enter the second number: ";
    
           /*Setting the variable 'num2' to the number the user input.
             and checking to make sure the user input is a whole number.*/
    
           while (!(cin >> num2)){
               cin.clear();
               cin.ignore(numeric_limits<streamsize>::max(),'\n');
               cout << endl << "Please input a proper 'whole' number!: " << "\n\nPlease enter the second number: ";}
    
           /*A little 'menu' like output informing users of what number for each operation.*/
    
           cout << "\n1: Add\n2: Subtract\n3: Multiply\n4: Divide\n\n" << "Option: ";
    
           /*Setting the variable 'calc' to the number the user input,so the calculator knows what operation to use.
             and checking to make sure the user input is a whole number.*/
    
           while (!(cin >> calc)){
               cin.clear();
               cin.ignore(numeric_limits<streamsize>::max(),'\n');
               cout << endl << "Please input 1-4: " << "\n\nOption: ";}
    
           /*Checking what operation was chosen and doing the math.*/
    
           if(calc == 1){
               cout << endl << num1 << "+" << num2 << "= " << num1 + num2;}
    
           if(calc == 2){
               cout << endl << num1 << "-" << num2 << "= " << num1 - num2;}
    
           if(calc == 3){
               cout << endl << num1 << "x" << num2 << "= " << num1 * num2;}
    
           if(calc == 4){
               cout << endl << num1 << "/" << num2 << "= " << num1 / num2;}
    
       return(0);
    }

    Just started learning C++ about 7-8 hours ago.

  9. How to select renewal? have script?

    It's enabled by default this is rAthena

    Please read everything here before posting / making a thread with questions.

    @TOPIC

    Pre-RE simply because I'm an oldschool player I don't even know the third class skills at all and obviously no private server has official skill behavior yet (even if the say they do) so I find it kind of pointless besides that the Renewal features / formulas and Clients are okay BESIDES the fixed delays.

  10. I'm using rAsql.

    I'm pretty positive rA SQL will not allow any other connections besides from the local machine.

    sql.db_hostname: WAN_IP

    log_db_ip: WAN_IP

    By default rAsql listens on the same port as regular MySQL server, ie. 3306, and accepts connections only from localhost.

    The server can't communicate with MySQL from WAN you must use a more local address 127.0.0.1 (Loop Back Address)

×
×
  • Create New...