Download
(3MB)
Download
Updated: 07-23-08 05:06 PM
Pictures
File Info
Updated:07-23-08 05:06 PM
Created:unknown
Downloads:4,716
Favorites:15
MD5:

Chocobo Mount Music

Version: 1.2
by: RPZip [More]

A simple addon that grew out of a friend's joke into something that nearly my entire guild uses, now brought to you (the user) at no additional cost!

Description:
Mount up and enjoy the classic sounds of Final Fantasy 7 Chocobo Racing. Wark!

Installation:
Unzip the file to World of Warcraft/Interface/Addons/

Enjoy!

Version 1.2
Fixed a dumb error, updated the TOC file to the right number. Now it should tell you the mod is loaded without using a big message box.
Post A Reply Comment Options
Unread 08-31-10, 12:54 PM  
RPZip
A Kobold Labourer
AddOn Author - Click to view AddOns

Forum posts: 1
File comments: 10
Uploads: 2
I've been busy with other things (raiding, school) which is why I haven't updated this addon, but I'll take a look at CombatMusic and see if I can figure out a way to make it play nice. Some of the coding I did on this is kind of rough (it was one of my first real projects, outside of altering some preexisting mods), but I should be able to clean it up with some work in the next week or two.
Report comment to moderator  
Reply With Quote
Unread 08-31-10, 12:48 PM  
Billtopia
A Flamescale Wyrmkin
AddOn Author - Click to view AddOns

Forum posts: 110
File comments: 57
Uploads: 10
music stopping

the reason why it stops your other music is because it calls StopMusic();

that API stops all music that is played with the PlayMusic() API

I would guess you would have to wait a little time after dismounting to begin a fight for them not to overide each other
Report comment to moderator  
Reply With Quote
Unread 08-25-10, 01:55 PM  
Kaleesh
A Deviate Faerie Dragon
 
Kaleesh's Avatar

Forum posts: 12
File comments: 18
Uploads: 0
This seems to be conflicting with CombatMusic... The function that stops the chocobo theme is also stopping my CombatMusic right after it starts playing. How would I fix this..?
Report comment to moderator  
Reply With Quote
Unread 05-06-10, 08:34 AM  
tinyu
A Molten Giant
 
tinyu's Avatar
AddOn Author - Click to view AddOns

Forum posts: 837
File comments: 374
Uploads: 13
Originally posted by Inulink
Quick question about this Add on, when will it be up dated? I can't use it because it's says it's Out of Date.
click "use out of date addons" in the Addons Menu
__________________
"There's no such thing as too many addons."
Lothaer
Titan Dev Team Member.
Report comment to moderator  
Reply With Quote
Unread 04-30-10, 11:28 PM  
Inulink
A Kobold Labourer

Forum posts: 0
File comments: 1
Uploads: 0
Quick question about this Add on, when will it be up dated? I can't use it because it's says it's Out of Date.
Report comment to moderator  
Reply With Quote
Unread 02-07-10, 10:28 PM  
havok6669
A Kobold Labourer

Forum posts: 0
File comments: 1
Uploads: 0
swift white hawkstrider

is there any way to configure the xml to only play this song when mounted on my swift white hawkstrider?

after talking to billtopia in fact there is ^_^ remember this is purely his coding all i did was playtest and submit error reports to him.

1) open chocobo.XML in notepad
2) change the 1 line of code in the chocobo.xml file PLAYER_AURAS_CHANGED needs to be changed to UNIT_AURA
3) if u want the music to only play on a hawkstrider of any type open the chocobo.LUA file copy the following paste over the displayed txt and save over the original file

---------------------------------------------------------------------

local ChocoboState=nil
local ChocoboMounted=nil
local ChocoboTrigger=3

function Chocobo_OnEvent()
ChocoboTrigger = 0
end

function Chocobo_MountCheck(arg1)
if ChocoboTrigger > 1 then return end

--[[ Along with the default trigger of 3, this means it'll only look for updates
within a second of an aura change (in this case, mounting). Can't just use an event
trigger because it takes about a half second after the aura change for IsMounted()
to return as positive. ]]--

