Auto Relog help

Philippines

Moderators: waferbaron, Moderators

Forum rules
This server is currently not maintained and tables folder (including connection info) is outdated. Read the wiki for instructions on how to update those information. Please contribute your updated info. Contact Cozzie to join the team as a regular server supporter.
bellemund12
Human
Human
Posts: 49
Joined: 01 Oct 2012, 20:20
Noob?: No

Auto Relog help

#1 Post by bellemund12 »

Hi guys,

all i want to know is how to set my BOT auto-relog if stuck,

because sometimes it will not attack monsters or shall we say its stuck

i accept macro or just simple config


thanks in advance :D
ever_boy_
Developers
Developers
Posts: 308
Joined: 06 Jul 2012, 13:44
Noob?: No

Re: Auto Relog help

#2 Post by ever_boy_ »

set attack auto distance to 1, if melee.
set teleport when drop/lost target to 1.
bellemund12
Human
Human
Posts: 49
Joined: 01 Oct 2012, 20:20
Noob?: No

Re: Auto Relog help

#3 Post by bellemund12 »

ever_boy_ wrote:set attack auto distance to 1, if melee.
set teleport when drop/lost target to 1.
yes i already change attack_distance to 1

sorry to tell, im playing NEW IRIS SERVER no fly no b.wing =]]

all i want is to make my bot relog every 10 or 20 mins

please teach me how
dracus_loki
Human
Human
Posts: 29
Joined: 13 Jul 2012, 06:32
Noob?: Yes

Re: Auto Relog help

#4 Post by dracus_loki »

there are many ways to do this ,,, heres one example


automacro time {
location prontera ### <<<put the map name here
call timer
timeout 10
}

macro timer {
log $.minute
$x = $.minute
if (($x == 59) || ($x == 29 )) call time1 ##### u can put the time here

}

macro time1 {

do relog 60

}


this will take the time values ( as in this example 59 , 29 ) from ur computer time ,,these digits are the minutes ... so at 29th and 59th minute ur bot will do a relog ....this should work fine ,, as i said there are many ways to get it done as per ur needs
bellemund12
Human
Human
Posts: 49
Joined: 01 Oct 2012, 20:20
Noob?: No

Re: Auto Relog help

#5 Post by bellemund12 »

dracus_loki wrote:there are many ways to do this ,,, heres one example


automacro time {
location prontera ### <<<put the map name here
call timer
timeout 10
}

macro timer {
log $.minute
$x = $.minute
if (($x == 59) || ($x == 29 )) call time1 ##### u can put the time here

}

macro time1 {

do relog 60

}


this will take the time values ( as in this example 59 , 29 ) from ur computer time ,,these digits are the minutes ... so at 29th and 59th minute ur bot will do a relog ....this should work fine ,, as i said there are many ways to get it done as per ur needs

so for example,

automacro time {
location alberta
call timer
timeout 10
}

macro timer {
log $.minute
$x = $.minute
if (($x == 59) || ($x == 29 )) call time1

}

macro time1 {

do relog 60

}


is this correct or did i miss something?
bellemund12
Human
Human
Posts: 49
Joined: 01 Oct 2012, 20:20
Noob?: No

Re: Auto Relog help

#6 Post by bellemund12 »

is that correct? the one that i post above?
bellemund12
Human
Human
Posts: 49
Joined: 01 Oct 2012, 20:20
Noob?: No

Re: Auto Relog help

#7 Post by bellemund12 »

still waiting for a reply
rocknroll
Been there done that!
Been there done that!
Posts: 118
Joined: 19 Sep 2011, 07:30
Noob?: Yes

Re: Auto Relog help

#8 Post by rocknroll »

bellemund12 wrote:is that correct? the one that i post above?
what you've tried?? *error n try*, please try it first, error?! error or trouble post it here :)
Sorry, my english is very bad !
bellemund12
Human
Human
Posts: 49
Joined: 01 Oct 2012, 20:20
Noob?: No

Re: Auto Relog help

#9 Post by bellemund12 »

rocknroll wrote:
bellemund12 wrote:is that correct? the one that i post above?
what you've tried?? *error n try*, please try it first, error?! error or trouble post it here :)

its keep on triggering the same number

here:

[macro] automacro time triggered.
[macro log] 29

[macro] automacro time triggered.
[macro log] 29

[macro] automacro time triggered.
[macro log] 29

[macro] automacro time triggered.
[macro log] 29

its will trigger the same number 4 times within 10 secs the reason why it also retry 4 times

can you change it , that it will just relog once for a specific time?
rocknroll
Been there done that!
Been there done that!
Posts: 118
Joined: 19 Sep 2011, 07:30
Noob?: Yes

Re: Auto Relog help

#10 Post by rocknroll »

well, use this a simple macro :D

Code: Select all

automacro relogTime {
 map alberta
 var .minute =~ /29|59/
 timeout 10
 call {
	do relog 5
	}
}
or
30minute once not same as time

Code: Select all

automacro relogTime {
 map alberta
 timeout 3600
 call {
	do relog 5
	}
}
or
when stuck appear

Code: Select all

automacro relogTime {
 map alberta
 console /can't reach or damage target, dropping target/i
 call {
	do relog 5
	}
}
Sorry, my english is very bad !