Questions?

FAQ (Frequently Asked Question) 

If you don't found answer on your question here, ask in comments.

Q: I can't import script.
A: Don't use import button, you need paste script in script field (opened by 2 top-down arrows button)

Q: Script doesn't working (no error messages just silence).
A: Perhaps you using scripts for MusicPlayer without MusicPlayer's script, if you dont' know which type of script you using, read here.

Q: MusPlayer's script working only when I'm press apply button in script window but not automatically.
A: You need put MusPlayer's script in slot after all music's scripts (or use 1.065+ ver.)

Q: Script sounds weird, not like in video.
A:
  • Put script in first slot, if it's multi-part scripts put part01 in first slot, part02 in second, etc.
  • Leave house and enter again.
  • Reboot aion.
  • Probably you have really low and unstable fps (need reduce settings).

Q: Script doesn't looped.
A:
  • Probably it's old script when I didn't that.
  • Script too long for implement loop.
  • It's multi-part script, they all without loop cause i'm lazy for implement synchronize stuff between scripts otherwise they will sounds with pause between parts or even with missed channels. (except multi-part scripts for MusPlayer)

Q: Pressed 'Apply' button and got "The script is too long to apply here" message.
A:
  • Delete any text in description field.
  • Delete or reduce length of text in name field of script.
  • Delete comments in script (text after -- ) if they exists.

Q: I can't open link with script
A: Try this folder on google drive (only standalone version of scripts).
A2: If it's link on www.everfall.com/paste, you can try to delete "www." part in link.

81 comments:

  1. how do i add outlets to the scripts becuase i checked the disco sample and it didnt have outlets..so how do i add outlets so i can set it to accents

    ReplyDelete
    Replies
    1. You no need disco sample for outlets, then you press apply button with any script and if script supporting outlets they appear.

      Delete
  2. Hello I have a problem with my stanalone music script. It doesn't auto play. It will only play when I click the apply button.

    ReplyDelete
    Replies
    1. Any standalone scripts or specific? When you returning to your apartment the script still exist or you need copy-paste it again?

      Delete
  3. Any standalone music script. The script still exist but it doesnt play if I don't click the apply button. I tried copy and paste many times but still having problem :(

    ReplyDelete
    Replies
    1. Hm... which slot of script you using? Try first. If still don't work try without any another scripts.

      Delete
  4. Уважаемый автор, зарегистрированы ли вы на сайте 4game. Я хочу указать Ваш ник к моему видео (интерьеры домов) с ссылкой на Ваш сайт. Спасибо Вы очень помогли мне при создании нужной атмосферы в домиках)) Если нет, как Вас указать? (ник или имя) Спасибо

    ReplyDelete
    Replies
    1. Да, если не ошибаюсь под таким же ником как и здесь.
      На самом деле указывать меня или нет на ваше усмотрение, мне было бы более интересней просто взглянуть на вашу работу как она будет готова.

      Delete
  5. MusPlayer 1.08 didn't show me the songs list, and all songs are playing in the same time. What i did wrong?

    ReplyDelete
    Replies
    1. Seems you use standalone versions of scripts. You must avoid using standalone versions with versions for musplayer.

      Delete
  6. I just converted this with nots converter: https://www.youtube.com/watch?v=ObbvThI-unk

    But unfortunately its 7000 characters do you have an easy way to extend this to a second script slot?

    ReplyDelete
    Replies
    1. https://youtu.be/A_6IsLsNVhs?t=669

      Delete
    2. Checked your midi, and noticed a lot temps marks inside... software dont support dynamic temps for scripts atm, but you can change temp inside script mannualy to average value.
      Try my version here https://groups.google.com/forum/#!category-topic/aionmusic/released-scripts/gLRQxAVvl74

      Delete
  7. hey! It's been a while, just a question though on the notesconverter like, how do u make the script loop?
    we tried to use loop=true function however it wouldnt work from scripts generated from notesconverter D: any tips how to do it?

    ReplyDelete
    Replies
    1. loop=true it's not a function, when you typed it, it's means you just added new global variable with name 'loop' in script and put value 'true' for this variable.

      For looping standalone script you need much more additional code, you can try read tutorial about looping but this tutorial old enough and using not good technique.
      Another most simple way it's pseudo loop (would play just few times), you need in pre last line of code change this line:

      for n=1,SOME_DIGIT_HERE_BETWEEN_1_AND_8_DONT_CHANGE_THIS_DIGIT do H.PlaySound(n-1, r[n]) end

      to:

      for n=1,SOME_DIGIT_HERE_BETWEEN_1_AND_8_DONT_CHANGE_THIS_DIGIT do H.PlaySound(n-1, r[n]..r[n]..r[n]..r[n]..r[n]) end

      after this edit script would played maximum 5 times.

      Delete
  8. The Converter can't find any kind of music on my computer so i can't change it from mp3 into midi too..

    ReplyDelete
    Replies
    1. mp3 is not supported format by NotesConvertor, cause it's not contains notes.
      You can use midi, txt with mml strings or .ncf (NotesConvertor Format) files only. You can find alot midi music in internet also.

      Delete
  9. When i tried to paste the MusPlayer in Aion it says the script is to long. What do i do?

    ReplyDelete
    Replies
    1. Try:
      1) shortest name for script in name field
      2) remove any text in description field
      3) remove comments in script (text after -- )

      Delete
    2. thank you! I got that fixed but now they are playing at the same time...
      1) i don't know how to tell the difference if the script is for standalone or not
      2) I followed the Tutorial on youtube and i have a few of the same song scripts used in that but they play together
      3) Also, those same songs in the video do the lights with the cube things and mine don't..
      sorry for the trouble I'm just not good at this apparently Q.Q

      Delete
    3. 1) Just open any your script with music in any text editor, press 'ctrl' + 'f' and type "s_info" (without quotes), if you'll found such text then it's means it's script for musplayer otherwise is standalone.
      2) cause you using standalone and musplayer's music scripts together.
      3) you should bind outlets for highlight effect, Here simple tutorial https://youtu.be/Yr60H4wLoA0?t=96
      Dw, inquire freely.

      Delete
    4. https://www.youtube.com/watch?v=LbBPLWfedd8 in this tutorial I followed step by step to make the standalone musplayers and every time I get this error "Line(number): 'end' expected (to close 'function' at line 6) near 'd' " i have "end" at the end of the script but it doesn't seem to make a difference

      Delete
    5. Can you share your broken script after changes?

      Delete
  10. Sure, would you like it here or should i send it to you somewhere else?

    ReplyDelete
    Replies
    1. Not here, use http://everfall.com/paste/ or any other site for code sharing.

      Delete
    2. http://www.everfall.com/paste/id.php?4ty7db4rj4tj

      Delete
    3. Edited version, reason of issue explained inside http://www.everfall.com/paste/id.php?id=4ty7db4rj4tj&v=2

      Delete
    4. OMG THANK YOU!! I DID IT!! <3 THANK YOU SO MUCH FOR ALL YOUR HELP!

      Delete
  11. hi is there anyway to for me to get a song from youtube and u helping me making it into script? i dont mind paying u for it :)

    ReplyDelete
    Replies
    1. Only if midi file exist for that song in public.

      Delete
    2. https://www.youtube.com/watch?v=9Yb9OEVwups

      is there? sorry im not too sure about what is midi file

      Delete
    3. it's not here, but i'm found it in another place. Will published a little bit later.

      Delete
  12. This comment has been removed by the author.

    ReplyDelete
    Replies
    1. Sry nope, i don't have notes. And use forum for requests next time plz )

      Delete
    2. This comment has been removed by the author.

      Delete
  13. Hi !
    First, I thank you for doing all thoses, it's amazing !
    Second, I have a problem with the MusPlayer, I have actually the all three Evanescence songs, but two of them are playing simultaneously when I come back home :/

    And then, is it possible to have a "pause" system for musics ? I didn't find this.

    Thanks in advance !

    ReplyDelete
    Replies
    1. Hi back ! Sorry for double-posting, but ther's no "edit" way :/.

      I just see your tutorial on adding a song in the player, but the "Bring me to life" song from Evanescence miss this :

      i=0
      a={146,510,100,68,100,292,344,292,66,162,930,1346}

      What are the numbers in "a=()" ?? How may I found them to add this song ? Is it the way of playing the song just in saying "Bring me" in the tchat ?

      Delete
    2. > First, I thank you for doing all thoses, it's amazing !
      Yw
      > Second, I have a problem with the MusPlayer, I have actually the all three
      Seems you found answer already, musplayers + standalone scripts.
      > And then, is it possible to have a "pause" system for musics ? I didn't find this.
      it's not implemented, cause musplayer script size 4kb atm and i dont have enough space for implement such stuff. I can create script with silence and name it as "Pause", but it's not same what you looking for.

      Delete
    3. > Sorry for double-posting
      it's fine.
      > "Bring me to life" song from Evanescence miss this :
      more tuned version of song for musplayer http://www.everfall.com/paste/id.php?hncvrltjzqkl

      > What are the numbers in "a=()" ??
      how many ticks neeed to skip in specific places of song
      > How may I found them to add this song ?
      manualy it's impossible (or really really hard), actually if you dont see such line it's just means what script can work without it.
      > Is it the way of playing the song just in saying "Bring me" in the tchat ?
      for musplayer's version of scripts - yes. You can type even "bring" (5 chars enought).

      Delete
  14. Hi and thanks for reply ! You're speed :P

    Well, I now have them all and all is working ! Thanks to you, you're a genious ! <3

    ReplyDelete
  15. hi im problems with notes convertor, when i open t a message appears saying that has stop working, why this happend to me, can u help me to fix it pls? tyvm ^-^

    ReplyDelete
    Replies
    1. Did you read read_me.txt and requirements section? What kind of OS you using? It's you first trying to run NC or oldest version of NC worked well before? Show me screenshot with message.

      Delete
  16. Hi, first of all thank you for your work!
    In a second place, why when I type "list" the script doesn't show me the list of songs?
    For everything else it works really well!

    ReplyDelete
    Replies
    1. Hmm, why it's should? :) I'm not implemented this functionality, cause for printing text i need one sound channel, and while some song playing all 8 of channels can be busy. So i can add this function in separate script but I don't thinking it's so usefull.

      Delete
  17. I would also like to thank you for all your hard work, you have made my home so much better. I was wondering if I could request a song to be made into a script? the song is silius mountain. im sure your a huge fan of the song as is most of the aion community. Here is a link to the song on youtube https://www.youtube.com/watch?v=EHkALT3V9gQ

    ty

    ReplyDelete
    Replies
    1. Nice but i need midi or sheets at least.

      Delete
  18. I have a question but not a normal here. I was wondering if you guys have made any disturbed or 3 days grace songs

    ReplyDelete
    Replies
    1. 3 days grace "chalk outline" Disturbed "sound of silence" are 2 of the songs I would really like to get for my mansion on aion

      Delete
  19. Hello, I was wondering if there's any problem with housing script on recent updates. I couldn't even type in the script box. (Previously we can add the music into it. But now it's not editable, plus there's some chinese text and comments inside it reappeared even after deletion.

    ReplyDelete
    Replies
    1. Hi, you can read here about it http://forums.na.aiononline.com/na/showthread.php?t=152292

      Delete
  20. Hello, since the merge is over I now have my house back and when I open my script to add musplayer, there is a full cache of script in English and Korean there that I am unable to delete or remove. How do you get rid of that?

    ReplyDelete
    Replies
    1. https://groups.google.com/forum/?hl=en#!category-topic/aionmusic/WDw4BmFlmrg

      Delete
  21. I don't have the xtm file in my housing folder :/

    ReplyDelete
    Replies
    1. You can always create own. Use any packs of scripts as example.

      Delete
  22. Update: If you have the songs like this: [EAMAALQUAABAwzByXUiDK3QBIhcJGGaEOL0AztGbX7njw+1Dpc h2hIdDzSTaUhrOhcBLu8jSdyvP4uifXn0H0+nuE0us8r2Z3gbY cdR1WxSVHKRIFY01lnFGxcQEtXja3GWhfus1mpw7Jxe7rpGtu8 N1eMK6TAUF5lveXU/izfOVqWThw6LDTJIFF0UIYiHly2RyRd2VE7TEgYygje+5h59qJ 8cQ7wEQdKaRIcAfYIQThdVlQ/g+DRoPxZdZ7wAPL4ql/RYdqINxV9HyY6o7EmTKBUx+9Vzd6xEkrEsyFtSS/8+mhBQzYIBOJ7VkMiINXmhwDVtbby/rkvu+sRtcSOxK1bw0sSuS+c2mvzX73yqNoVJqUri1mWHO8bj0X Wynei74yxY2NhC/QNeq76v3/9IVTEJ1mvezh5WSTsuTODvSNykSxU/zQ4sSLw25gh2b95IuTrqo03YX0iUbeaMFHQz/JQPccyUWpJfxxje1RimxzP0dmgu0OrZ+LS62feAM4Lx88Oe4WR X53X+k+vRtX/FzWC7Lhy/QFOL0eo8/v6mzsxEUksCrInvAwhuPiGnSPBoiRv1LEGKuL3abNPh4xH1ePC c9oFyKeW7LPfp6Tug6EesIdfHcsiMOfIZqndu8kN0a/qE2t8Kvb7MVNekk26O1DUEweZgk49DJXrQA+T3Rdn1Y/bwbDinBaufat+hWMtoHKVH5aI3Hqs4mzQ2DNJ4oCv6ukFPZzJv xmvjX72S+EP08Oajwp6AH7JzTCTFXnOchk8wox43YuKb8ij+eq Zq23xCpb3D3ijxmXJ34yGUdJcv+Rlo1e12rli62uWCtoHHU8a+ lOmqQMMqrXq3JnTmtJEOS0Evtv6Z8gATcXi34FlIB35CUPO+IB qyzQ+XK4ZXnxNTVO5Vqz68/Bm4zcQB5rMrMAAlUvYWXxS2/IA8/t6RT5qIegLc82ai5gvgiOtGpNbCqm008zWooCDrlKN3rF1KjeF yWfy3DFfSl/+zFrxPTPfL2SGZvtaXseYLpOJMwe/7VUIJH/nVKZp1zyLi7BS3Blh3j]

    They are importable

    ReplyDelete
    Replies
    1. Import didn't worked for me when I checked it last time. But I'll try your code later.

      Delete
    2. You codes works, but most of my scripts too large for export, so it's not a solution.

      Delete
  23. Уважаемый автор, во-первых большое спасибо за Вашу работу :)
    А теперь мой вопрос: я нашла скрипт Final Fantasy VIII - Balamb Garden, но не могу установить его, а очень хочется. Суть проблемы в том, что в игре у меня почему-то на месте бокса скрипта белый квадрат, который не позволяет ничего делать со скриптами. Не имею понятия, как это исправить,но попыталась в обход просто скопипастить в файл lbox_archived.xml, и оно конечно не заработало, вкладка депозит пустая. Я абсолютно не понимаю в скриптах, поэтому хотелось бы какую-нибудь инструкцию (очень доходчивую, для чайников :), как правильно скопипастить его так, чтобы он работал. (Ну или сам файл, как вам быстрее и удобнее :)

    ReplyDelete
    Replies
    1. Такая инструкция уже есть https://groups.google.com/forum/?hl=en#!category-topic/aionmusic/znqLy8foz6k
      Будут трудности, можете прям там спросить.

      Delete
    2. Спасибо большое! Очень помогло, хотя трудностей избежать не удалось :) Свой вопрос я там задала :) Еще раз спасибо

      Delete
    3. Не за что, как вернут возможность прямого редактирования скриптов в игре станет проще :) Но судя по руофу даже в 5.8 корейцы еще не исправили это.

      Delete
  24. Hello! I am trying to just get the Zelda's Lullaby portion of this http://everfall.com/paste/id.php?09xcqxy7f6sm

    Is it one that needs to be paired with MusPlayer? I have another one that I've edited, but I can't get it to loop...

    ReplyDelete
    Replies
    1. This is the Import link for the one I can't get to loop:

      [0AIAABoRAADVdbj/PuGkY5IAjZ0Zny4pF6pKnunAOgbVqH9xMg886DBSG+r6D9As8SR+Zeab/ym4Z/3/UtKf4xVtfwZSR11dzZuLKk8w2vSlwOjc/GjypBv2ZCzFLdy00MO2i64nd5f3A6gdteLwgemW1tQhGGBeX4svMT+V8chXQBj42I3T2kOZOrdINNL+mo1cc8GDUTV3ndHnMrSCP1W7cmtZ2Ry0dP4GHloAu2l7R4fIhuxq6nDigOeVQAu9Yk5WEz7MIem0gvwcriGehlPmEOcOlmO/+/U+kvtK/X9g9CU77o+uOl1OcpBZj9YovdTP3NROCQLmWlt2YQBk+U6JbHoX/X3Z+X2yrzHESmNZzYLh3kzpXLhN8dUP/1B/SiitC17Xvd236vTXhCtsh0RFYfsWkHM+Wvex9ZGCpFo8bsD4FFNSZu+IWysaPMdbv4u+p55jYW7NWMddQ/MpdA8T0m1jbQ5ijD1F45zvRxXCSud4eASsyaXTAnax16E4q5BptEFCKHXVUD7Jr+ob34klbcOuIlIX41j0yK5lNk8Tfy/hCniOQCxkUrJWSGWsio6v0SitKA23ouAE+PpVfVD3R25HJICEkRa7zS/E9DYORFvBGjpl+xZ+j8sUsjetC7U7NRYj99PK3dBubtKQuCfPC5Aaf5qp39RHQTH5Ko5aJS7P60tJ1XMb1Y46FXxzZk+UzCd5BQ1M9NtHUJ8YcLIE92IyVb5nbPK9BagZ7xhIMqdNtzERM7lhFG4a892j/irG3FH0zYNTg8nYIqOy5TPHOJlLpjww0Oo63zc4Cczhe2MUqRBPce0aprILLKbce6qRQooWxCYc1xmMcCy3IqzG1GjmJd19bnTQ8LbnOUOaHioaudw7OlDMyEBElMC4shlu2uwoX5CxKCq/DnzcsMHIrFqxDw/61Cb0VGXL60e6/GUNEH/DMDRX8vGksfLu5VQdrSEWqC0=]

      Delete
    2. Yes, for make work script in link you need musplayer also. I'll check your import code later.

      Delete
    3. Standalone, tuned and looped version:

      [YAQAAKYOAAAG/Z/lHFxJO3vq4YKmcWoBiCUpogUVSho67Zc0ZQeJpdmIDDz7gWYDmAunAGRfGW3JnwTkSdEgWDrmDKADGl85P24JE1JT+hYN2sbWJBLk5O6+8+qfJsjWiHWHvVKSFFPLOVBn3hZKpI0TYBdRdVCfuImydD0/tqpPnJAIFLcLmORLu2xoFW390d/olMFvUDRpMMuUWHlafMm066rGxF6iHCVJdQbh6Ehg2Y6PYlZm/lyXRI5xuXag3d9xHp0IdyDzHnXpz/ej+8mCK4IncjRhCCEoPt6iXUybJKfe0wgPmFqYi14haE5zgeA9o+5OSeYCxj7pqF1SmlviJee3Rg0DN0McIMeIoJvjPo5BmbAUrKPwnSvycjke+SxshDFHdGiAQTgHsNb0qxUAbEj5U8keGeQ+7fb80Nusa1L6K1yY46icNADFKUjoymzbmkujgeaUOGOHfmAGjBSdUMUcQvG6NvPpm7Ud88DKyKzDdDglljtf/QpUWFLVQdPRdYRPXGU6BhkK2S5tajfawBYfgWk0HsVujZiEahIjRfYADwyNbT6qIzxns3DZuTcetBEXyUCGMFZDqMIdK1/Ih0i3v+AGAT79Clj8T3T5WR7yVy8amVAMcEJH6h7FwjBKC/3LLpiSp3dXLaT778916BppdX5gXyPmIRr+Aw6ZeQiqW4SQYOT8uSqqFtPlPPob112t9yr7CTnHp4huEr9O+71V4vh5bdG7XSiJ6y57VvLlmLddDT/r0mo6v1JXOsJtGWB6h9vDWAUMbpDx4o36C2YJtmMyEv5s7Zml4Gn5r3TOixzlAYlfzCUdIQjeMPhV14FF+23AcvseBB4D7K6aEEgOHsksWmDcEgJdZUfK6uy3cgDZ/Z0HE6f2GAPjFl8Neid8e2bO5sf/9JfOsUkB0+OH9E00y5wVClRJ223ZR48O5VUHvNL9YTQUnNkEb3AUwZHEqErsbCNqrj9gOu0d2ta0qykp2gMzxPDwTCWHzxB0qzBRtTs3yaT4TJCO51NTW3X9VaumSUJSIKXlz6FP08mZegpviwoiAcL5hxf2Yck+wrwx3cOAVP4iG5O4DUgsbINmu/EjWaeW57XPD7V7IwE5JoXvpa05Gt386cl8sHAM4fxuUTSWCMC8a/ypKga96xUfryCA4y54HnwxWrqu96mBEmmoAgG4EjsGd1H0ShSOy1Dt1il8hn4nr6Zf17//Qu0/vibLpVt4t3rXdaJuoaIHXjpxObJj962D6wlNOmG2U3mUZu5ud16uIOXS4fwIiMyw4MMngv5DkJhFFDzmjZJXNKslRSxkO12vlCjS/uCbFfTMREl76g8aRj26ilDeFSQEQFijYxE5+/TaHT7mOAxk5yAJcoyPEg/IMOYcsVd4OucWI2BMGnBseFjbNX/35Mjqgf9g308/U3kSGKLvseKjJtholNxG9OgoLQWTzbvgjP+k5DFI463g+0jNNAmWt3Dg7Wt68mbM5+xRttcY+ftLP9xS]

      Delete
    4. Oh my gosh you're amazing and wonderful for having done that. Thank you so much! <3

      Delete
  25. Привет! Вы мне недавно помогли разобраться со скриптом из ФФ8. В общем, с ним опять возникли проблемы. Он просто внезапно начал звучать не так, как надо. Играет так, как будто некоторые звуки отсутствуют или сместились. Есть ли какая-то причина этому или способ исправить?

    ReplyDelete
    Replies
    1. Другие ваши скрипты которые захватывают суммарно больше 8 звуковых каналов.

      Delete
    2. Просто я пробовала удалять вообще все другие скрипты, и даже без них мелодия звучит криво.
      До этого, кроме музплеера и скрипта самой мелодии, у меня стояли только стандартный скрипт приветствия и увеличитель мебели. Все работало прекрасно, я ничего не трогала, но в какой-то момент мелодия просто перестала играть нормально.

      Delete
    3. Попробуйте удалить все скрипты и заново поставить только musplayer и скрипт с музыкой из ff8. Сами скрипты вы не редактировали ведь?

      Delete
    4. Я делала это. Переустанавливала музплеер, пробовала заменять lbox_archived.xml на новый (т.к. функция редактирования в игре все еще не работает). Ничего это не помогло :( А "испортился" он сам по себе, я абсолютно ничего не меняла и не устанавливала новых скриптов.

      Delete
    5. Функцию редактирования скриптов можно уже исправить, решение в моем последнем сообщении (новостной раздел). Если вы играете не на NA, то возможно структура каталогов немного иная, но это маловероятно.
      Если можете попробуйте записать видео с тем как стало звучать. И поставьте musplayer не light версии чтобы можно было видеть сообщения. При сильном рассинхроне появится соответствующие сообщение.

      Delete
    6. В общем да, ни того, ни другого у меня сделать не получилось. Когда кликаю на файлик, который вы залили, в нем пишется что путь не найден, хотя я исправила адрес к папке. А в видео вместо звука шум.
      Играю на NA. Музплеер версии 1.083, стоял с самого начала. Сообщений нет, кроме обычного be patient while channels synchronizing

      Delete
    7. Если пишет не найден путь, значит вы исправили на не верный путь. Скриншот с исправленным файликом или просто скопируйте исправленную строку и покажите ее тут. Если играете за нях, то могу проверить ваш дом/студию лично и тогда будет проще понять в чем же дело.

      Delete
    8. https://pp.userapi.com/c830308/v830308221/1504a/LyFCilqWpWU.jpg

      Жаль, было бы отлично, но я асмо с каталама

      Delete
    9. Понятно в чем дело, пробелы в путях, исправленную версию чуть позже перезалью.
      Если на Данарии никого нет, то можно создать няху там, и до 10/20 уровня за часик апнуть.

      Delete
    10. Исправил, по той же ссылке скачайте заново.

      Delete
    11. Еще как вариант, отправьте мне свой файл lbox_archived.xml

      Delete
  26. Прекрасные работы. Музыка красивая. Да вот только вообще не понимаю ничего. Как установить этот MusPlayer, в какую папку вставлять не пойму. Так же проблема с белым полем в редакторе скриптов. Почитала по ссылке https://groups.google.com/forum/?hl=en#!category-topic/aionmusic/znqLy8foz6k ничего не поняла так. где что исправлять то.

    ReplyDelete
    Replies
    1. > Прекрасные работы. Музыка красивая
      Спасибо.
      > Как установить этот MusPlayer, в какую папку вставлять не пойму.
      Это обычный скрипт как и все остальные, его не нужно устанавливать в какую то папку, достаточно вставить в игру, но так как у вас...
      > Так же проблема с белым полем в редакторе скриптов.
      Я публиковал фикс для клиента NA, но для руофа он видимо не подходит. Так как я никогда не устанавливал себе клиент руофа, то сам я посмотреть и исправить не могу.
      Но есть другое рабочее решение: добавлять скрипты через вкладку депозит. Ссылка которую вы привели как раз ведет на урок как самостоятельно создать файл для данного способа добавление скриптов в игру.
      И так как с уроком у вас возникли трудности, самым простым решением будет скачать уже готовый файл и попробовать в игре получить хоть какой-то рабочий результат и уже потом можно будет попробовать пойти дальше.
      Подобный готовый файл можно найти здесь:
      https://aionmusic.blogspot.com/search/label/Pack%20of%20scripts
      В архиве есть инструкция по установке и добавлению в игру. Если возникнут трудности, описывайте на каком шаге они возникли, так как "вот только вообще не понимаю ничего" не та точка от которой я могу отталкиваться.

      Delete