-
[Help] How to make teleport vendor [Mangos]
Please help me make a teleport vendor , what I really need for my fun server.
If someone know's a teleport vendor maker , or how to make it i would be thankfull. Thank you!
My mangos db is 5200+ (dont know the number exactly) and latest scriptdev! Please help! I really need it!
Last edited by George SS; 17-02-08 at 06:59 PM.
-
-
Account Upgraded | Title Enabled!
Re: [Help] How to make teleport vendor [Mangos]
learn how to use C++...
It took me about a week to make my own Warp NPC
-
Apprentice
Re: [Help] How to make teleport vendor [Mangos]
Im sorry since i dont know what db version this is for but try it out ..
MANGOS teleporter and no c++!!!
1st: Make a npc .. in wow-v or just some your own .. put npc flag to 3
(quest giver)
2nd: Make a quest.. it should say something about where to teleport .. and if you want it to be autoaccepted (no start dialog) put Special flags to 1
and RewOrReqMoney to -20000 so it costs 2 gold ( the value is in coppers)
3rd: make a quest end script.. it should be like ..
ID = unique number
COMMAND = 6
datalong: Target Map ID.
x: Teleport target x coordinate.
y: Teleport target y coordinate.
z: Teleport target z coordinate.
o: Teleport target orientation.
4th: Copy the ID number of the script and go to your quest agen .. and put the number to Completescript (usually last colum)
5th: Add the quest to your creature with SQL(or manual):
INSERT INTO `creature_involvedrelation` (`id`, `quest`) VALUES ('Creature Entry', 'Quest entry');
INSERT INTO `creature_questrelation` (`id`, `quest`) VALUES ('Creature Entry', 'Quest entry');
Or manual .. ID is npc/creature entry and quest is quest entry ..
And your teleporter is ready ..
make more quests for more teleports .. with different coordinates
sry if i missed some spot :S