Jump to content

Brian

Members
  • Posts

    2223
  • Joined

  • Last visited

  • Days Won

    24

Everything posted by Brian

  1. Yup, use TortoiseSVN to do "SVN Checkout" from https://rathena.svn.sourceforge.net/svnroot/rathena/trunk/ SVN#Checkout
  2. Brian

    Take care!

    Bye Maki, see you in California =p
  3. Create and copy the /conf/import/ folder the same way: Then you will need to configure the MySQL settings in /conf/inter_athena.conf - connect to your MySQL Server - create a new user/password for rAthena to use - create a SQL database for rAthena - import main.sql and logs.sql - then open inter_athena.conf and set the MySQL user & password there - set the database name too.
  4. The error is because your /save folder does not exist. create a folder, /save open the /save-tmpl folder and copy all files to your /save folder (DON'T copy the .svn folder)
  5. This topic from the old forums helped me understand the Quest Log system a little more. http://www.eathena.ws/board/index.php?showtopic=184642
  6. Brian

    @whodrops

    If you do @reloaditemdb, you should also do a @reloadmobdb. bugreport:2397 http://www.eathena.ws/board/index.php?autocom=bugtracker&showbug=2397
  7. Brian

    So...Yeah

    use a "good" password http://www.google.co...fety/passwords/ https://accounts.goo...om/PasswordHelp don't reuse the same password or at least "Use a unique password for all your important accounts."
  8. I was unable to reproduce on r15456 with client 2010-07-28aRagexeRE. I thought the "Data size mismatch" error happens when you do a partial recompile (ex: only recompile the map-server but not the char or login).
  9. If the function expects an integer, use atoi to convert it: $@blax[atoi(strnpcinfo(2))] If the function expects a string, use +"" to conver it: set .@i, 1; set .@string$, .@i + "";
  10. Did you increase MAX_STORAGE larger than 731 ? There was a change in r14503: Possible solutions: - paged storage mod - decrease MAX_STORAGE to something smaller than 731
  11. The file /trunk/LICENSE is just a copy of the GNU GPL license (Version 3). I think the version of rAthena you downloaded is old. Instead, you should get the latest revision from the SVN.
  12. What SVN version of rAthena are you using? The latest version compiles and runs with no errors.
  13. When I resize my browser, after I refresh the page the menu bar automatically adds/removes the "More" menu if there are too many menu tabs wider than my browser's width. Theme = IP Board Browser = Chrome I wonder if the IPB Unlimited theme isn't correctly detecting the browser's width?
  14. Did you update MySQL Server recently? or change anything else on your server? I think in CentOS when you update mysql-server it has to restart it, and restarting MySQL Server would cause all connected MySQL clients to be disconnected. After you restart rAthena, has it happened again since then?
  15. OnInterIfInitOnce should work, it "will only execute once and will not execute if the map server reconnects to the char server later". You want the `web_vending_shops` table to be truncated when the map-server starts right?
  16. Also to add: if you only need to disable guild creation on 1 map (like for an event), you can use the guildlock mapflag. Mapflag#guildlock This will block changes to guild: /guild, invite, leave, expel, add/delete Alliance/Opposition, @changegm and /breakguild.
  17. Here is the edited whoisonline.php that does not show Map: whoisonline.php These are the changes I made: --- D:/svn/cerescp/trunk/whoisonline.php Tue Mar 10 18:24:33 2009 +++ D:/svn/cerescp/trunk/whoisonline.php Sun Jan 8 06:46:56 2012 @@ -44,10 +44,12 @@ <td align="left" class="head">".$lang['CLASS']."</td> <td align="center" class="head">".$lang['BLVLJLVL']."</td> "; - if (isset($_SESSION[$CONFIG_name.'level']) && $_SESSION[$CONFIG_name.'level'] >= $CONFIG['cp_admin']) - echo "<td align="center" class="head">".$lang['WHOISONLINE_COORDS']."</td>"; + if (isset($_SESSION[$CONFIG_name.'level']) && $_SESSION[$CONFIG_name.'level'] >= $CONFIG['cp_admin']) { + echo "<td align="center" class="head">".$lang['WHOISONLINE_COORDS']."</td>"; + echo " + <td align="left" class="head">".$lang['MAP']."</td>"; + } echo " - <td align="left" class="head">".$lang['MAP']."</td> </tr> "; if ($result) { @@ -70,12 +72,13 @@ </td> <td align="center">$line[2]/$line[3]</td> "; - if (isset($_SESSION[$CONFIG_name.'level']) && $_SESSION[$CONFIG_name.'level'] >= $CONFIG['cp_admin']) + if (isset($_SESSION[$CONFIG_name.'level']) && $_SESSION[$CONFIG_name.'level'] >= $CONFIG['cp_admin']) { echo "<td align="center">$line[4],$line[5]</td>"; - echo " + echo " <td align="left">$line[6]</td> </tr> "; + } } } echo "</table>";
  18. There are also some video tutorials here: http://code.google.com/p/fluxcp/wiki/Screencasts
  19. Is any of the "clif cleanup" Ai4rei is committing in eAthena related to this idea? I have not merged eAthena r15051-r15058 and I'm wondering if I should proceed or wait. r15051 r15052 r15053 r15054 r15055 - already merged r15056 r15057 r15058
  20. I created the rAthena Bug Archives category and created all the sub-categories, but there are some issues: I just realized this version of IP Tracker doesn't have the "Prune / Mass Move" like IP Tracker for IPB 2 Another inconvenience is that "Versions" (Trunk, Stable, Renewal, Charmerge, eAPP) are separate for each project. I remember Ind and I had to edit it so when you move a bug to another project, it retains its Status (but in the database, the status_id is changed to match the new project)
×
×
  • Create New...