it's only a teleport, nothing nice there. Making it work like it should is the right way to go.
(working) Taxi Acherus Scourge Gryphons
from: Heart of Acherus to: Death's Breach and back
from: Death's Breach to: Heart of Acherus
1. first - make SQL file from the line below, and import in world-database
(otherwise LUA script not work, when you right-click on Scourge Gryphon)
Taxi_Acherus_Gryphons.sql
2. and second - make LUA file and put it in folder scripts (in ArcEmu the server)Code:UPDATE `creature_proto` SET `npcflags`=3 WHERE `entry` IN (29488,29501);
Taxi-Gryphons.lua
Teleports only, not actual flight animation.Code:function GryphonDown_OnGossip(Unit, Event, Player) Unit:GossipCreateMenu(100, Player, 0) Unit:GossipMenuAddItem(0, "Go Down to Death's Breach", 1, 0) Unit:GossipSendMenu(Player) end function GryphonDown_OnSelect(Unit, Event, Player, MenuId, id, Code) if (id == 1) then Player:Teleport(609, 2430.61, -5730.25, 157.855) Unit:GossipComplete(Player) end end function GryphonUp_OnGossip(Unit, Event, Player) Unit:GossipCreateMenu(100, Player, 0) Unit:GossipMenuAddItem(0, "Go Up to Heart of Acherus", 1, 0) Unit:GossipSendMenu(Player) end function GryphonUp_OnSelect(Unit, Event, Player, MenuId, id, Code) if (id == 1) then Player:Teleport(609, 2363.69, -5659.33, 382.270) Unit:GossipComplete(Player) end end RegisterUnitGossipEvent(29488, 1, "GryphonDown_OnGossip") RegisterUnitGossipEvent(29501, 1, "GryphonUp_OnGossip") RegisterUnitGossipEvent(29488, 2, "GryphonDown_OnSelect") RegisterUnitGossipEvent(29501, 2, "GryphonUp_OnSelect")
*Copied off ArcEmu forums. So all credits go to Trap.

Trade Feedbacks
it's only a teleport, nothing nice there. Making it work like it should is the right way to go.

Trade Feedbacks
Thanks for the share..?
I live in a shoe
Trade Feedbacks
Mate, "nothing nice here" isn't this better than non-working gryphons?it's only a teleport, nothing nice there. Making it work like it should is the right way to go
This page has had 1,337 visits
Trade Feedbacks
hmm, thnx.

Trade Feedbacks
Sun++ had this fixed ages ago. just fyi :P
I live in a shoe
Trade Feedbacks
Are you by any chance someone with a mental difficulty?
Why do you expect anyone to reward you with reputation for posting something that is publicly accessible on another website which most of the people in this forum visit?
Think about your reply, as I've thought about mine.

Trade Feedbacks
Trade Feedbacks
Don't double post and/or bump your own thread.
Trade Feedbacks
this isn't new ...
Ive had this script for 2 months :P
dont post for your own credit this is an old fix ur like 2 months old
Bookmarks