KazeCloud
09-01-2007, 07:20 PM
I just wanted to have the bot pick up small charms with at least 10% resist. Is this correct?
"Small Charm" = L_RES%10" | "C_RES%10" | "F_RES%10" | "P_RES%10"
Will it only pick up 10%s? If not how do you tell it to pick up things that are at least 10%? Thanks. :D
I think you have to say like Ruby or something. But I don't know how to do that.
Exorcise
09-01-2007, 08:32 PM
"Small Charm" = "L_RES%10" | "C_RES%10" | "F_RES%10" | "P_RES%10"
This line will tell the bot to pick up small charms with light/cold/fire/poison resist 10% or above only. If you want, you can also change it to:
"Small Charm" = "Amber" | "Sapphire" | "Ruby" | "Emerald"
Since the prefix for 10-11% resist small charm is called amber/sapphire/ruby/emerald, this will tell the bot to pick up small charms with amber/sapphire/ruby/emerald in the name of the charm. Capitalization is important in this case.
A few more alternatives would be::
"Small Charm" = "Lightning Resist +10%" | "Cold Resist +10%" | "Fire Resist +10%" | "Poison Resist +10%"
"Small Charm" = "Lightning Resist +11%" | "Cold Resist +11%" | "Fire Resist +11%" | "Poison Resist +11%"
or
"Small Charm" = "Resist +10%" | "Resist +11%"
KazeCloud
09-01-2007, 11:09 PM
OOOH. I understand. Thank You so very much!
Edit: So I did the following...
"Small Charm" = "Amber" | "Sapphire" | "Ruby" | "Shimmering"
"Large Charm" = "Amber" | "Sapphire" | "Ruby" | "Shimmering"
"Grand Charm" = "Amber" | "Sapphire" | "Ruby" | "Shimmering"
Correct?
KazeCloud
09-02-2007, 10:20 PM
Sorry but today, I saw my bot sell a Grand Charm Sapphire with 28% cold resist. I then bought it back and when it scanned it again in a different game, it still sold it. So I thought it was because it was spelled SAPPHIRE with capital letters. So I made it...
"Grand Charm" = "AMBER" | "SAPPHIRE" | "RUBY" | "SHIMMERING"
And it still sold it. What is wrong now? Please help >_<.
hawktheslayer
09-02-2007, 10:34 PM
its better if u just do it by the percentage
thats what i do, easier to edit & everthing
KazeCloud
09-02-2007, 10:35 PM
But by doing that I have to figure all the stats out. This should be the same as putting in stats shouldn't it?
Exorcise
09-02-2007, 11:03 PM
Try the default way, I posted on the mm.Bot forum to confirm whether putting the prefix works or not.
"Small Charm" = "L_RES%10" | "C_RES%10" | "F_RES%10" | "ALLRES%3"
"Large Charm" = "L_RES%13" | "C_RES%13" | "F_RES%13" | "ALLRES%3"
"Grand Charm" = "L_RES%26" | "C_RES%26" | "F_RES%26" | "ALLRES%3"
Adjust the "ALLRES%?" as you like, shimmering varies from:
Small: 3-5
Large: 3-8
Grand: 3-15
KazeCloud
09-02-2007, 11:48 PM
Yes thanks. Thats what I did an hour ago and it works. I lowered to the second prefix too for lower resist, I'm not very strict. Took away poison resist too. Thanks Exorcise. =D