Closed Thread
Page 29 of 33 FirstFirst ... 19 25 26 27 28 29 30 31 32 33 LastLast
Results 421 to 435 of 488
Like Tree38Likes

  Click here to go to the first Rift Team post in this thread.   Thread: Post Your Small Addon API Suggestions Here

  1. #421
    Soulwalker Scorcher24's Avatar
    Join Date
    Dec 2010
    Posts
    18

    Default

    A functionality like GoGo Mount from Wow would be cool.
    Was the only Addon I had.
    You could enable a hotkey for mounting and then it casts a random mount each time you mount up.

  2. #422
    RIFT Guide Writer Noshei's Avatar
    Join Date
    Feb 2011
    Posts
    1,107

    Default

    any chance we could get a new field on Inspect.Unit.Detail for the units Global CD?

  3. #423
    RIFT Guide Writer Noshei's Avatar
    Join Date
    Feb 2011
    Posts
    1,107

    Default

    also would be great if we can get an option to make text scale to the height of the frame it is in.

  4. #424
    Wym
    Wym is offline
    Soulwalker
    Join Date
    Jun 2012
    Posts
    2

    Default

    Quote Originally Posted by the_real_seebs View Post
    Inspect.Time.Server()

    Returns something similar to os.time(), only provided by the server and guaranteed to be monotonically-increasing and probably correct.
    I second this. I'd love an addon that tells me which daily quests i've done today, but both time functions base on the time your session started, so there's no way to tell what "today" is.

  5. #425
    RIFT Guide Writer Noshei's Avatar
    Join Date
    Feb 2011
    Posts
    1,107

    Default

    Quote Originally Posted by Wym View Post
    I second this. I'd love an addon that tells me which daily quests i've done today, but both time functions base on the time your session started, so there's no way to tell what "today" is.
    this is already really in the game through the os.time function. This will return the unix time for the host os, this is obviously dependent on the users computer having a fairly accurate time of course. I don't really see that as a draw back though as it is pretty much common practice to have the time synced from a time server (this is the default setting in windows).


    oh that and Inspect.Time.Server is already on the PTS.
    Last edited by Noshei; 06-08-2012 at 05:33 AM.

  6. #426
    Rift Disciple chuckySTAR's Avatar
    Join Date
    Feb 2011
    Posts
    139

    Default

    Would like to see MouseEnter/MouseLeave and MouseOver/MouseOut events. Because i have some problems detecting MouseIn for my addon frame.
    Enter: http://i.imgur.com/IVmeZ.jpg
    Leave: http://i.imgur.com/TsZYn.jpg
    I want to accomplish that.

    One way around was creating a frame above all other frames, set mouse masking to limited and catch MouseIn/MouseOut events. But this solution consumes other MouseIn/Out events i need :/

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

    Default

    Quote Originally Posted by chuckySTAR View Post
    Would like to see MouseEnter/MouseLeave and MouseOver/MouseOut events. Because i have some problems detecting MouseIn for my addon frame.
    Enter: http://i.imgur.com/IVmeZ.jpg
    Leave: http://i.imgur.com/TsZYn.jpg
    I want to accomplish that.

    One way around was creating a frame above all other frames, set mouse masking to limited and catch MouseIn/MouseOut events. But this solution consumes other MouseIn/Out events i need :/
    Good news and bad news:

    The good news is that I think I've come up with a way to provide this.

    The bad news is that, if it happens, it's going to be part of a full event system redesign, and that's gonna take a bit.

    I'm not sure if that's encouraging or not, but that's the state of things.

  8. #428
    RIFT Guide Writer Noshei's Avatar
    Join Date
    Feb 2011
    Posts
    1,107

    Default

    would it be possible to get an event for when the "You have mail." message is displayed in the console?

  9. #429
    RIFT Guide Writer Noshei's Avatar
    Join Date
    Feb 2011
    Posts
    1,107

    Default

    I'm sure this has been asked for before but would it be possible to get:

    Inspect.Guild.List() - returns list of guild memebers by id and status (offline, mobile, online)
    Inspect.Guild.Detail() - with no parameters returns detailed information about the guild, basically the stuff in each of the tabs except roster
    Inspect.Guild.Detail() - with parameter of player id, returns detailed information on that player (guild only information: calling, zone, status, level, name, rank, score, member notes and officer notes(if accessible))

  10. #430
    Plane Walker Kreiri's Avatar
    Join Date
    Feb 2011
    Posts
    402

    Default

    UI.Native:GetScale()

    It would be much easier to maintain proper size of my minimap button (relative to size of minimap), if I had this.
    Feminism is the radical notion that women are people.

  11. #431
    Rift Chaser Imhothar's Avatar
    Join Date
    Feb 2012
    Posts
    396

    Default

    Quote Originally Posted by Kreiri View Post
    UI.Native:GetScale()

    It would be much easier to maintain proper size of my minimap button (relative to size of minimap), if I had this.
    You can get that yourself for now. Get the default width of the minimap window at 100% scale and compare it to the current GetWidth() to calculate it's scale factor.

  12. #432
    RIFT Guide Writer Noshei's Avatar
    Join Date
    Feb 2011
    Posts
    1,107

    Default

    Quote Originally Posted by Imhothar View Post
    You can get that yourself for now. Get the default width of the minimap window at 100% scale and compare it to the current GetWidth() to calculate it's scale factor.
    actually, it's even easier than that with 1.9 (wednesday update confirmed), just use
    Inspect.Setting.Detail('displayUiScale')

    Also just in case you haven't seen it, here is a list of all the available settings we can now inspect (use Inspect.Setting.List() to get them)

    Code:
    22:59:05: [SlashPrint] Inspect.Setting.List():
    22:59:05: [SlashPrint]   {
    22:59:05: [SlashPrint]     miscContext = "shift",
    22:59:05: [SlashPrint]     youtubeKeeplogin = true,
    22:59:05: [SlashPrint]     displayRaidForParty = true,
    22:59:05: [SlashPrint]     socialProfanityFilter = false,
    22:59:05: [SlashPrint]     nameplateSelfCastbar = true,
    22:59:05: [SlashPrint]     nameplateTargetLevelHide = false,
    22:59:05: [SlashPrint]     facebookUiHide = false,
    22:59:05: [SlashPrint]     screenPet = true,
    22:59:05: [SlashPrint]     actionSide = 4,
    22:59:05: [SlashPrint]     actionCastKeydown = true,
    22:59:05: [SlashPrint]     twitterAutoAchievement = true,
    22:59:05: [SlashPrint]     nameplateFriendlyScale = 75,
    22:59:05: [SlashPrint]     screenHeal = true,
    22:59:05: [SlashPrint]     socialNotifyFriend = false,
    22:59:05: [SlashPrint]     miscQueue = "short",
    22:59:05: [SlashPrint]     actionLockButton = false,
    22:59:05: [SlashPrint]     cameraCollideWater = false,
    22:59:05: [SlashPrint]     recordResolution = "720p",
    22:59:05: [SlashPrint]     nameEnemyPlayer = true,
    22:59:05: [SlashPrint]     combatCastTot = true,
    22:59:05: [SlashPrint]     miscCastFocus = "none",
    22:59:05: [SlashPrint]     nameplateSelfClickthrough = true,
    22:59:05: [SlashPrint]     nameplateSelfNameHide = false,
    22:59:05: [SlashPrint]     miscDeclineMarriage = false,
    22:59:05: [SlashPrint]     nameNameplateSmart = true,
    22:59:05: [SlashPrint]     combatBuffPartyShow = false,
    22:59:05: [SlashPrint]     socialBubble = true,
    22:59:05: [SlashPrint]     screenHudDamageAndExp = true,
    22:59:05: [SlashPrint]     displayQuestSticky = 7,
    22:59:05: [SlashPrint]     statusPlayer = false,
    22:59:05: [SlashPrint]     recordBitrate = 25,
    22:59:05: [SlashPrint]     tumblrSuffix = "DefaultSuffix",
    22:59:05: [SlashPrint]     combatRaidTooltip = false,
    22:59:05: [SlashPrint]     screenHudAbilityIcon = true,
    22:59:05: [SlashPrint]     nameplateSelfShow = "combat",
    22:59:05: [SlashPrint]     socialBubbleParty = true,
    22:59:05: [SlashPrint]     recordAudio = false,
    22:59:05: [SlashPrint]     nameplateFriendlyLevelHide = false,
    22:59:05: [SlashPrint]     nameplateSelfLevelHide = false,
    22:59:05: [SlashPrint]     nameplateFriendlyAlphaTarget = 45,
    22:59:05: [SlashPrint]     nameplateHostileAlphaTarget = 45,
    22:59:05: [SlashPrint]     displayTracking = true,
    22:59:05: [SlashPrint]     twitterKeeplogin = true,
    22:59:05: [SlashPrint]     statusTarget = true,
    22:59:05: [SlashPrint]     combatSticky = false,
    22:59:05: [SlashPrint]     socialNotifyGuild = true,
    22:59:05: [SlashPrint]     miscAddonErrorWindowHide = false,
    22:59:05: [SlashPrint]     twitterPrefix = "DefaultPrefix",
    22:59:05: [SlashPrint]     nameplateTargetNameHide = false,
    22:59:05: [SlashPrint]     nameplateTargetAlphaTarget = 100,
    22:59:05: [SlashPrint]     miscLootAutoDefault = true,
    22:59:05: [SlashPrint]     nameplateTargetScale = 75,
    22:59:05: [SlashPrint]     tumblrKeeplogin = true,
    22:59:05: [SlashPrint]     displayDuration = true,
    22:59:05: [SlashPrint]     miscClickMove = false,
    22:59:05: [SlashPrint]     nameplateFriendlyShow = "never",
    22:59:05: [SlashPrint]     nameplateTargetCastbar = true,
    22:59:05: [SlashPrint]     nameNpc = true,
    22:59:05: [SlashPrint]     nameplateFriendlyAlphaIdle = 100,
    22:59:05: [SlashPrint]     displayUiScale = 1,
    22:59:05: [SlashPrint]     nameplateHostileClickthrough = false,
    22:59:05: [SlashPrint]     youtubeAutoTwitter = true,
    22:59:05: [SlashPrint]     screenHudAbilityName = false,
    22:59:05: [SlashPrint]     facebookSuffix = "DefaultSuffix",
    22:59:05: [SlashPrint]     statusTot = true,
    22:59:05: [SlashPrint]     screenPeriodic = true,
    22:59:05: [SlashPrint]     statusPercentage = true,
    22:59:05: [SlashPrint]     nameplateFriendlyNameHide = false,
    22:59:05: [SlashPrint]     combatShowTot = true,
    22:59:05: [SlashPrint]     tumblrUiHide = false,
    22:59:05: [SlashPrint]     nameplateDisableAll = false,
    22:59:05: [SlashPrint]     screenTarget = true,
    22:59:05: [SlashPrint]     nameRaid = true,
    22:59:05: [SlashPrint]     screenAvoid = true,
    22:59:05: [SlashPrint]     combatAutoflag = false,
    22:59:05: [SlashPrint]     miscLootAutoButton = "ctrl",
    22:59:05: [SlashPrint]     twitterSuffix = "DefaultSuffix",
    22:59:05: [SlashPrint]     nameplateSelfMechanicDisable = false,
    22:59:05: [SlashPrint]     nameplateHostileAlphaIdle = 100,
    22:59:05: [SlashPrint]     nameplateSelfPowerDisable = false,
    22:59:05: [SlashPrint]     facebookPrefix = "DefaultPrefix",
    22:59:05: [SlashPrint]     statusExperience = true,
    22:59:05: [SlashPrint]     miscLootAoe = true,
    22:59:05: [SlashPrint]     nameplateSelfScale = 75,
    22:59:05: [SlashPrint]     youtubeAutoTumblr = true,
    22:59:05: [SlashPrint]     displayUiScaleEnabled = false,
    22:59:05: [SlashPrint]     nameplateTargetShow = "combat",
    22:59:05: [SlashPrint]     screenReactive = true,
    22:59:05: [SlashPrint]     screenHudAbilityAbbreviate = false,
    22:59:05: [SlashPrint]     displayBuffFade = false,
    22:59:05: [SlashPrint]     miscSheatheDisable = false,
    22:59:05: [SlashPrint]     miscAddonErrorDetail = false,
    22:59:05: [SlashPrint]     screenReduce = false,
    22:59:05: [SlashPrint]     mouseLook = 2,
    22:59:05: [SlashPrint]     nameplateFriendlyClickthrough = false,
    22:59:05: [SlashPrint]     nameplateTargetClickthrough = true,
    22:59:05: [SlashPrint]     nameplateSelfAlphaTarget = 100,
    22:59:05: [SlashPrint]     statusParty = false,
    22:59:05: [SlashPrint]     tumblrAutoAchievement = true,
    22:59:05: [SlashPrint]     miscTracking = true,
    22:59:05: [SlashPrint]     cameraInvert = false,
    22:59:05: [SlashPrint]     combatDeclineDuel = false,
    22:59:05: [SlashPrint]     nameplateHostileShow = "never",
    22:59:05: [SlashPrint]     nameEnemyPet = false,
    22:59:05: [SlashPrint]     helpTips = false,
    22:59:05: [SlashPrint]     combatRaidLock = true,
    22:59:05: [SlashPrint]     twitterAutoDiscovery = true,
    22:59:05: [SlashPrint]     actionBottom = 5,
    22:59:05: [SlashPrint]     displayHighlight = "auto",
    22:59:05: [SlashPrint]     nameNpcScale = 1,
    22:59:05: [SlashPrint]     tumblrAutoDiscovery = true,
    22:59:05: [SlashPrint]     namePlayerScale = 1,
    22:59:05: [SlashPrint]     cameraShake = true,
    22:59:05: [SlashPrint]     combatAutoself = true,
    22:59:05: [SlashPrint]     combatTargetFront = false,
    22:59:05: [SlashPrint]     screenBuff = true,
    22:59:05: [SlashPrint]     tumblrPrefix = "DefaultPrefix",
    22:59:05: [SlashPrint]     nameYour = false,
    22:59:05: [SlashPrint]     statusPet = true,
    22:59:05: [SlashPrint]     actionAlways = true,
    22:59:05: [SlashPrint]     miscIconOverhead = false,
    22:59:05: [SlashPrint]     nameplateDefault = false,
    22:59:05: [SlashPrint]     screenHudTextTime = 6,
    22:59:05: [SlashPrint]     nameParty = true,
    22:59:05: [SlashPrint]     youtubeAutoFacebook = true,
    22:59:05: [SlashPrint]     twitterUiHide = false,
    22:59:05: [SlashPrint]     nameplateHostileLevelHide = false,
    22:59:05: [SlashPrint]     combatCastSelf = "disabled",
    22:59:05: [SlashPrint]     nameFriendlyPlayer = true,
    22:59:05: [SlashPrint]     nameplateTargetPowerDisable = true,
    22:59:05: [SlashPrint]     statusFocus = false,
    22:59:05: [SlashPrint]     nameplateHostileScale = 75,
    22:59:05: [SlashPrint]     miscGuildDecline = false,
    22:59:05: [SlashPrint]     nameTarget = true,
    22:59:05: [SlashPrint]     nameplateSelfAlphaIdle = 100,
    22:59:05: [SlashPrint]     cameraSmart = true,
    22:59:05: [SlashPrint]     nameplateHostileNameHide = false,
    22:59:05: [SlashPrint]     screenResource = true,
    22:59:05: [SlashPrint]     combatOtherFxHide = true,
    22:59:05: [SlashPrint]     combatRecastGround = false,
    22:59:05: [SlashPrint]     screenSelf = true,
    22:59:05: [SlashPrint]     nameFriendlyPet = false,
    22:59:05: [SlashPrint]     combatDebuffFilter = "mine",
    22:59:05: [SlashPrint]     combatTargetSmart = false,
    22:59:05: [SlashPrint]     actionButtonRemove = false,
    22:59:05: [SlashPrint]   }

  13. #433
    RIFT Community Ambassador the_real_seebs's Avatar
    Join Date
    Jan 2011
    Posts
    13,493

    Default

    I should totally modify /print to use the console feature now.

    Yes, totally I should do that instead of actually playing the game for a bit. :P
    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)

  14. #434
    Plane Walker Kreiri's Avatar
    Join Date
    Feb 2011
    Posts
    402

    Default

    Quote Originally Posted by Imhothar View Post
    You can get that yourself for now. Get the default width of the minimap window at 100% scale and compare it to the current GetWidth() to calculate it's scale factor.
    How do I know when UI element is at 100% scale?

    actually, it's even easier than that with 1.9 (wednesday update confirmed), just use
    Inspect.Setting.Detail('displayUiScale')
    I do not mean global UI scale. I mean scale slider in UI layout settings. each UI element has its own slider.
    Feminism is the radical notion that women are people.

  15. #435
    Plane Walker Kreiri's Avatar
    Join Date
    Feb 2011
    Posts
    402

    Default

    Quote Originally Posted by the_real_seebs View Post
    I should totally modify /print to use the console feature now.

    Yes, totally I should do that instead of actually playing the game for a bit. :P
    Tell me when you figure how to pass vararg (as in print(...)) into Command.Console.Display().
    Feminism is the radical notion that women are people.

Closed Thread
Page 29 of 33 FirstFirst ... 19 25 26 27 28 29 30 31 32 33 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