+ Reply to Thread
Page 5 of 15 FirstFirst 1 2 3 4 5 6 7 8 9 ... LastLast
Results 61 to 75 of 220
Like Tree2Likes

  Click here to go to the first Rift Team post in this thread.   Thread: Suggestions, Bug Reports, and Other Feedback

  1.   Click here to go to the next Rift Team post in this thread.   #61
    RIFT Moderator
    Join Date
    Oct 2010
    Posts
    897

    Default

    Quote Originally Posted by DoomSprout View Post
    I'm not aware of any way to tell if a unit has mentored down to a lower level. This is necessary to allow unit frames to display a mentored indicator.
    Huh. Good call, that won't be hard to add.

  2. #62
    Plane Walker Adelea's Avatar
    Join Date
    Mar 2011
    Posts
    457

    Default Inspect.* return values

    Would it be possible to have some way of having Inspect.* functions return something other than nil when the reason its nil is because the data isnt available yet, rather than there not being any ?

    For example, in my Onslaught addon, I have

    Local ql = Inspect.Quest.List()

    Now, sometimes after changing zone this comes back with a nil value - and its not possible as far as I can see, to tell the difference between, "this data is not available", and "there is no data to return"
    http://forums.riftgame.com/image.php?type=sigpic&userid=125779&dateline=13553  38065

  3.   Click here to go to the next Rift Team post in this thread.   #63
    RIFT Moderator
    Join Date
    Oct 2010
    Posts
    897

    Default

    Quote Originally Posted by Adelea View Post
    Would it be possible to have some way of having Inspect.* functions return something other than nil when the reason its nil is because the data isnt available yet, rather than there not being any ?
    If the quest list is available but there are no quests, you'll get an empty table. nil occurs only when the quest list is simply not available.

  4. #64
    Rift Disciple chuckySTAR's Avatar
    Join Date
    Feb 2011
    Posts
    138

    Default

    Would like to see the internal font list of RIFT, so we haven't to supply fonts by ourselves.
    And a monospaced font like Courier New would be appreciated.

    And could you return this in all :Set*-Methods?

    local frame = UI.CreateFrame()
    frame:SetPoint()
    frame:SetText()
    ...
    is a pain.

    Code:
    local frame = UI.CreateFrame()
    frame:SetPoint()
         :SetText()
         :SetXYZ()
    ...
    Vince
    GAME OVER
    WORLD FIRST PRE NERFZ REGULOS

  5. #65
    Plane Touched
    Join Date
    Jan 2011
    Posts
    279

    Default

    The list returned by Inspect.Quest.Complete() does not update when you actually complete a quest. I have an event handler for Event.Quest.Complete which simply tells my addon to reload the Inspect.Quest.Complete() list, but the list still holds the old values (and not for the quest you just completed).

    Logging out/back in does not update the list either, only exiting Rift and restarting does...it looks like the list is cached somewhere when you first load the game.

    Or can I just take the elements passed to the Event.Quest.Complete handler and add them to the list manually? This would be an OK alternative I guess.
    Last edited by Sarim; 12-08-2012 at 04:14 AM.

  6. #66
    RIFT Community Ambassador the_real_seebs's Avatar
    Join Date
    Jan 2011
    Posts
    13,443

    Thumbs up

    Suggestion for a Text feature:

    If a width is set, have a "truncate-with-elipses" option.

    Rationale: You CAN do this in Lua code, but it is extremely hard, because you have to experiment iteratively to find a width at which this works. Since the fonts are proportional, you can't easily guess how much you would have to strip to reach a given width, so you end up with something like:

    Code:
    foo:SetText(s)
    if foo:GetWidth() > n then
      s = s .. "..."
      while foo:GetWidth() > n and #s > 3
        s = string.sub(s, 1, #s - 4) .. "..."
        foo:SetText(s)
      end
    end
    My guess is that the lower-level code has a MUCH easier time with tasks like "render the initial substring of this that is at most N pixels wide".
    Last edited by the_real_seebs; 12-11-2012 at 01:16 PM.
    You can play WoW in any MMO. You don't have to play WoW in RIFT. Oh, and no, RIFT is not a WoW clone. Not having fun any more? Learn to play, noob! I don't speak for Riftui, but I moderate stuff there. Got ideas for improving the RIFT community? Feel free to PM me. Just came back? Welcome back! Here's what's changed. (NOTE NEW URL)

  7.   Click here to go to the next Rift Team post in this thread.   #67
    RIFT Moderator
    Join Date
    Oct 2010
    Posts
    897

    Default

    Quote Originally Posted by the_real_seebs View Post
    My guess is that the lower-level code has a MUCH easier time with tasks like "render the initial substring of this that is at most N pixels wide".
    Fun fact: your example code is almost exactly how we do it internally.

    (Although we use a binary search and cache the result - highly recommended if you want performance.)

  8. #68
    RIFT Community Ambassador the_real_seebs's Avatar
    Join Date
    Jan 2011
    Posts
    13,443

    Default

    Quote Originally Posted by ZorbaTHut View Post
    Fun fact: your example code is almost exactly how we do it internally.

    (Although we use a binary search and cache the result - highly recommended if you want performance.)
    Yeah. My guess is mostly that you can do it with a MUCH lower overhead than we can, though.
    You can play WoW in any MMO. You don't have to play WoW in RIFT. Oh, and no, RIFT is not a WoW clone. Not having fun any more? Learn to play, noob! I don't speak for Riftui, but I moderate stuff there. Got ideas for improving the RIFT community? Feel free to PM me. Just came back? Welcome back! Here's what's changed. (NOTE NEW URL)

  9. #69
    Plane Walker Adelea's Avatar
    Join Date
    Mar 2011
    Posts
    457

    Default

    Quote Originally Posted by ZorbaTHut
    Quote Originally Posted by Adelea
    The new stats, ResistAll and CritPower are not reported in the .stats member
    These will be fixed in 2.1.
    This doesnt seem the case, they are still missing.
    http://forums.riftgame.com/image.php?type=sigpic&userid=125779&dateline=13553  38065

  10. #70
    Telaran
    Join Date
    Jun 2011
    Posts
    80

    Default

    What are the changes you could add (to frame, text, texture etc etc etc) .Event.Visible and Event.NotVisible or something along those lines.... I need a way to fire off functions when windows become visible and not visible =P

  11. #71
    Rift Chaser Imhothar's Avatar
    Join Date
    Feb 2012
    Posts
    395

    Default

    Code:
    Command.Tooltip(Inspect.Item.Detail("sg01.001").type)
    Command.Tooltip(Inspect.Item.Detail("sg01.001").id)
    The first line works as expected.
    The second one does nothing.
    Author of the Imhothar's Bags addon.

  12. #72
    Soulwalker
    Join Date
    Feb 2011
    Posts
    4

    Default

    hi,

    I worked with the Addon Message System to send messages between different Shards and I have noticed Inspect.Time.Server() has a deviation of over 10 seconds.

    NTP not enabled? This is a problem if you want to work with timestamps.


    Perhaps that is the reason why some servers can join earlier conquest ;)
    Last edited by MattiEN; 01-06-2013 at 04:46 AM.

  13. #73
    Official Rift Founding Fan Site Operator bctrainers's Avatar
    Join Date
    Apr 2010
    Location
    Kansas, USA
    Posts
    2,659

    Default

    Quote Originally Posted by MattiEN View Post
    hi,

    I worked with the Addon Message System to send messages between different Shards and I have noticed Inspect.Time.Server() has a deviation of over 10 seconds.

    NTP not enabled? This is a problem if you want to work with timestamps.


    Perhaps that is the reason why some servers can join earlier conquest ;)
    I have noticed this myself as well. There always seems to be a 5 to 15 second time deviation between the shards. I assume the servers do not sync up to a local or remote NTP daemon.

  14. #74
    Ascendant Credo's Avatar
    Join Date
    Jan 2011
    Posts
    2,836

    Default

    As far as I can tell this can't be done yet, but I'd like it if we could inspect the souls of group/raid members without having to inspect buffs and hope for the best. Points would be cool, but not highly important. It would make the PvP Data Analysis tool I'm writing a lot more powerful if I could keep track of damage by soul distribution.

  15. #75
    Ascendant Credo's Avatar
    Join Date
    Jan 2011
    Posts
    2,836

    Default

    Also, as a thread in this forum states SetFont(source,font) is not working.

+ Reply to Thread
Page 5 of 15 FirstFirst 1 2 3 4 5 6 7 8 9 ... LastLast

Bookmarks

Posting Permissions

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