EQ2Bot crash for Coercer

badshark

Well-Known Member
Since the last update, my script for the coercer closes once it goes into combat. Here is the post it gives

C:/Program Files/Innerspace/Scripts/eq2bot.iss:1064 Combat () call Combat_Routine ${gRtnCnt}

C:/Program Files/Innerspace/Scripts/eq2bot.iss:451 main () call Combat

Ending EQ2Bot!

It shuts down, but it does not crash the actual game. I have tried updating all the files, but it continues to shutdown. Any ideas? Thanks.
 

badshark

Well-Known Member
Since the last update, my script for the coercer closes once it goes into combat. Here is the post it gives

C:/Program Files/Innerspace/Scripts/eq2bot.iss:1064 Combat () call Combat_Routine ${gRtnCnt}

C:/Program Files/Innerspace/Scripts/eq2bot.iss:451 main () call Combat

Ending EQ2Bot!

It shuts down, but it does not crash the actual game. I have tried updating all the files, but it continues to shutdown. Any ideas? Thanks.
The total script was:

EQ2Bot : : Targetting Nearest Aggro Mob
No 'shard' function found in script
Call Failed
Dumping script stack
--------------------------
-->C:/Program Files/InnerSpace/Scripts/EQ2Bot/Class Routines/coercer.iss:558 RefreshPower() call shard 40

C:/Program Files/InnerSpace/Scripts/EQ2Bot/Class Routines/coercer.iss:497 Combat_Routine() call RefreshPower

C:/Program Files/Innerspace/Scripts/eq2bot.iss:1064 Combat () call Combat_Routine ${gRtnCnt}

C:/Program Files/Innerspace/Scripts/eq2bot.iss:451 main () call Combat

Ending EQ2Bot!
 

bob_the_builder

Well-Known Member
Just open the coercer.iss and put a ";" in front of line 558

Code:
;	call shard 40
I can't seem to find the shard function, it's not in the class file nor eq2bot but the script was recently changed to call it where previously it just used

Code:
	if ${ShardMode}
		call Shard
Well anyways, least you can run it.

Bob
 

Pygar

EQ2Bot Specialist
Just capiatalize 'shard'

call Shard 40

Shard function is in eq2botlib for any that care.
 

badshark

Well-Known Member
Just capiatalize 'shard'

call Shard 40

Shard function is in eq2botlib for any that care.


It fixed the problem. Mucho thanks and your response time should go down in the Guiness record books. Can't tell you how impressed I am. Thanks again!
 
Top Bottom