-
Member
which bots display IV perfection status? am using detectivesquirtle bot. but don't see any option to enable IV % status
-
Member
My bag exceeds the allowed objects , you delete or leave this objects ? They can ban you for that?
Thanks
-
Member
I think your version is better. Could you change your detailed guide to explain it instead?
Would it be possible to add exceptions to the duplicate mode?
-
Member
Neer:
on your PokeFast v1.0
How can I edit the amount that is Recycled - my Storage is 1000 I would like to edit
something like this
new KeyValuePair<ItemId, int>(ItemId.ItemPokeBall, 110),
new KeyValuePair<ItemId, int>(ItemId.ItemGreatBall, 170),
new KeyValuePair<ItemId, int>(ItemId.ItemUltraBall, 200),
new KeyValuePair<ItemId, int>(ItemId.ItemMasterBall, 150),
new KeyValuePair<ItemId, int>(ItemId.ItemRazzBerry, 110),
new KeyValuePair<ItemId, int>(ItemId.ItemRevive, 100),
new KeyValuePair<ItemId, int>(ItemId.ItemPotion, 10),
new KeyValuePair<ItemId, int>(ItemId.ItemSuperPotion, 50),
new KeyValuePair<ItemId, int>(ItemId.ItemHyperPotion, 100)
-
Member
I understand we can't edit what gets recycled, but is there anyway for us to disable the recycling feature? I mainly use the bot just to transfer my duplicates. Great work by the way!
-
Member
Is there a script released for auto-egg managing ? With rules, like using infinite incubator on all egg but non-reusable one only on 10km ?
-
Member
Splitdogg:
Neer can add it to the config or just have it exported to be edited, its possible, the above is edited from source
-
Active Member
it can already choose and use razz berries so why the **** has it not been able to use lucky eggs? seriously
-
Active Member
Originally Posted by
navyguy
it can already choose and use razz berries so why the **** has it not been able to use lucky eggs? seriously
seriously dude? If you dont like it just dont use it
Originally Posted by
Neer
Might I remind you that this bot is free and demanding stuff doesn't work. !
-
Post Thanks / Like - 3 Thanks
-
Member
Originally Posted by
sHoveToMe
anyone up with a awesome LA or Australia or Tokyo farming spot?
In Australia anywhere near town hall or circular quay.
-
Member
Could any1 help me to evolve only Pidgey and Ratata? should I set evolve all catched and delete all the names in PokemonsToEvolve except for Pidgey and Rata?
-
Active Member
Originally Posted by
kk2o
Could any1 help me to evolve only Pidgey and Ratata? should I set evolve all catched and delete all the names in PokemonsToEvolve except for Pidgey and Rata?
Set evove all to True, and it will evolve them, if u only want the bot to evolve those, then yea remove all the other names, but to be honest i dont see the point of editing the list, anyway it evolve all useless pokemons and u get a ton of them... free exp
-
Post Thanks / Like - 1 Thanks
kk2o (1 members gave Thanks to encor1 for this useful post)
-
Member
Downloaded PokeFastV1.0 and its Recycle my stuff? I can see nothing on the first page with this and nothing in the READ ME file. So where can i change the Amount this bot Recycle and PLS change something in the READ ME or somewhere because all my potions and stuff are Recycle.
-
Member
How to enable auto transfer lower than best pokemon cp? i have "true" in transfer but it not work
-
Active Member
public async Task UseLuckyEgg(Client client, ulong encounterId, string spawnPointGuid)
{
IEnumerable<Item> myItems = await GetItems(client);
IEnumerable<Item> LuckyEgg = myItems.Where(i => (ItemId)i.Item_ == ItemId.ItemLuckyEgg);
Item luckyegg = LuckyEgg.FirstOrDefault();
if (LuckyEgg != null)
{
UseItemCaptureRequest useLuckyEgg = await client.UseCaptureItem(encounterId, AllEnum.ItemId.ItemLuckyEgg, spawnPointGuid);
ColoredConsoleWrite(ConsoleColor.Green, $"Using a Lucky Egg, we have {luckyegg.Count} left");
await Task.Delay(1810000);
It is compiled but not working. program runs fine but it just wont use any
thoughts??
I put it under the use razzberries that Ibasically copied, changed the delay to none and nothing, it compiles and runs fine but never does anything related to the licky eggs, yes I have one. lol
Last edited by navyguy; 07-24-2016 at 06:03 AM.