Help about my Autosell Macro

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

Moderator: Moderators

Message
Author
zykesphere
Noob
Noob
Posts: 7
Joined: 17 Sep 2014, 03:35
Noob?: Yes

Help about my Autosell Macro

#1 Post by zykesphere »

This is my macro
automacro sellwarp {
weight > 50%
timeout 120
call sellwarp2
}

macro sellwarp2 {
do c @go 2
do move 100 140
do move 25 167
do talk @npc(22 171)
do sell
do sell @inventory(Khukri)
do sell done
do c @go 2
do talk @npc(124 72)
do talk resp 0
}

automacro deathwarp {
hp < 30%
timeout 20
call deathwarp2
}

macro deathwarp2 {
do c @go 2
do talk @npc(124 72)
do talk resp 0
}
It is actually working now, but my problem is it only sells one Khukri then it goes to its next command and it's looping over and over again... Please I'm really confused here now... xD Thanks in advance

User avatar
4epT
Developers
Developers
Posts: 617
Joined: 30 Apr 2008, 14:17
Noob?: No
Location: Moskow (Russia)
Contact:

Re: Help about my Autosell Macro

#2 Post by 4epT »

do not use it:

Code: Select all

automacro sellwarp {
weight > 50%
timeout 120
call sellwarp2
}

macro sellwarp2 {
do c @go 2
do move 100 140
do move 25 167
do talk @npc(22 171)
do sell
do sell @inventory(Khukri)
do sell done
do c @go 2
do talk @npc(124 72)
do talk resp 0
}

use config options:

Code: Select all

saveMap name
saveMap_warpToBuyOrSell 1
saveMap_warpChatCommand @go 2

itemsMaxWeight_sellOrStore 50

sellAuto 1
sellAuto_npc see manual
All my posts are made by machine translator!
¤ Manual ¤ Anti BotKiller ¤ Packet Extractor v3 ¤
Image
Image

zykesphere
Noob
Noob
Posts: 7
Joined: 17 Sep 2014, 03:35
Noob?: Yes

Re: Help about my Autosell Macro

#3 Post by zykesphere »

Thanks :D it did worked

Post Reply