Jump to content

Brian

Members
  • Posts

    2223
  • Joined

  • Last visited

  • Days Won

    24

Everything posted by Brian

  1. Brian

    My SQL problem

    <using password: YES> that means somewhere, a password is set for the 'root' MySQL user. Check your import folder /conf/import/inter_conf.txt
  2. Brian

    My SQL problem

    SQL configurations are in trunk/conf/inter_athena.conf
  3. There are 2 places in script.c you have to add your script command. For example get_revision: BUILDIN_FUNC(get_revision) { const char * revision; if ( (revision = get_svn_revision()) != 0 ) script_pushint(st,atoi(revision)); else script_pushint(st,-1);//unknown return 0; } BUILDIN_DEF(get_revision,""),
  4. In the SQL table `party`, the `exp` column stores the Exp Share status. I'm guessing 0 is off and 1 is on. You might want to double check that. Remember that the value in SQL is not updated immediately when they change Exp Share in-game. I think it's autosaved every 300 seconds.
  5. Your server is missing the delchar and charat script commands. Are you not using rAthena?
  6. Are you doing 1 login, 1 char, 2 map servers? Or 1 login, 2 char+map servers?
  7. They are located in the individual guild scripts.For example: trunk/npc/guild/aldeg_cas01.txt you would commend out this NPC // Guild Treasure Spawns //============================================================ aldeg_cas01,118,223,0 duplicate(Gld_Trea_Spawn) Treasure#aldeg_cas01 -1
  8. trunk/src/map/pc.c around line 4706 intif_broadcast(message,strlen(message)+1,0); bc_self is "3", so change that line to: intif_broadcast(message,strlen(message)+1,3);
  9. I think you would have to find all localtime in /src and modify them to use gmtime instead. I'm not sure of the exact syntax.
  10. You can have multiple map-servers with some map(s) on each one, but I don't think there's any way to assign a map to multiple map-servers for failover.
  11. Version 2013-06-13

    462 downloads

    This is a modified version of the rAthena Stylist (trunk/npc/custom/stylist.txt) It adds 2 new menu options "Next autoscroll" and "Previous autoscroll". When a player picks these options, after they close the NPC message box, the script will begin scrolling through palettes with a 1-second progressbar delay. To stop scrolling, just move your character and interrupt the progressbar. Other changes from the original rAthena Stylist: after selecting "Previous", then Previous appears before Next in the menu starts at your current palette instead of always starting at #1 the first menu (Cloth color, Hairstyle, Hair color) displays your current palette numbers
    Free
  12. File Name: Stylist with autoscroll File Submitter: Brian File Submitted: 13 Jun 2013 File Category: Utilities Content Author: Brian, Euphy This is a modified version of the rAthena Stylist (trunk/npc/custom/stylist.txt) It adds 2 new menu options "Next autoscroll" and "Previous autoscroll". When a player picks these options, after they close the NPC message box, the script will begin scrolling through palettes with a 1-second progressbar delay. To stop scrolling, just move your character and interrupt the progressbar. Other changes from the original rAthena Stylist: after selecting "Previous", then Previous appears before Next in the menu starts at your current palette instead of always starting at #1 the first menu (Cloth color, Hairstyle, Hair color) displays your current palette numbers Click here to download this file
  13. Thanks for the bug report, I will fix this in the SVN.
  14. Yes, just @reloadscript or restart the map-server.
  15. Try downloading it from the SVN here: http://rathena-tools.googlecode.com/svn/trunk/public_html/rathena.sourceforge.net/tools/login_background/ You could also take a look at the PHP source: https://code.google.com/p/rathena-tools/source/browse/trunk/public_html/rathena.sourceforge.net/tools/login_background/index.php
  16. So when you try to connect with a client, it times out? What message do you see in the map-server? Does it show any characters logging in?
  17. What host are you transferring your RO server to? Is it running Linux or Windows?
  18. Please ask your friend to send an email to: forums ATTrathena . org Include the username he would like to use, and we'll manually register his forum account.
  19. This is a feature of the channel system: trunk/conf/channels.conf /* "map_local_channel" is an instanced channel unique to each map. */ map_local_channel: true map_local_channel_name: "map" map_local_channel_color: "Yellow" map_local_channel_autojoin: true /* Disable autojoin in specific maps through mapflag 'nomapchannelautojoin'. */ If you want, you can disable map channels (map_local_channel: false) or disable autojoin (map_local_channel_autojoin: false).
  20. If you edit trunk/npc/scripts_guild.conf and comment out the castles that are disabled this month, then no treasure will spawn (even if a guild owns the disabled castle).
  21. Your webpage displays fine: http://cataclysmicro57.zxq.net/thor/notice.html You are missing a trailing slash in the base_url. It should be: base_url=http://cataclysmicro57.zxq.net/thor/
  22. Your latest patch (2013-06-11patcher_update.thor) -- is that an update to your Thor Patcher? When you used Thor Generator, did you select Input = Patcher & Game EXE ?
  23. You could use a temporary (or permanent) char variable to keep track of how many Sticky Mucus they currently have. The script could check when that number changes, meaning the monster they just killed dropped one. OnNPCKillEvent: if (Q88003 == 1) { if (countitem(938)<=15 && countitem(938)!=@count_938) { set @count_938, countitem(938); dispbottom "You have [ "+ ( @count_938 ) +" / 15 ] Sticky Mucus"; } } end; OnPCLoginEvent: set @count_938, countitem(938); end;
  24. It's rsupack, by Ai4rei: http://www.eathena.ws/board/index.php?showtopic=235987 http://nn.nachtwolke.com/dev/rsu/
  25. 1. HostA needs the server config files for login & char servers HostB needs everything else. 2. You could start 'screen' first, then ./login-server_sql & and ./char-server_sql & 3. HostA: in /conf/char_athena.conf char_ip: <IP_of_HostA> HostB: /conf/map_athena.conf char_ip: <IP_of_HostA> map_ip: <IP_of_HostB> SQL settings on both hosts should point to the MySQL Server on HostA. Your clientinfo.xml should point to HostA (the one running login-server_sql).
×
×
  • Create New...