2016-03-15, 13:27:20
Hey,
I want to level on Route 19 (with surf, I have surf on my second team pokemon)
So I wrote a script, but the battle script from hothot.
instead of
i tried this.
Problem:
Bot stops moving after he leaves Fuchsia City Stop House cell [23,4] with both actions.
But if I log out at cell [7,30] it works, he levels, heals pokemon, but again after that he stucks after leaving Fuchsia City Stop House :/
I want to level on Route 19 (with surf, I have surf on my second team pokemon)
So I wrote a script, but the battle script from hothot.
{
"name": "Leveling: Route 19 (near Fuchsia)",
"author": "Biolectra",
"path": [
{
"condition": ["usablePokemons", ">", 1],
"actions": [
{
"condition": ["map", "Pokecenter Fuchsia"],
"action": ["moveToMap", "Fuchsia City"]
},
{
"condition": ["map", "Fuchsia City"],
"action": ["moveToMap", "Fuchsia City Stop House"]
},
{
"condition": ["map", "Fuchsia City Stop House"],
"action": ["moveToMap", "Route 19"]
},
{
"condition": ["map", "Route 19"],
"action": ["moveToRectangle", [7,30], [9,40]]
}
]
},
{
"actions": [
{
"condition": ["map", "Route 19"],
"action": ["moveToMap", "Fuchsia City Stop House"]
},
{
"condition": ["map", "Fuchsia City Stop House"],
"action": ["moveToMap", "Fuchsia City"]
},
{
"condition": ["map", "Fuchsia City"],
"action": ["moveToMap", "Pokecenter Fuchsia"]
},
{
"condition": ["map", "Pokecenter Fuchsia"],
"action": ["usePokecenter"]
}
]
}
],
"battle": [
{
"condition": ["isOpponentShiny"],
"action": ["useItem", "Ultra Ball", "Great Ball", "Pokeball"]
},
{
"condition": ["usablePokemons", ">", 1],
"actions": [
{
"condition": ["activeHealth", ">", 0],
"action": ["attack"]
},
{
"action": ["sendNextPokemon"]
}
]
},
{
"condition": ["usablePokemons", "=", 1],
"actions": [
{
"condition": ["activeHealth%", ">=", 40],
"action": ["attack"]
},
{
"action": ["run"]
}
]
}
]
}
instead of
"action": ["moveToRectangle", [7,30], [9,40]]
"action": ["moveToWater"]
Problem:
Bot stops moving after he leaves Fuchsia City Stop House cell [23,4] with both actions.
But if I log out at cell [7,30] it works, he levels, heals pokemon, but again after that he stucks after leaving Fuchsia City Stop House :/