MountMe

3.3k Downloads

Low level characters may have a mount

brknsoul opened this issue ยท 4 comments

commented

6.1 introduces the Chauffeured Chopper mountable by low level characters (<20).

This mount shouldn't be selected once a character has Journeyman Riding (level 40) because the Chauffeured Chopper's speed remains at 160% (ie: It doesn't scale with Riding Training).

commented

Two lines need to be changed for it to work.

line 187

local CHAFFEUR = UnitFactionGroup("player") == "Horde" and 679 or 678

-- swap the ids 
local CHAFFEUR = UnitFactionGroup("player") == "Horde" and 678 or 679

line 212

if not not SecureCmdOptionParse(MOUNT_CONDITION..",nomod:"..MOD_TRAVEL_FORM) then

-- not, not not. only not.
if not SecureCmdOptionParse(MOUNT_CONDITION..",nomod:"..MOD_TRAVEL_FORM) then
commented

I don't actually have this mount, so someone else should grab the latest file off GitHub and verify that it's working as intended.

commented

This doesn't work with the latest version on github.
I think it is not possible with the /cast command.
/run C_MountJournal.SummonByID works.

commented

Fixed