Fast Type Event Automacro Problem

All about the macro plugin can be found in this forum. This forum is intended for the macro plugin only.

Moderator: Moderators

aeronhyuwell
Plain Yogurt
Plain Yogurt
Posts: 50
Joined: 30 Jun 2013, 06:41
Noob?: No

Fast Type Event Automacro Problem

#1 Post by aeronhyuwell »

Code: Select all

Fast-Type Event: Type the Correct Sentences.
Fast-Type Event: BIHE]I=6D,Q%,=%JTES;P%M,PI=I
Fast-Type Event: Type 'talk text' (Respond to NPC)
sir can you make me simple macro for this ? type all 28 jumbled letter,number,sign

Code: Select all

BIHE]I=6D,Q%,=%JTES;P%M,PI=I
User avatar
4epT
Developers
Developers
Posts: 627
Joined: 30 Apr 2008, 14:17
Noob?: No
Discord: ya4ept#8494
Location: Moskow (Russia)

Re: Fast Type Event Automacro Problem

#2 Post by 4epT »

put in macros.txt

Code: Select all

automacro antibot {
console /Fast-Type Event: (.{28})/
delay 2
exclusive 1
call {
do talk text $.lastMatch1
}
}
All my posts are made by machine translator!
¤ Manual ¤ Anti BotKiller ¤ Packet Extractor v3 ¤
Image
Image
aeronhyuwell
Plain Yogurt
Plain Yogurt
Posts: 50
Joined: 30 Jun 2013, 06:41
Noob?: No

Re: Fast Type Event Automacro Problem

#3 Post by aeronhyuwell »

automacro start {
location prontera 155 157
timeout 5
delay 2
call {
pause 1
do talk 0
pause 1
}
}

automacro antibot {
console /Fast-Type Event: (.{28})/
delay 2
exclusive 1
call {
do talk text $.lastMatch1
pause 5
}
}

automacro EventOver {
console /Fast-Type Event: There is no Event right now./
delay 2
call {
do c @time
}
}

#Server time (normal time): Thursday, March 20 2014 02:50:41.
automacro time {
console /Server time.*2014 \d+:0?(\d+):\d+./
delay 2
call {
$relog = @eval((30 - $.lastMatch1)*60)
do relog $relog
}
}

if i do $relog = @eval((30 - $.lastMatch1)*60) for example 30 - 58 = -28*6 = -168 the bot can relog -168 . how can i do relog 168 remove the negative sign .
if