Jump to content

PokemonRO

Members
  • Posts

    63
  • Joined

  • Last visited

Posts posted by PokemonRO

  1. i wouldn't worry about that warning. It just means you are running rathena as a root admin on your linux vps.

    When you login, you are using root/password

    If you were to create a new user such as furion and give it privledges, you can run rathena as well from your new user and you shouldn't get that error anymore.

    It is not a big deal in my opinion, don't worry too much about it.

  2. 1. Pretty sure requires source code modification, do you know how? Start looking in the status.c

    2. Don't believe there is a way to remove weight limit. I know it can be increased, but you would need to change a few things from the source, but even then I think theres is a max int value to it

  3. Try changing script_athena.conf

    // Default value of the 'max' argument of the script command 'input'.
    // When the 'max' argument isn't provided, this value is used instead.
    // Defaults to INT_MAX.
    //input_max_value: 2147483647
    input_max_value: 10000000
    

  4. I honestly find sql and compilation a headache in windows compared to linux.

    imho, it would be beneficial to him to get a cheap vps that is running centos.

    He could setup phpmyadmin, mysql plugins and drag over his rathena files quickly.

    you could have a server up in a short amount of time.

  5. Here is my Daily Points/Event Token with my own twist to it.

    1. There is an IP Checker, It can be redeemed once per IP every 24 hours upon login.

    if((getd("$G_LIP_"+@lastIP$)+(60*60*24)) <= @now) {
    

    Change 60*60*24 to the time you want. It is set for 24 hours right now.

    2. You can either set it to give an item or points

    //getitem 7227,1;
      //set(#pvppoints,#pvppoints+10);
    

    You can change the ID of the item and the amount.

    You can also use points if you want, just change the variable and the amount to your liking.

    daily.txt

×
×
  • Create New...