thank you Unknowned for all that you've given us
i'm running into some issues with self buffs.... i know it's commented that there are issues was wondering if anyone knew the fix. ty for all the help.
I first tried to use: to cast them on myself none of them worked.
Code:
;cast Energy Armor
PowerUseGUID(0x77BC0000,0x153CF)
Sleep(100)
;cast Familiar
PowerUseGUID(0x77BC0000,0x18330)
Sleep(100)
;cast Magic Weapon
PowerUseGUID(0x77BC0000,0x1294C)
Sleep(100)
;cast Diamond Skin
PowerUseGUID(0x77BC0000,0x1274F)
Sleep(100)
then tried to cast them on the monster i am hunting and Diamond Skin worked this way
Code:
;cast Energy Armor
PowerUseGUID($OBject[$MyIndex][1],0x153CF)
Sleep(100)
;cast Familiar
PowerUseGUID($OBject[$MyIndex][1],0x18330)
Sleep(100)
;cast Magic Weapon
PowerUseGUID($OBject[$MyIndex][1],0x1294C)
Sleep(100)
;cast Diamond Skin
PowerUseGUID($OBject[$MyIndex][1],0x1274F)
Sleep(100)
any help would be appreciated ty.