Fission
06-06-2007, 04:31 PM
Ok, I have everything setup in MMBot and I am trying to do my first runs. It goes to pindle, teleports, then it will usually teleport into them and get hit and exit or just teleport near and exit. I am going to post my sequence I am using and then also my event log.
;==========>>Teleport Script Series<<==========
;Script: Blizzard Sorceress
;Author: Nicotine
;Based: N/A
;Monsters: Pindle
;Version: 5.44B6
;Date: NOV. 24, 2005
;Tested: Hell
;=============================================
;==========>>Updates<<==========
;
; N/A
;
;===============================
;==========================> Delays
@Random_Delay1 = 500,2500
@Random_Delay2 = 500,2500
@Switch_Delay = 400
@PreCast_Delay = 100
@WarCry_Delay = 500
@Pindle_Freeze_Length = 500
@Pindle_Attack_Length = 9500
@Tele_Delay1 = 350
@Tele_Delay2 = 300
@Walk_Delay = 400
@Key_Delay = 50
@Loop_Delay = 100
@Pickit_Delay = 600
@Random_Sleep = 300
;==========================> /Delays
;==========================> Skills
@Teleport = f2
@Blizzard = f3
@Chilling_Armor =
@Glacial_Spike = f5
@Battle_Orders =
@Battle_Command =
;==========================> /Skills
;=============================
;==========================> Blizzard Sorc Main
[MAIN]
NblizzPreCast,0
NblizzGotoAct5Wp,0
NblizzCTA,0
NblizzOutTown,0
NblizzPindleFreeze,@Pindle_Freeze_Length
NblizzPindleKill,@Pindle_Attack_Length
NblizzPindleEnd,0
;==========================> Blizzard Sorc pre-cast
[NblizzPreCast]
K(@Chilling_Armor)
S(@PreCast_Delay)
RC(300,200)
S(@Random_Delay1)
;EXEC:Example.au3
EXIT
;==========================> Blizzard Sorc goto Act5 WP
[NblizzGotoAct5Wp]
FUNC:A5WPtoATP
EXIT
;==========================> Blizzard Sorc Shouts
[NblizzCTA]
SWITCH1
S(@Switch_Delay)
K(@Battle_Orders)
S(@Key_Delay)
RC(400,300)
S(@WarCry_Delay)
K(@Battle_Command)
S(@Key_Delay)
RC(400,300)
S(@WarCry_Delay)
SWITCH2
S(@Switch_Delay)
;==========================> Blizzard Sorc Go to pindle
[NblizzOutTown]
K(@Teleport)
S(@Key_Delay)
BRC(400,-310)
WEOT(@Tele_Delay1)
RC(680,60)
WEOT(@Tele_Delay1)
BRC(510,0)
WEOT(@Tele_Delay2)
CLM
EXIT
;==========================> Blizzard Sorc Freeze Pindle Attack
[NblizzPindleFreeze]
K(@Glacial_Spike)
S(@Key_Delay)
RCD(MFOC,IN)
S(@Loop_Delay)
CLM
CMLM
CTOE
;==========================> Blizzard Sorc Final Pindle Attack
[NblizzPindleKill]
K(@Blizzard)
S(@Key_Delay)
RCD(MFOC,IN)
S(@Loop_Delay)
CLM
CMLM
CMDEAD
CTOE
;==========================> Blizzard Sorc Post Pindle
[NblizzPindleEnd]
K(@Teleport)
S(@Key_Delay)
RC(565,155)
WEOT(@Tele_Delay1)
PICKIT(@Pickit_Delay)
S(@Random_Sleep)
EXIT
;==========================> /EOF
and here is the event log
06/06 02:27:59 [I]> Inventory: 9 used 1*1 spaces.
06/06 02:28:06 [W]> Mercenary seems dead...
06/06 02:28:22 [W]> Merc seems dead!
06/06 02:28:22 [W]> Sequence exit required. SEQ6 => CML . 0 . 0
06/06 02:28:22 [E]> Failed or Fast exit required while applying NblizzPindleFreeze sequence.
06/06 02:28:25 [I]> ==> Cycle: 1 => Run: 1 : Game duration: 27.7 seconds.
06/06 02:28:25 [E]> Emergency stop: first run creation failed.
06/06 02:28:25 [I]> The first run must return successful status everytime.
Can anyone help? Thank you!
;==========>>Teleport Script Series<<==========
;Script: Blizzard Sorceress
;Author: Nicotine
;Based: N/A
;Monsters: Pindle
;Version: 5.44B6
;Date: NOV. 24, 2005
;Tested: Hell
;=============================================
;==========>>Updates<<==========
;
; N/A
;
;===============================
;==========================> Delays
@Random_Delay1 = 500,2500
@Random_Delay2 = 500,2500
@Switch_Delay = 400
@PreCast_Delay = 100
@WarCry_Delay = 500
@Pindle_Freeze_Length = 500
@Pindle_Attack_Length = 9500
@Tele_Delay1 = 350
@Tele_Delay2 = 300
@Walk_Delay = 400
@Key_Delay = 50
@Loop_Delay = 100
@Pickit_Delay = 600
@Random_Sleep = 300
;==========================> /Delays
;==========================> Skills
@Teleport = f2
@Blizzard = f3
@Chilling_Armor =
@Glacial_Spike = f5
@Battle_Orders =
@Battle_Command =
;==========================> /Skills
;=============================
;==========================> Blizzard Sorc Main
[MAIN]
NblizzPreCast,0
NblizzGotoAct5Wp,0
NblizzCTA,0
NblizzOutTown,0
NblizzPindleFreeze,@Pindle_Freeze_Length
NblizzPindleKill,@Pindle_Attack_Length
NblizzPindleEnd,0
;==========================> Blizzard Sorc pre-cast
[NblizzPreCast]
K(@Chilling_Armor)
S(@PreCast_Delay)
RC(300,200)
S(@Random_Delay1)
;EXEC:Example.au3
EXIT
;==========================> Blizzard Sorc goto Act5 WP
[NblizzGotoAct5Wp]
FUNC:A5WPtoATP
EXIT
;==========================> Blizzard Sorc Shouts
[NblizzCTA]
SWITCH1
S(@Switch_Delay)
K(@Battle_Orders)
S(@Key_Delay)
RC(400,300)
S(@WarCry_Delay)
K(@Battle_Command)
S(@Key_Delay)
RC(400,300)
S(@WarCry_Delay)
SWITCH2
S(@Switch_Delay)
;==========================> Blizzard Sorc Go to pindle
[NblizzOutTown]
K(@Teleport)
S(@Key_Delay)
BRC(400,-310)
WEOT(@Tele_Delay1)
RC(680,60)
WEOT(@Tele_Delay1)
BRC(510,0)
WEOT(@Tele_Delay2)
CLM
EXIT
;==========================> Blizzard Sorc Freeze Pindle Attack
[NblizzPindleFreeze]
K(@Glacial_Spike)
S(@Key_Delay)
RCD(MFOC,IN)
S(@Loop_Delay)
CLM
CMLM
CTOE
;==========================> Blizzard Sorc Final Pindle Attack
[NblizzPindleKill]
K(@Blizzard)
S(@Key_Delay)
RCD(MFOC,IN)
S(@Loop_Delay)
CLM
CMLM
CMDEAD
CTOE
;==========================> Blizzard Sorc Post Pindle
[NblizzPindleEnd]
K(@Teleport)
S(@Key_Delay)
RC(565,155)
WEOT(@Tele_Delay1)
PICKIT(@Pickit_Delay)
S(@Random_Sleep)
EXIT
;==========================> /EOF
and here is the event log
06/06 02:27:59 [I]> Inventory: 9 used 1*1 spaces.
06/06 02:28:06 [W]> Mercenary seems dead...
06/06 02:28:22 [W]> Merc seems dead!
06/06 02:28:22 [W]> Sequence exit required. SEQ6 => CML . 0 . 0
06/06 02:28:22 [E]> Failed or Fast exit required while applying NblizzPindleFreeze sequence.
06/06 02:28:25 [I]> ==> Cycle: 1 => Run: 1 : Game duration: 27.7 seconds.
06/06 02:28:25 [E]> Emergency stop: first run creation failed.
06/06 02:28:25 [I]> The first run must return successful status everytime.
Can anyone help? Thank you!