when i drop 6sox (not 5l or even 6l) item on ground itemalerter should play "sixsockets.wav"
but instead it plays "payback_time.wav"
Sorry to bother yall but i need a little help. I looked through the thread and half of it I don't but I did not come across what I was looking for. Anyone mind helping me show me what to add/change to make it so it plays a sound when any yellow item drops. and also when a map drops. i tested it for 66 and 67 maps and it did not play anything. I dont know if it is programmed to only play sounds when its a higher level map or not. i tried to look through and figure it out. but other then adding the other orbs I couldnt find out how to make it make a sound for maps or any yellow item.
Thank You
edit- ok I managed to change it enough where it alerts me when yellow items drop by changing the rarity to 2.. but now uniques dont alert me. oh well it will do for now. still cant figure out the maps.
Last edited by monstereater; 11-11-2013 at 07:19 PM.
Thanks too all who put there time and effort into getting this awesome tool together; however, is it possible to configure it, so that whenever a map drops, it can give off an alert?
everything is possible.. i could look into it again.. if needed..
k,i am new to this scripting/editing stuff, so will try to look into it, i did try to add some of the sounds earlier in the previous posts, but i managed to mess shit up and had to unrar the original files again.
Sorry for the noobish question, but what are you using to edit the files? i am using notepad.exe and it does not show anything with a code line, etc line 220? Also tried wordpad and edit with IDLE with no luck as well. Also the file i am opening is ItemAlertPoE.py
2) as i mentioned a couple of times, there are sounds for e.g. uniques. I removed the other sounds. to add them in is pretty straight forward - check the code at line 220 ff - its just 2 commands to play a sound.
Last edited by ReadyToKill; 11-12-2013 at 05:21 PM.
When i try to open up ItemAlertPoE.py with python's IDLE, it just loads up a blank file, however, if i use notepad or wordpad it loads up the code lines, but it does not show anything with code lines.
im sure there's a easier and better way but im not good at coding so to make the map drops have a sound.
the section of the code in "ismapitem" look like this
Now that will play the unique sounds when a white map drops. wont work if blue and yellow and unique maps drop. i tried but cant figure out how to make it do that.Code:if quality == 0 and actual == 0: quality = int(buffer.nextDword()) if DEBUG: print >>self.logFile, str.format('quality new = {0}', quality) if SOUND_uniques == True: unique = PlaySoundUnique() unique.start()
Last edited by monstereater; 11-12-2013 at 06:59 PM.
grin guys.
a) notepad and wordpad are crap. either use Notepad++ or Idle, as suggested.
i'll quickly implement a configurable sound for maps (you will need to change the sound if you want, will use the unique sound).