ChocoboTrigger = ChocoboTrigger + arg1
if IsMounted()==1 then
if ChocoboMounted then return end
local buff;
for i=1,24 do
buff = UnitBuff("player", i);
if (buff) then
if (string.find(buff,"Hawkstrider")) then
ChocoboMounted=1;
PlayMusic("Interface\\Addons\\Chocobo\\Chocobo.mp3")
return;
end
end
end
return
else
StopMusic()
ChocoboMounted=nil
end
end

---------------------------------------------------------------------

also if u would like it to play on a different mount instead of hawkstrider only u can change the line

if (string.find(buff,"Hawkstrider")) then

and replace "Hawkstrider" with "Kodo" for instance to play on any kodo or "Warhorse" "Mechanostrider" etc

good luck everyone and enjoy and thanks again Billtopia for ur time and effort in this
Last edited by havok6669 : 02-26-10 at 09:37 AM.
Report comment to moderator  
Reply With Quote
Unread 01-24-10, 04:27 PM  
Billtopia
A Flamescale Wyrmkin
AddOn Author - Click to view AddOns

Forum posts: 110
File comments: 57
Uploads: 10
updates to WoW's API

you need to change an old api call in this to work now...


chocobo.xml:
PLAYER_AURAS_CHANGED needs to be changed to UNIT_AURA
Last edited by Billtopia : 01-24-10 at 07:21 PM.
Report comment to moderator  
Reply With Quote
Unread 07-05-09, 01:28 PM  
CÖnviction
A Kobold Labourer

Forum posts: 0
File comments: 1
Uploads: 0
WTB Update?
Report comment to moderator  
Reply With Quote
Unread 07-26-08, 01:57 PM  
RPZip
A Kobold Labourer
AddOn Author - Click to view AddOns

Forum posts: 1
File comments: 10
Uploads: 2
Originally posted by cawfee
This is a godsend. Could you add it for taxis as well?
Upd.: It works for the Caverns of Time taxi, but not for regular ones. Weird!
Update again: Forgot you have to have your Music on to hear it. Works fine!
Glad to hear it, I was getting worried for a minute there. =p I should add a note about making sure to enable music in the installation directions next time I update the mod.

Also, maybe add in more than one variation of the Chocobo theme and have it randomly cycle between them? C:
I'm actually working on that now. Eventually I'd like to be able to have the user control the song that's playing (or just give it a skip function), but simple random selection is coming soon.
Report comment to moderator  
Reply With Quote
Unread 07-26-08, 12:34 AM  
cawfee
An Aku'mai Servant
 
cawfee's Avatar
AddOn Author - Click to view AddOns

Forum posts: 30
File comments: 94
Uploads: 1
This is a godsend. Could you add it for taxis as well?
Upd.: It works for the Caverns of Time taxi, but not for regular ones. Weird!
Update again: Forgot you have to have your Music on to hear it. Works fine!

Also, maybe add in more than one variation of the Chocobo theme and have it randomly cycle between them? C:
Last edited by cawfee : 07-26-08 at 01:18 PM.
Report comment to moderator  
Reply With Quote
Unread 07-23-08, 08:16 PM  
biggoofyus
A Kobold Labourer
AddOn Author - Click to view AddOns

Forum posts: 0
File comments: 76
Uploads: 1
Re: Re: TOC

Originally posted by RPZip
Yeah, I noticed that a little bit after I put it up. Fixed, and also fixed a dumb error that turned what should have been a little chat notice about the mod being enabled into a BIG WARNING SIGN.
HA HA HA, ya, I love FFVII so much that I just disregarded it
Report comment to moderator  
Reply With Quote
Unread 07-23-08, 05:07 PM  
RPZip
A Kobold Labourer
AddOn Author - Click to view AddOns

Forum posts: 1
File comments: 10
Uploads: 2
Re: TOC

Originally posted by biggoofyus
The TOC is 20400 not 20403
Yeah, I noticed that a little bit after I put it up. Fixed, and also fixed a dumb error that turned what should have been a little chat notice about the mod being enabled into a BIG WARNING SIGN.
Report comment to moderator  
Reply With Quote
Unread 07-21-08, 08:32 PM  
biggoofyus
A Kobold Labourer
AddOn Author - Click to view AddOns

Forum posts: 0
File comments: 76
Uploads: 1
TOC

The TOC is 20400 not 20403
Report comment to moderator  
Reply With Quote
Post A Reply



Category Jump: