What's new
  • Visit Rebornbuddy
  • Visit Panda Profiles
  • Visit LLamamMagic
  • Visit Resources
  • Visit Downloads
  • Visit Portal

[Plugin] Four Songs - Party/Raid Buffs ( Songcraft FTW Baby )

It's been a while since i've played but it hasn't changed that much has it ?

EDIT:
oh wow i just checked my links dayum they changed their format.

This supports as of the last time i used it all of the songs used in songcraft.

looks like i'll have to download aa again and play with it to see what changes have happened.


fred as of the final time i updated this, songs did break the songs. I had a workaround for it in prep before i stopped playing.

was just curious on the build you used mostly etc and about the healing skill breaking the performances as the way i read it they do except for healing hymm i think it is.
 
На Русских серверах не работает?
don't speak that language so hopefully you speak english and can read this it should probably do the buffs because i think he has them set to use skill id's but as for the songs there listed in english so if you know there names in russian convert the text to proper language before you compile it and it should work. or find the skill id's for them and change them to that.
 
don't speak that language so hopefully you speak english and can read this it should probably do the buffs because i think he has them set to use skill id's but as for the songs there listed in english so if you know there names in russian convert the text to proper language before you compile it and it should work. or find the skill id's for them and change them to that.

Спасибо, но похоже сам я это не сделаю.
 
Помогите пожалуйста подправить его для Русский серверов.
 
Помогите пожалуйста подправить его для Русский серверов.

простите ужасный перевод

Этот плагин использует заклинание и отрицательных эффектов идентификаторов над именами. если идентификаторы не изменились до сих пор она должна работать нормально.
 
простите ужасный перевод

Этот плагин использует заклинание и отрицательных эффектов идентификаторов над именами. если идентификаторы не изменились до сих пор она должна работать нормально.

if (isSkillLearned("[Perform] Quickstep") == true && skillCooldown("[Perform] Quickstep") == 0 && _Quickstep == true)
{
UseSkill("[Perform] Quickstep");
Log(Time() + "[INFO]: Casting Quickstep");
} Thread.Sleep(2000);

Переписал на:

if (isSkillLearned("[Perform] Походный марш") == true && skillCooldown("[Perform] Походный марш") == 0 && _Quickstep == true)
{
UseSkill("[Perform] Quickstep");
Log(Time() + "[INFO]: Casting Походный марш");
} Thread.Sleep(2000);

Не работает. Не в оригинале не в переписанном виде на Русский...
 
Я заметил, что скрипты устроены по разному. Вот например отрывок с Halsa Assistant // Songcraft
const uint _CRITICAL_DISCORD = 11973;
const uint _STARTLING_STRAIN = 11934;
const uint _QUICKSTEP = 10723;
const uint _DISSONANT = 11943;
const uint _HEALING_HYMN = 17413;
const uint _HUMMINGBIRD_DITTY = 11377;
const uint _ODE_TO_RECOVERY = 10724;
const uint _RHYTHMIC_RENEWAL = 11948;
const uint _BULLWARK_BALLAD = 11396;
const uint _BLOODY_CHANTEY = 10727;
const uint _ALARM_CALL = 11961;
Он работает с ID, а значит подходит и для России.
 
all you need to do in the code is change the following from this
Code:
if (_BuffChecks == true) { BuffCheck(); }
                if (isSkillLearned("[Perform] Bulwark Ballad") == true && skillCooldown("[Perform] Bulwark Ballad") == 0 && _BulwarkBallad == true)
                {
                    UseSkill("[Perform] Bulwark Ballad");
                    Log(Time() + "[INFO]: Casting Bulwark Ballad");
                } Thread.Sleep(2000);
to this for each of the songs just swap out the song name to song ID
Code:
if (_BuffChecks == true) { BuffCheck(); }
                if (isSkillLearned(11396) == true && skillCooldown(11396) == 0 && _BulwarkBallad == true)
                {
                    UseSkill(11396);
                    Log(Time() + "[INFO]: Casting Bulwark Ballad");
                } Thread.Sleep(2000);
[/code

i'm also no longer playing archeage i have been pondering coming back, but that depends on a lot of things going on with my life.
 
Last edited:
Супер, спасибо. Утром попробую, отпишусь.
 
Back
Top