Download
(296Kb)
Download
Updated: 07-25-08 10:14 PM
Pictures
File Info
Updated:07-25-08 10:14 PM
Created:unknown
Downloads:3,544
Favorites:17
MD5:

Zelda loot

Version: 1.01
by: Rickyk [More]

Plays the Legend of Zelda, Ocarina of Time receive item sound when you loot an epic item.

The sound is created by Nintendo, and provided by HelpTheWretched.

I apparently broke the file right before I uploaded it, so the first 8 or so people need to redownload.
Optional Files (0)


Post A Reply Comment Options
Unread 04-13-09, 04:50 PM  
shobu
A Murloc Raider
AddOn Author - Click to view AddOns

Forum posts: 5
File comments: 83
Uploads: 1
Re: I love this addon.

I love this addon but I always wished it was the "secret" sound you hear when you discover something amazing (probably the most famous Zelda sound) so I had a look around and found it on this Zelda SFX site

If you want the "secret" sound to play instead of the original sound in this (awesome) addon, just right-click and download this WAV file and replace the "item.wav" file in your ZeldaLoot folder (remembering to rename it to "item.wav").
Last edited by shobu : 04-13-09 at 04:50 PM.
Report comment to moderator  
Reply With Quote
Unread 12-17-08, 02:20 PM  
Syno
A Kobold Labourer
AddOn Author - Click to view AddOns

Forum posts: 1
File comments: 8
Uploads: 1
I love this addon.

So much so, I wish I could have a few more zelda sound FX.

I would love it if:

Made the SNES/N64 "potion chug" noise whenever I use a potion/healthstone/mana gem

any way to figure out how I can do that? or mod this addon to do it? :O
Report comment to moderator  
Reply With Quote
Unread 08-27-08, 05:49 PM  
Rickyk
A Kobold Labourer
AddOn Author - Click to view AddOns

Forum posts: 0
File comments: 3
Uploads: 2
You could.
But first off, I didn't feel like testing to make sure it worked. And second I wanted it to be "Copy and paste whichever parts of the code you want" type thing.
Report comment to moderator  
Reply With Quote
Unread 08-20-08, 03:08 AM  
hipjipp
A Cliff Giant
 
hipjipp's Avatar
AddOn Author - Click to view AddOns

Forum posts: 79
File comments: 236
Uploads: 10
Re: Re: Rare items too?

Couldn't you clean this up?
Code:
function zeldaFrame_OnEvent()
 if (event=="CHAT_MSG_LOOT" and strfind(arg1, "You receive loot") and (strfind(arg1, "cffa335ee")))
  then PlaySoundFile("Interface\\AddOns\\ZeldaLoot\\Item.wav")
 end
 if (event=="CHAT_MSG_LOOT" and strfind(arg1, "You receive loot") and (strfind(arg1, "cff1eff00")))
  then PlaySoundFile("Interface\\AddOns\\ZeldaLoot\\Item.wav")
 end
 if (event=="CHAT_MSG_LOOT" and strfind(arg1, "You receive loot") and (strfind(arg1, "0070dd")))
  then PlaySoundFile("Interface\\AddOns\\ZeldaLoot\\Item.wav")
 end
end
to
Code:
function zeldaFrame_OnEvent()
  if (event == "CHAT_MSG_LOOT" and strfind(arg1, "You recieve loot") and (strfind(arg1, "cffa335ee")) or (strfind(arg1, "cff1eff00")) or (strfind(arg1, "0070dd")))
   then PlaySoundFile("Interface\\AddOns\\ZeldaLoot\\Item.wav")
  end
end
It's untested, but it might work..
Report comment to moderator  
Reply With Quote
Unread 08-20-08, 01:19 AM  
pikadude1006
A Defias Bandit
AddOn Author - Click to view AddOns

Forum posts: 2
File comments: 23
Uploads: 2
Thank you!

I can't wait to use this now lol.
Report comment to moderator  
Reply With Quote
Unread 08-11-08, 09:52 PM  
Rickyk
A Kobold Labourer
AddOn Author - Click to view AddOns

Forum posts: 0
File comments: 3
Uploads: 2
Re: Rare items too?

Originally posted by pikadude1006
Is there any way to make it sound off for rare, or even uncommon items?
And awesome AddOn, btw. You truly are a god among men lol.
In Zeldasound.lua, Right under "then PlaySoundFile("Interface\\AddOns\\ZeldaLoot\\Item.wav")"

Add (For uncommon)
if (event=="CHAT_MSG_LOOT" and strfind(arg1, "You receive loot") and (strfind(arg1, "cff1eff00")))
then PlaySoundFile("Interface\\AddOns\\ZeldaLoot\\Item.wav")
end
(For rare)

if (event=="CHAT_MSG_LOOT" and strfind(arg1, "You receive loot") and (strfind(arg1, "0070dd")))
then PlaySoundFile("Interface\\AddOns\\ZeldaLoot\\Item.wav")
end
You can add both. The entire file would look like:

function zeldaFrame_OnEvent()
if (event=="CHAT_MSG_LOOT" and strfind(arg1, "You receive loot") and (strfind(arg1, "cffa335ee")))
then PlaySoundFile("Interface\\AddOns\\ZeldaLoot\\Item.wav")
end
if (event=="CHAT_MSG_LOOT" and strfind(arg1, "You receive loot") and (strfind(arg1, "cff1eff00")))
then PlaySoundFile("Interface\\AddOns\\ZeldaLoot\\Item.wav")
end
if (event=="CHAT_MSG_LOOT" and strfind(arg1, "You receive loot") and (strfind(arg1, "0070dd")))
then PlaySoundFile("Interface\\AddOns\\ZeldaLoot\\Item.wav")
end
end
That should work. There's a better way to do it, admittedly, but that works for now. I should add a slash command way to change it, eventually...
Report comment to moderator  
Reply With Quote
Unread 08-10-08, 11:44 PM  
pikadude1006
A Defias Bandit
AddOn Author - Click to view AddOns

Forum posts: 2
File comments: 23
Uploads: 2
Rare items too?

Is there any way to make it sound off for rare, or even uncommon items?
And awesome AddOn, btw. You truly are a god among men lol.
Last edited by pikadude1006 : 08-10-08 at 11:45 PM.
Report comment to moderator  
Reply With Quote
Unread 07-25-08, 10:16 PM  
Rickyk
A Kobold Labourer
AddOn Author - Click to view AddOns

Forum posts: 0
File comments: 3
Uploads: 2
Oops

I did something stupid and broke the file right before I uploaded it, so if you were among the first few who downloaded it, you need to redownload.

And to the person calling me a god, Thank you.
Report comment to moderator  
Reply With Quote
Unread 07-25-08, 09:42 PM  
cawfee
An Aku'mai Servant
 
cawfee's Avatar
AddOn Author - Click to view AddOns

Forum posts: 30
File comments: 94
Uploads: 1
You, sir, are a god.
That will be all.
Report comment to moderator  
Reply With Quote
Post A Reply



Category Jump: