Hi all,
I’m trying to make IOC a bit more playable, So I’m trying to fix the vehicles.
Things that I have noted.
The Demolishers have the same Entry regardless of the faction.
The Glaive Throwers have different Entrys for each faction
The Catapults Have the same Entry regardless of the faction.
Here is my SQL
I AM A NEWB WITH FIXING STUFF RUN AT OWN RISK!
[CODE]
– Keep Cannon
UPDATE creature_template SET speed_walk = 0, speed_run = 0 WHERE entry = 34775; – this cannon should not be able to move
– Demolisher
delete from npc_spellclick_spells where npc_entry = 34775;
Insert into npc_spellclick_spells
(npc_entry,spell_id,quest_start,quest_start_active,quest_end,cast_flags,aura_required,aura_forbidden,user_type) values
(34775,60683,0,0,0,1,0,0,0); – I got this spell ID from the battleground demolishers from SOTA
UPDATE creature_template SET speed_walk = 1, speed_run = 1.14286 WHERE entry = 34775; – They should probably move
UPDATE creature_template SET spell1 = 67440, spell2 = 67441 WHERE entry = 34775; – According to wowhead they are casting incorrect spells
– Glaive Thrower ALLY
delete from npc_spellclick_spells where npc_entry = 34802;
Insert into npc_spellclick_spells
(npc_entry,spell_id,quest_start,quest_start_active,quest_end,cast_flags,aura_required,aura_forbidden,user_type) values
(34802,60683,0,0,0,1,0,0,0); – I got this spell ID from the battleground demolishers from SOTA
UPDATE creature_template SET spell1 = 67195, spell2 = 66456 WHERE entry = 34802; – Acording to wowhead they are casting incorrect spells
– Glaive Thrower HORDE
delete from npc_spellclick_spells where npc_entry = 35273;
Insert into npc_spellclick_spells
(npc_entry,spell_id,quest_start,quest_start_active,quest_end,cast_flags,aura_required,aura_forbidden,user_type) values
(35273,60683,0,0,0,1,0,0,0); – I got this spell ID from the battleground demolishers from SOTA
UPDATE creature_template SET spell1 = 67195, spell2 = 67034 WHERE entry = 35273; – Acording to wowhead they are casting incorrect spells
– Catapult
delete from npc_spellclick_spells where npc_entry = 34793;
Insert into npc_spellclick_spells
(npc_entry,spell_id,quest_start,quest_start_active,quest_end,cast_flags,aura_required,aura_forbidden,user_type) values
(34793,60683,0,0,0,1,0,0,0); – I got this spell ID from the battleground demolishers from SOTA
[/SQL][/CODE]
A few other things I have noted that I am going to report on the Issue tracker
The Demolisher’s Ram Spell does not work
None of the Catapults Spells work.
It is not possible to break a wall or a gate down since there is a code missing in the core.