Advertisement
Guest User

Help me pls

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