insert into transport_maps set transport_id=33002,map_name='world';
insert into transporters set transport_id=33002,display_name='Oracle Station', map_x=670, map_y=459,transport_type='Flight',mount_id=225,flight_path_id=85, destination_zone_id=12;
in SpawnScripts/antonica/AGriffonTamer.lua add SendTransporters line..
Used Qeynos Station to go to Oracle Station via map
reference behavior:
https://cdn.discordapp.com/attachments/603677936582918189/726063990504947783/map_flightpath_prototype.mp4
this was my prototype code..:
DB:
```
insert into transport_maps set transport_id=33002,map_name='world';
insert into transporters set transport_id=33002,display_name='Oracle Station', map_x=670, map_y=459,transport_type='Flight',mount_id=225,flight_path_id=85, destination_zone_id=12;
```
in SpawnScripts/antonica/AGriffonTamer.lua add SendTransporters line..
```
function hailed(NPC, Spawn)
FaceTarget(NPC, Spawn)
conversation = CreateConversation()
SendTransporters(NPC, Spawn, 33002)
```
Used Qeynos Station to go to Oracle Station via map
Needs to work to implement EQ2Emu_lua_StartAutoMount with the mapping display system
reference behavior:
https://cdn.discordapp.com/attachments/603677936582918189/726063990504947783/map_flightpath_prototype.mp4
this was my prototype code..:
DB:
in SpawnScripts/antonica/AGriffonTamer.lua add SendTransporters line..
Used Qeynos Station to go to Oracle Station via map