Advertisement
Guest User

Untitled

a guest
Aug 5th, 2018
248
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.65 KB | None | 0 0
  1.  
  2. -- ## General Items ##
  3. local enableDebugLogging = true -- This allows you to post in Forums with specific errors for faster fixes
  4. local disblePrivateMessaging = false -- Exactly what you think it does
  5. local relogMinTime = 1 --[IN HOURS] When should the bot be looking to start logging out?
  6. local relogMaxTime = 2 --[IN HOURS] What time should the bot never go over?
  7.  
  8. -- ## Would you like to farm money? ##
  9. local farmMoney = false
  10. local farmMinAmount = 20000 -- When should the bot start to farm money?
  11. local farmMaxAmount = 200000 -- When should the bot stop farming money?
  12.  
  13. -- ## Would you like to buy pokeballs? ##
  14. local pokeballPurchase = true -- Do you wish to purchase pokeballs when you get low?
  15. local pokeballType = "Pokeball" -- Choose either "Pokeball", "Great Ball" or "Ultra Ball" (Mind the spaces, they MUST be there for Ultra and Great)
  16. local pokeballPurchaseAmount = 100 -- How many pokeballs will you buy?
  17. local pokeballMinAmount = 15 -- How many should you have left before going to buy more?
  18.  
  19. -- ## Are you using this to level-up? ##
  20. local levelPokemon = false -- Are we going to level our pokemon?
  21. local levelPokemonMinLevel = 99 -- What level should we stop leveling at?
  22. local levelPokemonIndex = 1 -- Which pokemon will be trained to the level specified? (1-6)
  23.  
  24. -- ## Are you training EV Stats? ##
  25. local evStatTrain = false
  26. local evStatToTrain = "ATK" -- Which EV are you training (ATK, DEF, SPD, SPATK, SPDEF, HP)
  27. local evStatMax = 255 -- How high do you wish to train your EV?
  28. local evStatPokemonIndex = 1 -- Which pokemon will be EV Trained?
  29.  
  30. -- ## Are you using this to catch pokemon? ##
  31. local pokemonCatch = true -- Are we going to catch pokemon?
  32. local pokemonUncaught = false -- This will only catch pokemon that you have not caught before
  33. local pokemonUseSync = true -- Do you wish to use a pokemon with Synchronize?
  34. local pokemonFalseSwipe = true -- Will you be using False Swipe?
  35. local pokemonFalseSwipeIndex = 3 -- Where is the pokemon with "False Swipe" located in your party? (1-6)
  36. local pokemonSleepStatus = true -- Will you be using a Sleeping attack before catching the wild pokemon?
  37. local pokemonSleeperIndex = 4 -- Where is the pokemon with your sleeping attack located in your party? (1-6)
  38. local pokemonSleeperMove = "Hypnosis" -- If you are using a Sleeper Poke you MUST input the attack you will be using (Case-sensitive)
  39. local pokemonToCatch = {"Electabuzz"} -- You can add multiple pokemon you want to catch here
  40. local pokemonFishing = false -- Will you be fishing?
  41. local pokemonRod = "Good Rod" -- What rod will you be using? Don't worry if you aren't fishing
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement