• This is a read only backup of the old Emudevs forum. If you want to have anything removed, please message me on Discord: KittyKaev

Learning all flight paths

jholder85638

Emulation Addict
Hi there fellow EmoDevs!

I was wondering if someone could point me in the right direction to have a character learn all faction flight paths. I did some searching, both on Google and Here, but all I can come up with is custom flight path NPCs and paths.

So if someone could point me in the right direction to either some existing SQL or some-such, I would be most grateful.

john
 

jholder85638

Emulation Addict
I did some digging, and got a solution. This doesn't give northrend Fp, but those can easily be extracted from the DB once learned.

To give a player all flight paths, use the following Query (replacing items in brackets with your variables)

Horde:
UPDATE `[CHARACTER DATABASE]`.`characters` SET `taximask` = '4294967295 2483027967 24575999 4 16384 1310944 3250593812 73752 896 67111952 2281701376 4190109713 1049856 12582912 ' WHERE `characters`.`guid` = [PLAYER GUID];

Alliance
UPDATE `[CHARACTER DATABASE]`.`characters` SET `taximask` = '4294967295 2483027967 561446911 8 16384 1310944 3250593812 73752 896 67111952 2281701376 4190109713 1049856 12582912' WHERE `characters`.`guid` = [PLAYER GUID];

Please feel free to use this as needed.

john

****NOTE****** This is 3.3.5a ONLY, probably will explode if you use it on a higher version.
 

Neccta

Exalted Member
Or just use the GM command .cheat taxi

From the TrinityCore wiki:
Code:
Syntax: .cheat taxi on/off Temporary grant access or remove to all taxi routes for the selected character. If no character is selected, hide or reveal all routes to you.Visited taxi nodes sill accessible after removing access.
 

jholder85638

Emulation Addict
Or just use the GM command .cheat taxi

From the TrinityCore wiki:
Code:
Syntax: .cheat taxi on/off Temporary grant access or remove to all taxi routes for the selected character. If no character is selected, hide or reveal all routes to you.Visited taxi nodes sill accessible after removing access.

Indeed, except it goes away on logout. So applying it to users isn't effecient.
 
Top