Reaquiring Targets in Eq2BotCommander

sumoslim

Well-Known Member
I got this piece of code from the instances thread for SF - but everytime i click it it crashes all my bots:
Code:
<Button Name='Reacquire'>
								<X>5%</X>
								<Y>45</Y>
								<Width>90</Width>
								<Height>30</Height>
								<Text>Re-Target</Text>
								<AutoTooltip>Re-targets the MA's target</AutoTooltip>
								<OnLeftClick>relay all Script[EQ2Bot]:QueueCommand[call ReacquireKillTargetFromMA]</OnLeftClick>
							</Button>
What's wrong with the way i scripted this?


Here is the error message:
Unknown command 'call"'
Dumping script stack
--------------------
-->C:/Program Files (x86)/InnerSpace/Scripts/EQ2Bot/EQ2Bot.iss:4088 ProcessTriggers() ExecuteQueued
C:/Program Files (x86)/InnerSpace/Scripts/EQ2Bot/EQ2Bot.iss:1059 main() call ProcessTriggers
Ending EQ2Bot!
 

bjcasey

ISX Specialist
I got this piece of code from the instances thread for SF - but everytime i click it it crashes all my bots:
Code:
<Button Name='Reacquire'>
								<X>5%</X>
								<Y>45</Y>
								<Width>90</Width>
								<Height>30</Height>
								<Text>Re-Target</Text>
								<AutoTooltip>Re-targets the MA's target</AutoTooltip>
								<OnLeftClick>relay all [COLOR="Red"]"[/COLOR]Script[EQ2Bot]:QueueCommand[call ReacquireKillTargetFromMA][COLOR="Red"]"[/COLOR]</OnLeftClick>
							</Button>
What's wrong with the way i scripted this?


Here is the error message:
Unknown command 'call"'
Dumping script stack
--------------------
-->C:/Program Files (x86)/InnerSpace/Scripts/EQ2Bot/EQ2Bot.iss:4088 ProcessTriggers() ExecuteQueued
C:/Program Files (x86)/InnerSpace/Scripts/EQ2Bot/EQ2Bot.iss:1059 main() call ProcessTriggers
Ending EQ2Bot!
You are missing the quotes that I have added in red.
 
Top Bottom