Advertisement
Guest User

All In One Script (Catching Gible in Moon Map)

a guest
Jun 12th, 2018
495
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 3.50 KB | None | 0 0
  1. --[[
  2. ---- My To-do list ----
  3. -[DONE] Add the ability to use this script without updated PROShine (Missing getCellType)
  4.  
  5. ############################################################
  6. ### [ After completing the above I want to do these things ] ###
  7. - Add support for multiple Sync pokes for diff times of the day
  8. - Add ability to go to PC and find Sync Poke
  9.  
  10. ]]--
  11.  
  12.  
  13. -- ## General Items ##
  14. local enableDebugLogging = false    -- This allows you to post in Forums with specific errors for faster fixes
  15. local disblePrivateMessaging = false -- Exactly what you think it does
  16. local relogMinTime = 1              --[IN HOURS] When should the bot be looking to start logging out?
  17. local relogMaxTime = 24             --[IN HOURS] What time should the bot never go over?
  18.  
  19. -- ## Would you like to farm money? ##
  20. local farmMoney = false
  21. local farmMinAmount = 50000     -- When should the bot start to farm money?
  22. local farmMaxAmount = 100000    -- When should the bot stop farming money?
  23.  
  24. -- ## Would you like to buy pokeballs? ##
  25. local pokeballPurchase = false      -- Do you wish to purchase pokeballs when you get low?
  26. local pokeballType = "Pokeball"     -- Choose either "Pokeball", "Great Ball" or "Ultra Ball" (Mind the spaces, they MUST be there for Ultra and Great)
  27. local pokeballPurchaseAmount = 20   -- How many pokeballs will you buy?
  28. local pokeballMinAmount = 5         -- How many should you have left before going to buy more?
  29.  
  30. -- ## Are you using this to level-up? ##
  31. local levelPokemon = false                      -- Are we going to level our pokemon?
  32. local levelPokemonMinLevel = 100                -- What level should we stop leveling at?
  33. local levelPokemonIndex = 1                     -- Which pokemon will be trained to the level specified? (1-6)
  34.  
  35. -- ## Are you training EV Stats? ##
  36. local evStatTrain = false
  37. local evStatToTrain = "ATK"     -- Which EV are you training (ATK, DEF, SPD, SPATK, SPDEF, HP)
  38. local evStatMax = 255           -- How high do you wish to train your EV?
  39. local evStatPokemonIndex = 1    -- Which pokemon will be EV Trained?
  40.  
  41. -- ## Are you using this to catch pokemon? ##
  42. local pokemonCatch = true                       -- Are we going to catch pokemon?
  43. local pokemonUncaught = false                   -- This will only catch pokemon that you have not caught before
  44. local pokemonUseSync = True                 -- Do you wish to use a pokemon with Synchronize?
  45. local pokemonFalseSwipe = false                 -- Will you be using False Swipe?
  46. local pokemonFalseSwipeIndex = 2                -- Where is the pokemon with "False Swipe" located in your party? (1-6)
  47. local pokemonSleepStatus = false                -- Will you be using a Sleeping attack before catching the wild pokemon?
  48. local pokemonSleeperIndex = 3                   -- Where is the pokemon with your sleeping attack located in your party? (1-6)
  49. local pokemonSleeperMove = "Sleep Powder"       -- If you are using a Sleeper Poke you MUST input the attack you will be using (Case-sensitive)
  50. local pokemonToCatch = {"Gible"}            -- You can add multiple pokemon you want to catch here
  51. local pokemonFishing = false                    -- Will you be fishing?
  52. local pokemonRod = "Good Rod"                   -- What rod will you be using? Don't worry if you aren't fishing
  53.  
  54.  
  55. ----------------------------------------------------------------------------------
  56. -- ###### Do not edit below this line unless you know what you are doing ###### --
  57. ----------------------------------------------------------------------------------
  58. local version = "v1.2"
  59. name = "All-in-One Script " .. version
  60. author = "iEpic"
  61. description = [[iEpics All-in-One Script]]
  62.  
  63. local Pathfinder = require "Pathfinder/MoveToApp"
  64. local kantoSpawn = require "Pathfinder/Maps/Hoenn/HoennMapSpawn"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement