Jump to content

Arcenciel

Members
  • Posts

    1315
  • Joined

  • Last visited

  • Days Won

    10

Posts posted by Arcenciel

  1. I'm not sure how viable this is.

    Depending on how much players you have, the server that will host your SQL data will constantly be bombarded with queries.

    Not sure how much resources will this consume, again with the number of processes that's going to be run in your server.

  2. - make rAthena default in all files, since there are places where it is Rathena (Still missing in the ASCII art)

    It has been decided a long time ago that ASCII art will no longer be used in any of the files and will only be displayed in the _servers consoles.

  3. It's not working :/ I accidentally put setmounting(); below OnPCLoadMapEvent that's why I said it's working but there's a problem with it. If they are not on mount and when they go to Prontera they are already mounted and when they type @go 0 again the mount disappear. Any ideas?

    I thought you wanted mounts to be disabled in Prontera? Whenever someone goes to Prontera, the script removes their mount no matter what.

    To disable Reins of Mount from being used in Prontera edit the script in the item_db entry to this:

    if (strcharinfo(3) != prontera) { setmounting(); }

  4. Odd...guess it doesn't work the same way as setriding... There's no documentation for setmounting so I'm just guessing everything.

    Try this instead

    OnPCLoadMapEvent:
    if (strcharinfo(3) == prontera && checkmounting() == 1 ) { setmounting(); }
    end;

×
×
  • Create New...