Jump to content

Brian

Members
  • Posts

    2223
  • Joined

  • Last visited

  • Days Won

    24

Everything posted by Brian

  1. Brian

    DUAL SERVER

    Do you want to setup 2 login,char,map (basically 2 completely separate servers) ? Or do you want 1 login, 2 char,map (players login with 1 user/pass, then pick the server) ? What steps from the wiki did you follow so far, And which part did you get stuck at?
  2. Brian

    Alliance Chat

    slash-commands are client-side and may be harder to implement.
  3. Brian

    Alliance Chat

    I do not use it because there's no one else to chat with on my localhost test server.
  4. SourceForge is retiring their Hosted Apps services. Please update your links to our rAthena Trac: http://trac.rathena.org/ The link in the forum header and the [ rev= ] BBCode have already been updated.
  5. Option 1: trunk/npc/scripts_athena.conf // --------------------- Battle Grounds ------------------------- // - Flavius ---------------------------------------------------- npc: npc/battleground/flavius/flavius_enter.txt npc: npc/battleground/flavius/flavius01.txt npc: npc/battleground/flavius/flavius02.txt // - Kreiger Von Midgard ---------------------------------------- npc: npc/battleground/kvm/kvm_enter.txt npc: npc/battleground/kvm/kvm_item_pay.txt npc: npc/battleground/kvm/kvm01.txt npc: npc/battleground/kvm/kvm02.txt npc: npc/battleground/kvm/kvm03.txt // - Tierra Gorge ----------------------------------------------- npc: npc/battleground/tierra/tierra_enter.txt npc: npc/battleground/tierra/tierra01.txt npc: npc/battleground/tierra/tierra02.txt // -------------------------------------------------------------- npc: npc/battleground/bg_common.txt Option 2: trunk/npc/scripts_custom.conf // -- Unofficial Battlegrounds //npc: npc/custom/battleground/bg_common.txt //npc: npc/custom/battleground/bg_tierra_01.txt //npc: npc/custom/battleground/bg_tierra_02.txt //npc: npc/custom/battleground/bg_flavius_01.txt //npc: npc/custom/battleground/bg_flavius_02.txt //npc: npc/custom/battleground/bg_kvm01.txt //npc: npc/custom/battleground/bg_kvm02.txt //npc: npc/custom/battleground/bg_kvm03.txt Pick one and enable it. Disable the other by commenting out those lines.
  6. Looks like you enabled the BG scripts in /npc/custom/battleground/ on top of the original ones /npc/battleground/. Only enable one set at a time.
  7. stop the login, char, and map servers run this first SQL query: DELETE FROM `guild_member` WHERE `char_id` NOT IN (SELECT `char_id` FROM `guild`); run this second SQL query: UPDATE `char` SET `guild_id`=0 WHERE `char_id` NOT IN (SELECT `char_id` FROM `guild_member`);
  8. ^ but it's the login-server checking, and I think battle_config is only stored in the map-server's RAM.
  9. hmm not sure if it was down earlier? but the old eAthena Forums are working fine for me: http://www.eathena.ws/board/index.php?showtopic=259991 http://www.eathena.ws/board/index.php?showtopic=268355
  10. (by Nyiaj on deviantART) and a clean wallpaper!
  11. You can SVN_Checkout any revision you want. Linux: svn checkout -r 16690 https://rathena.svn.sourceforge.net/svnroot/rathena/trunk/ Windows (TortoiseSVN): enter "16690" in the Revision box There are some pre-compiled downloads on SourceForge: http://sourceforge.net/projects/rathena/files/trunk/ (but not ever single revision).
  12. I vote for the simple/lazy method: increment a version number or touch a file to indicate a SQL_upgrade file has been applied. Don't check actual table schema because as Trojal said, they might have customizations.
  13. I think r13021. http://www.eathena.ws/board/index.php?showtopic=194375
  14. You could also change how "mob-dropped items" are created, so they are created as identified items. trunk/src/map/itemdb.c /*========================================== * Specifies if item-type should drop unidentified. *------------------------------------------*/ int itemdb_isidentified(int nameid) { int type=itemdb_type(nameid); switch (type) { case IT_WEAPON: case IT_ARMOR: case IT_PETARMOR: return 0; default: return 1; } } Change that function to always return 1, meaning all item types will drop identified: /*========================================== * Specifies if item-type should drop unidentified. *------------------------------------------*/ int itemdb_isidentified(int nameid) { return 1; }
  15. Some (probably high rate) servers allow @go/@warp/@load when dead so players can hotkey an @command and be lazy and not have to click "Return to Save Point". Which majority do we cater to? Also, server owners might want to allow GMs to use @commands while dead. Adding to the above suggestions, how about we add a permission to trunk/conf/groups.conf to allow that group to use commands while dead. Maybe call it 'commands_while_dead' or 'use_commands_while_dead'.
  16. Brian

    Proposal: @cart

    Use your SVN Commit powers
  17. You forgot to run this SQL upgrade file: trunk/sql-files/upgrade_svn16663.sql
  18. Yes, some people still use text logs for their own reasons. Exactly how many? we wouldn't know without topic:69691 or polling them.
  19. Done in r16729/rathena/trunk/conf/help.txt Changed the column spacing in @go (town list) and @job (jobname list) so it lines up for Arial font, instead of fixed-width fonts.
  20. Would any of this change trunk/conf/help.txt ? I'm about to edit some commands to use atcommand_help_string() and read their help text from /conf/help.txt instead of soft-coded messages in /conf/msg_athena.conf
×
×
  • Create New...