Ive tried to recompile but Ascent is closing before executing properly, Im trying the debug now.
If still no joy Ill just do a full clean download from the SVN and try again.
Ive tried to recompile but Ascent is closing before executing properly, Im trying the debug now.
If still no joy Ill just do a full clean download from the SVN and try again.
Nevermind, my fault >< Im sleepy, leave it with me and Ill check.
Oh, I cant get your mount SQL to load.
Code:[Err] 1136 - Column count doesn't match value count at row 1 [Err] INSERT INTO `items` VALUES ('90002',' 4',' 0',' -1','Bird of the universe','Bird of the universe','Bird of the universe','Bird of the universe',' 31481',' 1',' 0',' 0',' 0',' 12',' -1',' -1',' 128',' 1',' 0',' 0',' 0',' 0',' 0',' 0',' 0',' 1',' 1',' 0',' 0',' 0',' 0',' 0',' 0',' 0',' 0',' 0',' 0',' 0',' 0',' 0',' 0',' 0',' 0',' 0',' 0',' 0',' 0',' 0',' 0',' 0',' 0',' 0',' 0',' 0',' 0',' 0',' 0',' 0',' 0',' 0',' 0',' 0',' 0',' 0',' 0',' 0',' 0',' 5',' 0',' 0',' 0',' 0',' 0',' 32292',' 1',' 0',' 0',' 0',' 0',' 13669',' 1',' 0',' 0',' 0',' 0',' 22564',' 0',' 0',' 0',' 1091',' 120000',' 0',' 0',' 0',' 0',' 0',' 0',' 0',' 0',' 0',' 0',' 0',' 0',' 1','0',' 0',' 0',' 0',' 0',' 0',' -1',' 0',' 0',' 0',' 0',' 0',' 0',' 0',' 0',' 0',' 0',' 0',' 0',' 0',' 0',' 0',' 0',' 0',' 0',' 0',' -1',' 0'); [Msg] Finished - Unsuccessfully --------------------------------------------------
Last edited by Steph; 12-20-2007 at 05:26 PM.
here u go use this onetry!Code:INSERT INTO items VALUES (900002, 4, 0, -1,'Insignia of the Gryphon Rider','Insignia of the Gryphon Rider','Insignia of the Gryphon Rider','Insignia of the Gryphon Rider', 31481, 1, 0, 0, 0, 12, -1, -1, 128, 1, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 32292, 1, 0, 0, 0, 0, 13669, 1, 0, 0, 0, 0, 22564, 0, 0, 0, 1091, 120000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1,'', 0, 0, 0, 0, 0,-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,-1,225, 0);
Invincible fixed, still a problem with outland mounts.
danis, unfortunately that item disappears from my inv when used, and it looks like it should summon a mount, but the mount doesnt appear. Id guess it is a victim of the same bug.
Ive also created my own, and still doesnt appear.
Last edited by Steph; 12-20-2007 at 05:54 PM.
good stuff is alrwady being fixed. cant wait till its fully fixed.
Disappears because it's ussed like a trinketthats why ..and appears on your trinket box... and wierd dosent appear :-s...and look u can make it like this so will work
credits rgzoneCode:You will have to modify the following files: Player.cpp, SpellAuras.cpp & Unit.cpp In Player.cpp you will need to search and replace 3 items First search for: !=530 and replace it with >580 then search for: != 530 (yes, just add a space) and replace it with > 580 All 3 will look something like Code: if(flying_aura && MapID > 580) In SpellAuras.cpp you will need to search for Aura::SpellAuraEnableFlight(bool apply) Replace the "else" with "if(!apply)" which should look like this: Code: void Aura::SpellAuraEnableFlight(bool apply) { if(m_target->IsPlayer()) { static_cast<Player*>(m_target)->FlyCheat = apply; static_cast<Player*>(m_target)->flying_aura = m_spellProto->Id; } if(apply) { m_target->EnableFlight(true); m_target->m_flyspeedModifier += mod->m_amount; m_target->UpdateSpeed(true); } if (!apply) //replaced else with: if(!apply) to allow flying mounts in the old lands { m_target->DisableFlight(true); m_target->m_flyspeedModifier -= mod->m_amount; m_target->UpdateSpeed(true); } } Now for the last. In Unit.cpp: Find and replace: if(m_mapId != 530) with if(m_mapId > 580) Code: if(m_mapId != 530) //Change this to > 580 { for(uint32 i = 0; i < -1; ++i) { Can't use flying auras in non-outlands. if(aur->GetSpellProto()->EffectApplyAuraName[i] == 208 || aur->GetSpellProto()->EffectApplyAuraName[i] == 207) { delete aur; return; } } } Now Compile, and once it is finished, create an item that will cast the mount you desire on equip. The current items will not work with this change (they still work in the Outlands as normal) so you will have to create some new items for it to work. Such as: Charm of the Phoenix - Trinket, Summons "Peep the Phoenix" when equip. Code: INSERT INTO items VALUES (90001, 4, 0, -1, "Charm of the Phoenix", "Charm of the Phoenix", "Charm of the Phoenix", "Charm of the Phoenix", 43430, 3, 0, 0, 0, 12, -1, -1, 128, 1, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 40192, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, "", 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 225, 0);
Ah, I see!
I made one with ADE, and unfortunately wouldnt work either, just gave the same motion and sound as the others, and yours, and didnt make the mount appear.
Im going to bed in a few, will probably have to wait till tomorrow to try anything else.
One thing Ive noticed that is quite funny, is that Druids can change to flight/swift flight in outland, but they cant actually fly lol, they just run across the ground and jump instead of taking off.
Last edited by Steph; 12-20-2007 at 06:58 PM.
Well Fly mounts in azeroth dosent work... PVP ARENA Dosent work ...( alot of fixes will need this core..
![]()
hey i have a good idea. make a command to add a portal like here is an example
.portal add (in here you write the .recall port name like mall) (and here the name of the portal) i know your gonna say and what about the display id? just make it randomize.
I will be Updating SVN Soon again...
By the way Stephtorrent you hold msn ?
if you do add me [email protected] , i want to talk to you for something
Yes I have MSN, Ill add you.