Results 1 to 3 of 3

Thread: ;narost quality of life fix

  1. #1
    Join Date
    Mar 2008
    Location
    Virginia, USA
    Posts
    287

    Default ;narost quality of life fix

    So it was starting to get to me that the right-click "view map" listing of maps within NAROST were sorted by uppercase before lowercase. Example, imt-Reim was listed at the top of the imt maps. I was able to truely ignore case and allow all maps to be sorted by just modifying one line of code. Not sure if Tillmen wishes to push an update out or not, but if you wish to do it yourself edit the following.

    NAROST.LIC line 93
    Code:
    BEFORE:
    used_maps.sort!
    
    AFTER:
    used_maps.sort_by!(&:downcase)
    Websites
    Lich Wiki Info
    EO Scripts Github Repository - Collaborative script development by the community.
    EO Lich5 Github Repository - Collaborative Lich Development for GS4 & DR for modern Ruby.
    Elanthia Online Forums Archive

    Player of Tysong

  2. #2
    Join Date
    Jul 2003
    Location
    St. Louis, MO
    Posts
    4,271

    Default

    I also patched my version of narost to sort tags as well which makes it much easier to find the herb you are looking for in the list:

    Code:
    171c171
    <                               room.tags.each { |tag|
    ---
    >                               room.tags.sort.each { |tag|
    Quote Originally Posted by Patrick McGoohan
    I am not a number, I am a free man!

  3. #3
    Join Date
    Mar 2016
    Location
    Wehnimer's Landing
    Posts
    24

    Default

    Ain't Ruby a grand language?

Similar Threads

  1. Narost - add a new map
    By Mice in forum The Lich Project
    Replies: 51
    Last Post: 12-02-2016, 09:18 PM
  2. Profanity FE and Quality of Life
    By Luxelle in forum The Lich Project
    Replies: 13
    Last Post: 09-26-2016, 04:11 AM
  3. Narost on Mac?
    By mockingboy in forum The Lich Project
    Replies: 4
    Last Post: 08-25-2011, 05:54 PM
  4. Narost - EG map
    By phantasm in forum The Lich Project
    Replies: 0
    Last Post: 10-31-2010, 02:09 AM
  5. Narost
    By Swami71 in forum The Lich Project
    Replies: 4
    Last Post: 08-16-2009, 03:17 PM

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •