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

Macro Problem... Help please

thenrique87

Member
Joined
May 20, 2010
Messages
143
Reaction score
0
hey guys...

I was trying to put this macro in a profile: /script SetCVar("AutoLootDefault", 1)

Problem is, because AutoLootDefault has " " around it, I get an error. Can anyone find a way around it?
Also, Is there a way for the bot to check if AutoLoot is not selected, and IF it isnt, run this macro?

Thanks in advance!
 
Last edited:
hey guys...

I was trying to put this macro in a profile: /script SetCVar("AutoLootDefault", 1)

Problem is, because AutoLootDefault has " " around it, I get an error. Can anyone find a way around it?
Also, Is there a way for the bot to check if AutoLoot is not selected, and IF it isnt, run this macro?

Thanks in advance!

You have to 'escape' the quotes used in the macro as described on the RunMacro Wiki Page. It should look like this...

Code:
<CustomBehavior File="RunMacro" Macro="/script SetCVar(&quot;AutoLootDefault&quot;, 1)" />
 
i'd like a user setting for this =P - or auto on by default like CTM is
 
by default honor buddy turns this on, it dosnt matter if the user has it off or not.
 
by default honor buddy turns this on, it dosnt matter if the user has it off or not.

Hum... I had posted two or three days ago that it worked, but today it doesnt. When I type the " " on the chat line in wow it works, but not on the profile in PHP like such: <CustomBehavior File="RunMacro" Macro="/script SetCVar(&quot;AutoLootDefault&quot;, 1)" />

I did read the Wiki and I tried tweeking it around but got nothing. And I didnt have to worry about checking that before, but for goblins, HB hasnt done it automatically. Am I doing something wrong?
 
Last edited:
Update on the situation... tried this morning: fresh HB files. Both HB and the scrip in PHP does nothing. More up-sating, I tried it on a brand new belf and same thing; it did not mark autoloot.
 
Update on the situation... tried this morning: fresh HB files. Both HB and the scrip in PHP does nothing. More up-sating, I tried it on a brand new belf and same thing; it did not mark autoloot.

try with

PHP:
<CustomBehavior File="RunMacro" Macro="/script SetCVar(&quot;AutoLootDefault&quot;,&quot;1&quot;)" />
 
Back
Top