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

How can i use item and use item skill?

Status
Not open for further replies.

Machlan

New Member
Joined
Oct 7, 2014
Messages
25
Reaction score
0
i got this nodachi

Honor's Frenzied Nodachi - Archeage Database 1.2

and what i wana do is:
-equip nodachi
-active the nodachi skill
-equip my sword
-equip my shield

i`m trying this code:

if (itemCooldown("Honor's Frenzied Nodachi") == 0)
{
Equip("Honor's Frenzied Nodachi");
Thread.Sleep(50);
UseItem("Honor's Frenzied Nodachi");
Thread.Sleep(50);
Equip("Demon's Crook");
Thread.Sleep(50);
Equip("Faded Shield of Fortitude");
Thread.Sleep(50);

}

and this code only equip nodachi...

any help?
 
As far as i can see ure function UseItem(string name)
does not exist (look here: ArcheBuddy - Table of Content)
(actually im suprised it does compile Oo

one possebility would be to use:
--> public bool UseItem(string name, bool autoCome)


Equip("Demon's Crook");
Thread.Sleep(50);
Equip("Faded Shield of Fortitude");
Thread.Sleep(50);

Should work though, try edditin ure Equip function and see if it works then
 
Status
Not open for further replies.
Back
Top