Trying to make my bot warp himself on location from prontera,but auto macro doesnt work, bot makes warp portal only if i type in console macro warp otherwise trying to find other way to get in location
Any suggestions ?!
automacro warp{
location prontera 276 200
exclusive 1
run-once 1
call warp
}
macro warp {
do move 276 200
pause 2
do sl 27 271 200
pause 1
do warp 2
pause 5
do move 271 200
pause 2
release
}
}
Warp Portal
Moderator: Moderators
-
- The Kore Devil
- Posts: 672
- Joined: 22 Feb 2013, 03:40
- Noob?: No
- Location: The Netherlands
Re: Warp Portal
The automacro only triggers when you are at the coordinates 276 200 in prontera.Skepteek2 wrote:Trying to make my bot warp himself on location from prontera,but auto macro doesnt work, bot makes warp portal only if i type in console macro warp otherwise trying to find other way to get in location
Any suggestions ?!
Code: Select all
location prontera 276 200
-
- Noob
- Posts: 9
- Joined: 17 Mar 2013, 06:29
- Noob?: Yes
Re: Warp Portal
automacro warp{
location prontera
exclusive 1
run-once 1
call warp
Same! Bot went to look for another way to get in map!
location prontera
exclusive 1
run-once 1
call warp
Same! Bot went to look for another way to get in map!
-
- The Kore Devil
- Posts: 672
- Joined: 22 Feb 2013, 03:40
- Noob?: No
- Location: The Netherlands
Re: Warp Portal
What happens when you remove the run-once and release?
-
- Noob
- Posts: 9
- Joined: 17 Mar 2013, 06:29
- Noob?: Yes
Re: Warp Portal
Macros works! But bot doesn't want to put loot in storage or take it from, he cast tele 2 because overweight but doesn't put anything in kafra and warp himself back to map and again!
automacro warp{
location prontera
exclusive 1
call warp
}
macro warp {
do move 276 200
pause 2
do sl 27 271 200
pause 1
do warp 2
pause 5
do move 271 200
pause 2
release
}
}
automacro warp{
location prontera
exclusive 1
call warp
}
macro warp {
do move 276 200
pause 2
do sl 27 271 200
pause 1
do warp 2
pause 5
do move 271 200
pause 2
release
}
}
-
- Noob
- Posts: 4
- Joined: 08 Apr 2013, 06:59
- Noob?: No
Re: Warp Portal
i propose u add one more condition like, maybe it helpsSkepteek2 wrote:Macros works! But bot doesn't want to put loot in storage or take it from, he cast tele 2 because overweight but doesn't put anything in kafra and warp himself back to map and again!
automacro warp{
location prontera
exclusive 1
call warp
}
macro warp {
do move 276 200
pause 2
do sl 27 271 200
pause 1
do warp 2
pause 5
do move 271 200
pause 2
release
}
}
Code: Select all
weight < 20% #put some appropriate value
-
- Plain Yogurt
- Posts: 58
- Joined: 19 May 2011, 00:40
- Noob?: Yes
Re: Warp Portal
First, clean up your macro. Missing some spaces and has an extra bracket. Try this:Skepteek2 wrote:Macros works! But bot doesn't want to put loot in storage or take it from, he cast tele 2 because overweight but doesn't put anything in kafra and warp himself back to map and again!
automacro warp{
location prontera
exclusive 1
call warp
}
macro warp {
do move 276 200
pause 2
do sl 27 271 200
pause 1
do warp 2
pause 5
do move 271 200
pause 2
release
}
}
Code: Select all
automacro warp {
location prontera
exclusive 1
call {
do move 276 200
pause 2
do sl 27 271 200
pause 1
do warp 2
pause 5
do move 271 200
pause 2
release
}
}
Also you mentioned that it doesnt store anything. You dont have anything in your macro with regards to storage. I assume that your warp portal goes to another town so you can do storage there? If so, did you already edit your config.txt and itemcontrol.txt to make it ready for auto storage? You have a lot of missing info with what you intend to do. Please clarify so we can help you better.