09-23-2005, 10:11 AM
Ive been trying to get mmbot to just run pindle with my 82 blizz sorc. Ive taken the default lit sorc sequ and modified it so it only runs to pindle. Here's what I have.
The problem Im having is when my sorc goes into the red portal, she teleports to block relative 62,90. Then she casts blizzard, teleports a few more times then quits the game.
I changed the BRC to RC tryin to solve this problem. But it still does the same thing.
When I check the log it states
Obviously she misses the tele but why? Kinda out of ideas on what to do. Thanks in advance.
Quote:;================================================= =============================
; MM's basic light sorce sequence example. Sorce guide is in manual.
; Know CTA switch, internal functions calls & scripts executions are possible
; throught this advanced sequencer. Read more about it in the damn manual
; Dont forget to check your keys settings in the the mm.BOT.ini.
; s => blizz
; f1 => Frozen Armor
; x => Teleport
; Note; All skills are at right click/skill in these sequences:
;================================================= =============================
;=====================
;=== CL Sorce MAIN ===
;=====================
[MAIN]
CLSorcPreCast,0 ; Here the pre-cast sequence, not a loop.
CLSorcGoToAnyaTP,0 ; Go to Anya TP
CLSorcGoToPindle,0 ; From Anya TP go to Pindle.
CLSorcAttackPindle,22000 ; Chain Light Pindle Attack, loop for 22 seconds
CLSorcPindlePickit,0 ; Pindle present...
;Pre cast
;========
[CLSorcPreCast] ; Sequence name, declared in the [MAIN]
SR(500,800) ; => This delay is in town, before going to attack eldrtich <=
K(f1); Press mana shield
S(100) ; Sleep a bit
RC(360,200) ; Cast mana shield
S(300) ; Sleep a bit more (cast delay)
EXIT ; End of the sequence; it's a no loop sequence.
;Goto Anya
;========
[CLSorcGoToAnyaTP]
FUNC:A5ATP
EXIT
;Go to Pindle
;============
[CxSorcGoToPindle]
s(5000)
K(x)
S(100)
RC(612,50)
WEOT(1800)
RC(780,50) ; Since no green blocks in the screen this is a simple click.
WEOT(1200)
BRC(480,-40)
WEOT(1200)
EXIT
;Pindle Chain Light Attack
;=========================
[CLSorcAttackPindle]
K(s) ; Press the Chain Light Skill
S(50); Wait a bit the skill appears at right click...
RCD(MFOC,IN) ; Detecting attack, cast chain light on monsters.
S(100)
CLM
CML
CMDI ; Check if monsters are dead, if yes, will go to next sequence.
CTOE ; Chech end of time out (defined in MAIN) if override go to next sequence.
;Pindle Pickit
;=============
[CLSorcPindlePickit]
S(300) ; Added a delay to ensure a good teleport into pindle area for pickit
K(x)
S(100)
BRC(60,90)
WEOT(1200)
CLO ; Only need to check life, because we quit game right after the pickit.
CML
S(300)
PICKIT(600)
SR(100, 500) ; Why not a little random delay after pickit...
EXIT ; The end of sequences; bot will quit the game.
The problem Im having is when my sorc goes into the red portal, she teleports to block relative 62,90. Then she casts blizzard, teleports a few more times then quits the game.
I changed the BRC to RC tryin to solve this problem. But it still does the same thing.
When I check the log it states
Quote:09/22 16:36:40 [I]> The maximum PicKit clicks have been cuted to 5 max.
09/22 16:36:40 [I]> The maximum PicKit clicks have been cuted to 4 max.
09/22 16:36:56 [W]> Retry a missed teleport.
09/22 16:36:57 [W]> Retry a missed teleport.
09/22 16:36:59 [W]> Retry a missed teleport.
09/22 16:37:00 [W]> Retry a missed teleport.
09/22 16:37:00 [E]> Teleport failed.
09/22 16:37:00 [W]> Sequence exit required. SEQ5 => WEOT . 1200 . 0
09/22 16:37:00 [E]> Failed or Fast exit required while applying CLSorcPindlePickit sequence.
09/22 16:37:02 [E]> Emergency stop: first run creation failed.
09/22 16:37:02 [I]> The first run must return successful status everytime.
Obviously she misses the tele but why? Kinda out of ideas on what to do. Thanks in advance.