What's new
  • Visit Rebornbuddy
  • Visit Panda Profiles
  • Visit LLamamMagic
  • Visit Resources
  • Visit Downloads
  • Visit Portal
RebornBuddy Forums

Register a free account today to become a member! Once signed in, you'll be able to participate on this site by adding your own topics and posts, as well as connect with other members through your own private inbox!

Mounts

strepie

New Member
Joined
Jun 11, 2012
Messages
290
Maybe a list of current mounts available will help our fearless coder and leader when S(he) updates the new BW?
I tried to see what was already available in BW and added ones I did not see. Maybe look through the list and update or change as needed? The ones I added is on top and commented.

static Mounts()
{
Dictionary<string, float> dictionary = new Dictionary<string, float>();

// Czerka CR-17 Incendia
// Czerka Desert Special
// Czarka LD-1 Celebrator
// Czerka Invader
// Aratech Eclipse
// Aratech Nethian
// Aratech Dagger
// Avalanche Heavy Tank
// Dominator's Command Throne
// Overlord's Command Throne
// Shadow hand's Command Throne
// Echange Bandit
// GSI EMP-Explorer
// GSI HMF-03 Exploiter
// GSI OMO-06 Pleasure Speeder
// Hyrotii Scrapper
// Kurtob Alliance
// Longspur STAP Royal
// Longspur STAP Executive
// Longspur STAP Sportster
// Longspur Pacer
// Gurian Lighting
// Ambassador mediation Hoverchair
// Diplomat's mediation Hoverchair
// Watchman's mediation Hoverchair
// Orlean Fortune Hunter
// Orrlean Flurry
// Rendili Nightshade
// Cartel Decadent Skiff
// Cartel Hedonist Skiff
// Cartel Luxury Skiff
// Cartel Recreational Skiff
// Blue Sphere
// Ubrikki Crimson Claw
// Ubrikki Crimson Skull
// Ubrikki Sand Devil
// Ubrikki Talon

dictionary.Add("Ubrikkian Hunter", 2f);
dictionary.Add("Custom-Built Hoverbike", 1.9f);
dictionary.Add("Czerka Cruiser", 1.9f);
dictionary.Add("Czerka Patroller", 1.9f)
dictionary.Add("Longspur Scout", 1.9f);
dictionary.Add("Orlean Rebel", 1.9f);
dictionary.Add("Rendili Protector", 1.9f);
dictionary.Add("Rendili Watchman", 1.9f);
dictionary.Add("Ubrikkian Striker", 1.9f);
dictionary.Add("Aratech Coral", 2.1f);
dictionary.Add("Aratech Fire", 2.1f);
dictionary.Add("Aratech Ice", 2.1f);
dictionary.Add("Aratech Lancer", 2.1f);
dictionary.Add("Aratech Nightscythe", 2.1f);
dictionary.Add("Aratech Scythe", 2.1f);
dictionary.Add("Desler Avenger", 2.1f);
dictionary.Add("Desler Explorer", 2.1f);
dictionary.Add("Desler Nomad", 2.1f);
dictionary.Add("Desler Turbo", 2.1f);
dictionary.Add("Exchange Bandit", 2.1f);
dictionary.Add("Gurian Cyclone", 2.1f);
dictionary.Add("Gurian Shadow", 2.1f);
dictionary.Add("Hotrigged Speeder Bike", 2.1f);
dictionary.Add("Korrealis Baron", 2.1f);
dictionary.Add("Korrealis Commander", 2.1f);
dictionary.Add("Korrealis Prince", 2.1f);
dictionary.Add("Korrealis Sovereign", 2.1f);
dictionary.Add("Lhosan Stinger", 2.1f);
dictionary.Add("Lhosan Thunderbolt", 2.1f);
dictionary.Add("Lhosan Torch", 2.1f);
dictionary.Add("Longspur Blaze", 2.1f);
dictionary.Add("Longspur Recon", 2.1f);
dictionary.Add("Manta Landspeeder (Purple)", 2.1f);
dictionary.Add("Praxon Aero", 2.1f);
dictionary.Add("Praxon Aether", 2.1f);
dictionary.Add("Praxon Bloodline", 2.1f);
dictionary.Add("Praxon Firaxa", 2.1f);
dictionary.Add("Praxon Strato", 2.1f);
dictionary.Add("Praxon Trackmaster", 2.1f);
dictionary.Add("Praxon Xeno", 2.1f);
dictionary.Add("Rendili Fireball", 2.1f);
dictionary.Add("Tirsa Champion", 2.1f);
dictionary.Add("Tirsa Elite", 2.1f);
dictionary.Add("Tirsa Prime", 2.1f);
dictionary.Add("Ubrikkian Raider", 2.1f);
dictionary.Add("Ubrikkian War-rider", 2.1f);
dictionary.Add("Longspur STAP", 1.9f);
dictionary.Add("Boosted Classic Speeder Bike (Brown)", 2.1f);
dictionary.Add("Manta Landspeeder (Blue)", 2.1f);
dictionary.Add("Manta Landspeeder (Red)", 2.1f);
dictionary.Add("Aratech Dagger", 2f);
dictionary.Add("Custom-Built Speeder Bike", 2f);
dictionary.Add("Czerka Invader", 2f);
dictionary.Add("Gurian Hammer", 2f);
dictionary.Add("Gurian Scorpion", 2f);
dictionary.Add("Lhosan Duster", 2f);
dictionary.Add("Lhosan Racer", 2f);
dictionary.Add("Orlean Flurry", 2f);
dictionary.Add("Rendili Outrider", 2f);
Mounts.MountSpeedMap = dictionary;
}
 
They don't update bw just so you know. They just update the rev. and version to match swtor. Maybe soon they will roll out update but doubt it since bw has sooo many extra features coded in that are not in use/because may not work. Like for example auction house and many more things.
 
Maybe, BW would entertain making the project a bit more open source? Dunno.
 
Additional observation on mounts: Prior to the last patch, when you went into an area speeders were not allowed, the speeder icon would grey out. It doesn't do that now. It's always clickable and fully colored.
 
Also for the devs:

Calling something like: Buddy.CommonBot.AbilityManager.Cast("Longspur STAP", BuddyTor.Me); when related to a vehicle doesn't work anymore. Something in the last update maybe made it not a spell?
 
More info.

Spit out a list of KnownAbilitiesContainer. SWTOR must have made speeders not an ability. We need a new way to access them.
 
Back
Top