thank you for the script. Just have a little problem when importing, aion says the code is missing an "end" somewhere to close off the function. I fiddled around with it and got it to work but after a while the script started breaking and plays distorted bits of the song. It is probably due to my modifications but I am not sure how to fix it, would you have any clues?
I figured out half the problem, i had another sound macro (non auto play) and it was conflicting with your script. Removed my sound macro and it played fine. But when I try and removed the 2 lines of H.AlertAll at the end, the script distorts the melody again.
"i had another sound macro (non auto play) and it was conflicting with your script" Put my scripts in first slot. Also read "Limitations of scripts in Aion" post for understanding reasons. "But when I try and removed the 2 lines of H.AlertAll at the end, the script distorts the melody again." You did something wrong, H.AlertAll does not affect the sound. But if you want you can comment/delete 14, 15, 16 lines if you dont like messages.
Summarize, I'm suppose you using many scripts which using sound channels also, and when my scripts trying to work, no free channels available because another scripts grabbed all.
Thank you, i followed your advice and it works much better now. It still has minor conflicts with some of the other scripts I am running, is there no solution for conflicting channels?
It's not a conflit, it's just a limitation in aion :) Just imagine 16 slots egg caps, but you wanna put 20 eggs, so u have just 2 choices: 1) throw out 4 eggs 2) prepare 4 eggs, quickly eat it, and put another 4 in new free slots.
Also you can optimize code of another scripts, maybe they can use a less sound channels for their tasks. For example scale and glow stuffs can be done by 1 sound channel.
how many channels of the total 16 does the "Eyes for me" script need for it to perform without problems? it would be helpful to know so I can optimize the other scripts I am running, thanks!
Thank you. I cant call it as "format", but never mind :) First my step in aion music was same as for all: H.PlaySound("temp note note note bla bla") but this way allowed me use maximum 500-700 notes in song, not bad but people wanna more always. So i decided what if i just compress string with "temp note note note bla bla bla" and i did it. If you look on script you can notice function s(n) ... and function d(a)... function s(n) recieve as argument number of time ticks what must be skipped. As result if I type s(5) this function return me string "r16r16r16r16r16" as you see it's more compact form :) Lets' go to next, function d(a) it's decode function, here "a" it's encoded string. For decode this function using table "t", and for each song this table created particularly. But I don't creating this table and encoded string manually, i just wrote program for this. I promised publish this program later. (currently it's allow me put in one script sometimes more than 2k notes)
Watched your version and another what you did, really nice! Glad what you playing in same server, will try visit your house later :)
Awesome ! buddy me if you want xD . I have many toons tho lol, the active ones were Aerid 65 SM AERID *with small L 60 SM twink Dinae 60 cleric RlKU *with small L 65 gunner
Im a master construction/cook if u need anything.
Yes, thts a great way to shorten the script. Imma try it later for my next one :3 thx for the tip.
I asked friend for import this code, so nvm i got full source of script already. Here http://www.everfall.com/paste/id.php?c98pgxahumza infinity looped version.
Buenas hay alguna manera de que la cancion vuelva a comenzar una vez acabe. Porque copio el Script y tras escuchar la cancion la casa se queda en silencio
Yeap it's standalone script without loop. But you can use version for musplayer here: http://aionmusic.blogspot.com/p/music-scripts-for-musplayer.html click "Games(15)" and find this script.
your the best! .....this song reminds me those days passed by ~_~
ReplyDeleteYeah, played demo of ff8 on my pc 14 years ago...
Delete_
ReplyDelete( ((
\ = \
__\_ `-\
(____))( \----
(____)) _
(____))
(____))____/----
thumbs up! XD
i havent played ff8 even the demo. :( was jealous on you
sorry the thumb was not aligned well :P
DeleteThank you! Made my day ^^
ReplyDeletethank you for the script. Just have a little problem when importing, aion says the code is missing an "end" somewhere to close off the function. I fiddled around with it and got it to work but after a while the script started breaking and plays distorted bits of the song. It is probably due to my modifications but I am not sure how to fix it, would you have any clues?
ReplyDeleteFirstly link to screenshot with "end" error message.
DeleteSecondly, show what you changed.
This comment has been removed by the author.
DeleteI figured out half the problem, i had another sound macro (non auto play) and it was conflicting with your script. Removed my sound macro and it played fine. But when I try and removed the 2 lines of H.AlertAll at the end, the script distorts the melody again.
ReplyDelete"i had another sound macro (non auto play) and it was conflicting with your script"
DeletePut my scripts in first slot. Also read "Limitations of scripts in Aion" post for understanding reasons.
"But when I try and removed the 2 lines of H.AlertAll at the end, the script distorts the melody again."
You did something wrong, H.AlertAll does not affect the sound. But if you want you can comment/delete 14, 15, 16 lines if you dont like messages.
Summarize, I'm suppose you using many scripts which using sound channels also, and when my scripts trying to work, no free channels available because another scripts grabbed all.
DeleteThank you, i followed your advice and it works much better now. It still has minor conflicts with some of the other scripts I am running, is there no solution for conflicting channels?
DeleteIt's not a conflit, it's just a limitation in aion :) Just imagine 16 slots egg caps, but you wanna put 20 eggs, so u have just 2 choices:
Delete1) throw out 4 eggs
2) prepare 4 eggs, quickly eat it, and put another 4 in new free slots.
Also you can optimize code of another scripts, maybe they can use a less sound channels for their tasks. For example scale and glow stuffs can be done by 1 sound channel.
how many channels of the total 16 does the "Eyes for me" script need for it to perform without problems? it would be helpful to know so I can optimize the other scripts I am running, thanks!
Delete7 if you remove 14,15,16 lines of code, otherwise 8.
DeleteGreat Script ! your script format is completely different from mine O.O Care to share how you did it xD ?
ReplyDeleteThis is my version for Eyes on Me Julia's theme
https://www.youtube.com/watch?v=r_p0X6a7ywA&list=UUzEiGzQ1AiUnK7rX6AjoyVw&index=3
Best regards,
Tirza/ Aerid 60 SM server Tiamat
Thank you. I cant call it as "format", but never mind :)
DeleteFirst my step in aion music was same as for all:
H.PlaySound("temp note note note bla bla") but this way allowed me use maximum 500-700 notes in song, not bad but people wanna more always.
So i decided what if i just compress string with "temp note note note bla bla bla" and i did it. If you look on script you can notice function s(n) ... and function d(a)...
function s(n) recieve as argument number of time ticks what must be skipped. As result if I type s(5) this function return me string "r16r16r16r16r16" as you see it's more compact form :)
Lets' go to next, function d(a) it's decode function, here "a" it's encoded string. For decode this function using table "t", and for each song this table created particularly. But I don't creating this table and encoded string manually, i just wrote program for this. I promised publish this program later. (currently it's allow me put in one script sometimes more than 2k notes)
Watched your version and another what you did, really nice! Glad what you playing in same server, will try visit your house later :)
Arieluma o/
DeleteAwesome ! buddy me if you want xD . I have many toons tho lol, the active ones were Aerid 65 SM
AERID *with small L 60 SM twink
Dinae 60 cleric
RlKU *with small L 65 gunner
Im a master construction/cook if u need anything.
Yes, thts a great way to shorten the script. Imma try it later for my next one :3 thx for the tip.
Best regards,
Aerid
Music man plz help meh! How do I make this script repeat q.q
ReplyDelete[YAQAAGokAADmFIlFKBshXfh10HUemXBRL2e85nebcSlviS8t8F ivC3sT/UqDkuqeWJ1Os6brCL2SjqSEoF6eYb2f3neeMEnSKQh+09eKAul w9WNx0ciTa96N+zppMB4fH+9Eqd2sBi7i9c3fNbSfODnq6O4JC/P3oFnOJUnDD/kfxYAEIebFwv/bsirR+rA+0K64fixEZEZ66C0T/RdkA57XwCym2QXi6YCwePxQGKNj/ow5BRP0SE5Lkx7aA3AZRjzoziHGFpahTHI5afsIYI9vAEptzql KJhQ1T+hpsIfzVv7B0WJQDGiX6i9nI2dqhfEOG2czyH4lV0fNN jj98/63QBZWNwEFzq3Ufr2pq8MceSZCoFQoM/WjuPwgb5EcUTYsOnq7lYh8dsfjQlMRQAMU9ZP/KkDlm4fm9Oyz69IVxUcjasq95Jlnt2UIYGzIMmgMXBYrCdnbaS LPj/6C4DDtep2mZGUArEEin/wX1DGJDqyRMq+cZe2wUfTX0BchxgW8PyeAZbGUgBQtQMoG4NUU cfl8gA72NUUXgmAEZQOaypl23SkVvSkxUB8QSwAuH91a1Dh51R Rj/BMbUh4/peBK9P6nWXfZF4MO9IFZHj/Wrgg817LPYE5N/N5sIoHLOXapKWNfeAxAW0RS8tdZQkHxvg5dwXnNnjwkrxHk+tC IHcoGcnOmkBdHEzD9x5sgRg405xWmJRiJyW/BnnKLghmw2RxVEXjZD87DeB/F8yLg0/3p5vu0UiApoQr9Pfq4pyQXLjsfdt+daG5IW9X1aUiTjNrqihnx NfK+3ulHx9bFhEvXtYmYLkZlvaG3u+X21O5Y4fpgOkTvx10nbJ GgDGGMa+R9LlTHNdIyQ1l2Zr7UpPUrWm5SY74cYqoMtxYZ7cRO zMmnm8XqNMmh2/mq13MqcOT/HJj8IYUXCzPkIvc770HbNvPMzF8D7G4NKkLqdcBIIrPf961UlP L/GtYahHi4hy0bANLNzeTfoBxAUYFXEsAyQzDhDzRnYGk0E6EJJW XPT74aC4XlzI1JDEACwAbsw4NL7AMeygQj5TemS9xLiCMboOPx xw3zxxdGdQYQlrcR0zDWh2cV+w47VxKA2/esP9hxx/RUiT0kg+er/JEENWPy7K0QYk7u2h4UUWomCSI8rv8T0ptufHWSlZNvWh25ZJw/9g3HPQnWo1GZnzx9nN4o/GrgBiJV7uvxgkNh0obT2s2rPwXhElqxSFlN+GD8Mi7YYHO3zka YGyukU37xeMA/bCXcev6THgy32cVs19egyXdSkFaAepP9hP92Jf6YVQ2MLbVE4X rnQwzvAk39Bw35ADlJ3JK56FevCIxvL1tLKdtaa7Iibb/s8upxU9Gktt3b8zvmzgNbVM40tId4iIpwy0C+BpLLT0/haREFNUdfu58A6IEGXi6HJqxadoblmIZmQXTmvkK00tPssUEjV ec8HwaVxkyJc1vPvBsuQg4MR6yBlsuEdBDgBiyev2iO/IuxGoJ/]
Codes for import doesn't working for me, i need pure source of script.
DeleteI asked friend for import this code, so nvm i got full source of script already. Here http://www.everfall.com/paste/id.php?c98pgxahumza infinity looped version.
DeleteBless your heart sir. <3 ty tysm!
DeleteAion Music how come you can't loop this song??
ReplyDeleteYou can find answer in FAQ :)
DeleteBuenas hay alguna manera de que la cancion vuelva a comenzar una vez acabe. Porque copio el Script y tras escuchar la cancion la casa se queda en silencio
ReplyDeleteIgualmente un trabajo magnifico
Yeap it's standalone script without loop. But you can use version for musplayer here:
Deletehttp://aionmusic.blogspot.com/p/music-scripts-for-musplayer.html click "Games(15)" and find this script.
El que pusiste no me funciona, Gracias de todos modos.
DeleteYa puse otra musica en casa.
Any errors or messages? It's working fine on my side.
Deletethis isn't working for me :(
ReplyDeleteScript updated, recommended to use with sound fix pak. Or you can find "[5]" in script and replace it to "[1]" for full piano.
ReplyDelete