View Single Post
07-22-14, 08:18 AM   #11
Gello
A Molten Giant
AddOn Author - Click to view addons
Join Date: Jan 2005
Posts: 521
For anyone else updating addons that need to know if mounts can fly while we wait/pray that we get the bitfield back, this is a table of spellIDs whose tooltip contains a line that ends with "This is a flying mount." or "on your Riding skill and location.". I'm not certain it's all flying mounts.

{ [44744]=1, [136164]=1, [65439]=1, [139448]=1, [132117]=1, [41517]=1, [127164]=1, [75973]=1, [132118]=1, [101282]=1, [61997]=1, [37015]=1, [142478]=1, [132119]=1, [127165]=1, [60021]=1, [32246]=1, [124408]=1, [67336]=1, [59567]=1, [32290]=1, [41518]=1, [155741]=1, [88741]=1, [96503]=1, [107516]=1, [88742]=1, [148476]=1, [59568]=1, [110051]=1, [107517]=1, [49193]=1, [39798]=1, [97493]=1, [32235]=1, [32239]=1, [32243]=1, [134359]=1, [88744]=1, [142073]=1, [59569]=1, [75596]=1, [72807]=1, [32295]=1, [127154]=1, [127170]=1, [142266]=1, [133023]=1, [59976]=1, [43927]=1, [71342]=1, [132036]=1, [88746]=1, [93623]=1, [59570]=1, [153489]=1, [75614]=1, [41513]=1, [127156]=1, [59650]=1, [61451]=1, [39800]=1, [59961]=1, [46199]=1, [107203]=1, [135418]=1, [32240]=1, [60025]=1, [148392]=1, [142878]=1, [139595]=1, [32292]=1, [41514]=1, [127158]=1, [58615]=1, [107842]=1, [46197]=1, [71810]=1, [54729]=1, [163025]=1, [61229]=1, [98727]=1, [163024]=1, [88335]=1, [72286]=1, [88331]=1, [60002]=1, [48025]=1, [121820]=1, [60024]=1, [61309]=1, [88718]=1, [148618]=1, [107844]=1, [59571]=1, [130092]=1, [40192]=1, [44151]=1, [64927]=1, [148620]=1, [32297]=1, [32296]=1, [41515]=1, [130985]=1, [134573]=1, [66087]=1, [32242]=1, [113199]=1, [88990]=1, [32244]=1, [126507]=1, [39802]=1, [149801]=1, [44153]=1, [63796]=1, [139442]=1, [129918]=1, [118737]=1, [113120]=1, [127161]=1, [61294]=1, [32245]=1, [124659]=1, [107845]=1, [93326]=1, [129552]=1, [126508]=1, [66088]=1, [97560]=1, [101821]=1, [123992]=1, [139407]=1, [32289]=1, [102514]=1, [63956]=1, [63963]=1, [123993]=1, [97359]=1, [63844]=1, [110039]=1, [41516]=1, [136505]=1, [127169]=1, [39803]=1, [61996]=1, [148619]=1, [124550]=1, [39801]=1, [136163]=1, [59996]=1, [69395]=1, [61230]=1, [136400]=1, [135416]=1, [72808]=1, [74856]=1, }

This table takes up roughly 14k.

If you're less concerned about speed and want a more compact list table:

{ 44744, 136164, 65439, 139448, 132117, 41517, 127164, 75973, 132118, 101282, 61997, 37015, 142478, 132119, 127165, 60021, 32246, 124408, 67336, 59567, 32290, 41518, 155741, 88741, 96503, 107516, 88742, 148476, 59568, 110051, 107517, 49193, 39798, 97493, 32235, 32239, 32243, 134359, 88744, 142073, 59569, 75596, 72807, 32295, 127154, 127170, 142266, 133023, 59976, 43927, 71342, 132036, 88746, 93623, 59570, 153489, 75614, 41513, 127156, 59650, 61451, 39800, 59961, 46199, 107203, 135418, 32240, 60025, 148392, 142878, 139595, 32292, 41514, 127158, 58615, 107842, 46197, 71810, 54729, 163025, 61229, 98727, 163024, 88335, 72286, 88331, 60002, 48025, 121820, 60024, 61309, 88718, 148618, 107844, 59571, 130092, 40192, 44151, 64927, 148620, 32297, 32296, 41515, 130985, 134573, 66087, 32242, 113199, 88990, 32244, 126507, 39802, 149801, 44153, 63796, 139442, 129918, 118737, 113120, 127161, 61294, 32245, 124659, 107845, 93326, 129552, 126508, 66088, 97560, 101821, 123992, 139407, 32289, 102514, 63956, 63963, 123993, 97359, 63844, 110039, 41516, 136505, 127169, 39803, 61996, 148619, 124550, 39801, 136163, 59996, 69395, 61230, 136400, 135416, 72808, 74856, }

This table takes up about 4k.

LibPeriodicTable-3.1-Misc takes up about 115k. It's a neat library, but it'd be way too much for Select which is <100k on a clean install. But I did use it to confirm the number of flying mounts may be about right, so thanks for mentiong it.

Last edited by Gello : 07-22-14 at 11:46 PM. Reason: fixing inaccuracy