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

LazyRaider (Collection)

Ребята, подскажите, как запихнуть в плагин свой набор талантов? я Телепат...
И как вообще написать этот плагин на мои скиллы???????????? ?????? - Archeage ???? ?????? 1.7

Children, prompt how to push the set of talents in a plug-in? I am a Telepathist...
And how in general to write this plug-in on my skills?(((??????????? ?????? - Archeage ???? ?????? 1.7
 
Бот берет в таргет моба и стоит на месте и в логах спамит одно и тоже

Used: Insulating Lens - Now immunte to damage for a while
Used: Magic Circle - Damage boost activated
Used: Freezing Arrow


The bot a beret in targt a mob and stands still and in ravines sends spam one and too

Used: Insulating Lens - Now immunte to damage for a while
Used: Magic Circle - Damage boost activated
Used: Freezing Arrow
 
i wanna know how can i learn about this codes, i want to add some skills to use, anyone can tell me where can i learn?
 
i was trying to add Toughen to my plugin, that's the right code?

he's spamming the skill how can i fix it?


if (skillCooldown("Toughen (Rank 4)") == 0 && buffTime("Toughen (Rank 4)") == 0)
// Casting "Toughen"
{
UseSkillAndWait("Toughen", true);
Log("Used: Toughen");
Thread.Sleep(100);
}
 
i was trying to add Toughen to my plugin, that's the right code?

he's spamming the skill how can i fix it?


if (skillCooldown("Toughen (Rank 4)") == 0 && buffTime("Toughen (Rank 4)") == 0)
// Casting "Toughen"
{
UseSkillAndWait("Toughen", true);
Log("Used: Toughen");
Thread.Sleep(100);
}

Thead.Sleep(CHANGE THIS) - the number is in milliseconds. So figure out how many milliseconds 30 minutes is.
 
i was trying to add Toughen to my plugin, that's the right code?

he's spamming the skill how can i fix it?


if (skillCooldown("Toughen (Rank 4)") == 0 && buffTime("Toughen (Rank 4)") == 0) <<<<<CHANGE THIS<<<<<
// Casting "Toughen"
{
UseSkillAndWait("Toughen", true);
Log("Used: Toughen");
Thread.Sleep(100);
}


That should fix it "thread.sleep" stops script from running to next action BUFFTIME 'spell, rank" ==??? Change that homie
 
Back
Top