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

Simcraft Implemented, a Raidbot Derivate with Integrated Combat

Unfortunately i dont have a warlock, most of the apis should work fine though,
ive gotten like 40 bucks in donations, another 15 and i will just buy a warlock push to 90 for testing thursday

Sounds awesome! One question about paladins since that's my main: For aoe situations, we want to use Seal of Righteousness and Seal of Truth for 1 or 2 targets. I tried adding:
Code:
actions.single+=/seal_of_truth,if=!buff.seal_of_truth.up

&

actions.cleave+=/seal_of_righteousness,if=!buff.seal_of_righteousness.up
I added those as the #1 action in their respective action list, but when I restarted the bot, it just stood there and only popped CDs. Are those two spells not functioning yet as part of your code? I normally switch manually, but since the bot performs actions very fat, sometimes I'm not able to switch seals until a GCD or two later.
 
Sounds awesome! One question about paladins since that's my main: For aoe situations, we want to use Seal of Righteousness and Seal of Truth for 1 or 2 targets. I tried adding:
Code:
actions.single+=/seal_of_truth,if=!buff.seal_of_truth.up

&

actions.cleave+=/seal_of_righteousness,if=!buff.seal_of_righteousness.up
I added those as the #1 action in their respective action list, but when I restarted the bot, it just stood there and only popped CDs. Are those two spells not functioning yet as part of your code? I normally switch manually, but since the bot performs actions very fat, sometimes I'm not able to switch seals until a GCD or two later.

Please try:
Code:
actions.single+=/seal_of_truth,if=buff.seal_of_truth.remains<=0

&

actions.cleave+=/seal_of_righteousness,if=buff.seal_of_righteousness.remains<=0
 
Hello,
The profile does not work for warriors arms. I load the profile, but it does not work. There is no message of error.

Regards.
 
Someone could develop the script to use Healthstone / Healing Tonic when the player is 30% of life? I dont know nothing about programming / script :confused:
 
# If a character has his health 60k below his maximum, he will use the stone
actions+=/health_stone,trigger=60000
actions+=/health_tonic,trigger=150000 (if you have ~300k hp but will use health tonic at ~150k hp) depending on your amount of hp modify last number :) hope it works
 
# If a character has his health 60k below his maximum, he will use the stone
actions+=/health_stone,trigger=60000
actions+=/health_tonic,trigger=150000 (if you have ~300k hp but will use health tonic at ~150k hp) depending on your amount of hp modify last number :) hope it works

Health Stones and tonics are not in, no item except trinkets and stat potions work ^^
 
Ah ok :D. Anyway, I prefer to use tonic/stone on my own. Cheers
^
Its quite impossible to know when you need a healing potion unless you check the whole raid and the boss and the time and the mechanics ^^
 
# If a character has his health 60k below his maximum, he will use the stone
actions+=/health_stone,trigger=60000
actions+=/health_tonic,trigger=150000 (if you have ~300k hp but will use health tonic at ~150k hp) depending on your amount of hp modify last number :) hope it works
Health Stones and tonics are not in, no item except trinkets and stat potions work ^^
Thanks.
 
Does anyone have a quality BM profile they could share so I can use in raid tonight?
 
Got a minor issue. My file stucture is:
Code:
"HB/bots/simcraft" & "HB/Simcraft Profiles"

When I try to load HB am I getting this:
Code:
Looking for db.dbc in C:\Windows\System32 and all its Subdirectories
 
When reapplying dots using something such as the following:

actions.single+=/vampiric_touch,if=remains<(15*0.35)

it sometimes casts it a second time immediately afterwards. I assume this is because it hasnt registered the updated duration yet. Is there some sort of way to prevent this from happening?
 
Got a minor issue. My file stucture is:
Code:
"HB/bots/simcraft" & "HB/Simcraft Profiles"

When I try to load HB am I getting this:
Code:
Looking for db.dbc in C:\Windows\System32 and all its Subdirectories

It uses the current directory, maybe some plugin changes that ? ^^
 
When reapplying dots using something such as the following:

actions.single+=/vampiric_touch,if=remains<(15*0.35)

it sometimes casts it a second time immediately afterwards. I assume this is because it hasnt registered the updated duration yet. Is there some sort of way to prevent this from happening?

There is something called a line_cd but im not sure if i broke it during the rewrite ^^
 
Back
Top