Results 1 to 10 of 17

Hybrid View

  1. #1
    Player
    JagerForrester's Avatar
    Join Date
    Sep 2013
    Posts
    84
    Character
    Thunderin Lightnin
    World
    Coeurl
    Main Class
    Paladin Lv 60
    Sure, you "could" code the mobs to initially attack in alphabetical order, but it's strategically idiotic. I need to see evidence, like a YouTube video, the source code, or an answer from the author of the code.
    (0)

  2. #2
    Player
    Hobo's Avatar
    Join Date
    Apr 2011
    Location
    Limsa
    Posts
    128
    Character
    Yagyu Hobo
    World
    Siren
    Main Class
    Pugilist Lv 60
    Quote Originally Posted by JagerForrester View Post
    Sure, you "could" code the mobs to initially attack in alphabetical order, but it's strategically idiotic. I need to see evidence, like a YouTube video, the source code, or an answer from the author of the code.
    Basically they needed to program in "tie-breakers" into their tables and one way to achieve is to tie it to something unique... such as the character name or CharID.

    Primary Sort = Aggro
    Tie Breaker = Char name

    Basically they need to change their tie breaker to something that makes more sense but still is something unique. Maybe change to the following:

    Primary Sort = Aggro
    1st tie breaker = Highest HP
    2nd tie breaker = Char name
    (0)