Advertisement
mja00

BoochBot EFT Shit

Jan 4th, 2020
687
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 4.64 KB | None | 0 0
  1. comms = ['comms', 'comms wheel', 'communications', 'comms menu']
  2. sprinting = ["sprint", "sprinting"]
  3. sidestep = ["sidestep", "side stepping"]
  4. if any(word in output for word in comms):
  5.         eftMessage = "2x Y - Communication Menu (Right Mouse Button on Gesture/Voice line to open Hotkeys, Left Mouse Button to assign one)"
  6.     elif "controls" in output:
  7.         eftMessage = "A list of controls can be found here: https://escapefromtarkov.gamepedia.com/How_to_Play_Guide_for_Escape_from_Tarkov#Controls"
  8.     elif "basics" in output:
  9.         eftMessage = "The basic of EFT can be found here: https://escapefromtarkov.gamepedia.com/How_to_Play_Guide_for_Escape_from_Tarkov#Basics"
  10.     elif "walking" in output:
  11.         eftMessage = "Walking requires no change or key press, it is by default your main movement speed. It is limited only by the various pieces of body armor you're wearing."
  12.     elif "slow" in output:
  13.         eftMessage = "Slow Walking can be performed by pressing the Caps Lock or by manually lowering your walk speed to it's lowest, by simply scrolling Mousewheel Down."
  14.     elif any(word in output for word in sprinting):
  15.         eftMessage = "Sprinting can be performed by pressing Left Shift and depletes your stamina bar. "
  16.     elif any(word in output for word in sidestep):
  17.         eftMessage = "Sidestepping can be done by pressing Left Alt + Q / E."
  18.     elif any(word in output for word in ["lean", 'leaning']):
  19.         eftMessage = "Using the Q and E keys you can lean."
  20.     elif any(word in output for word in ["weapon", 'weapons', 'weaponry', 'equipment']):
  21.         eftMessage = "Weapons in Tarkov are complex, reading the wiki would be the best, here's the link: https://escapefromtarkov.gamepedia.com/How_to_Play_Guide_for_Escape_from_Tarkov#Weaponry_and_Equipment"
  22.     elif "guide" in output:
  23.         eftMessage = "A guide to EFT can be found here: https://www.youtube.com/watch?v=u4VQAkKD_5U"
  24.     elif "hideout" in output:
  25.         eftMessage = "Hideout information: https://escapefromtarkov.gamepedia.com/Hideout"
  26.     elif any(word in output for word in ["health", "health system"]):
  27.         eftMessage = "Health system information: https://escapefromtarkov.gamepedia.com/Health_system"
  28.     elif any(word in output for word in ["ballistics", "bullets"]):
  29.         eftMessage = "Ballistics: https://escapefromtarkov.gamepedia.com/Ballistics"
  30.     elif "looting" in output:
  31.         eftMessage = "Looting information: https://escapefromtarkov.gamepedia.com/Looting"
  32.     elif any(word in output for word in ["trading", "traders", "trades", "trade"]):
  33.         eftMessage = "Info on trading: https://escapefromtarkov.gamepedia.com/Trading"
  34.     elif any(word in output for word in ["quests", "questing", "questings"]):
  35.         eftMessage = "Questing: https://escapefromtarkov.gamepedia.com/Quests"
  36.     elif any(word in output for word in ["mods", 'mod', 'weap mods']):
  37.         eftMessage = "All Weapon Mods: https://escapefromtarkov.gamepedia.com/Weapon_mods"
  38.     elif any(word in output for word in ["ammo", "ammunition"]):
  39.         eftMessage = "All Ammo Types: https://escapefromtarkov.gamepedia.com/Ammunition"
  40.     elif any(word in output for word in ["eyewear", 'goggles', 'glasses']):
  41.         eftMessage = "All of the Sick Ass Glasses: https://escapefromtarkov.gamepedia.com/Eyewear"
  42.     elif any(word in output for word in ["chest rig", "rig", "chest"]):
  43.         eftMessage = "All the Chest Rigs: https://escapefromtarkov.gamepedia.com/Chest_rigs"
  44.     elif any(word in output for word in ["vest", "armored vest", "vests"]):
  45.         eftMessage = "All Armored Vests: https://escapefromtarkov.gamepedia.com/Armor_vests"
  46.     elif any(word in output for word in ["tactical clothing", "clothing"]):
  47.         eftMessage = "All Tactical Clothing: https://escapefromtarkov.gamepedia.com/Tactical_clothing"
  48.     elif any(word in output for word in ["meds", "medical", "medicine"]):
  49.         eftMessage = "All Medical Items: https://escapefromtarkov.gamepedia.com/Medical"
  50.     elif any(word in output for word in ["provisions", "snacks", "food", "drinks"]):
  51.         eftMessage = "All Provisional Items: https://escapefromtarkov.gamepedia.com/Provisions"
  52.     elif "loot" in output:
  53.         eftMessage = "All Loot: https://escapefromtarkov.gamepedia.com/Loot"
  54.     elif any(word in output for word in ["keys", "key", "intel", 'maps']):
  55.         eftMessage = "All Keys & Intel: https://escapefromtarkov.gamepedia.com/Keys_%26_Intel"
  56.     elif any(word in output for word in ["container", "containers", "chests", "boxes", "case", "cases"]):
  57.         eftMessage = "All Containers: https://escapefromtarkov.gamepedia.com/Containers"
  58.     else:
  59.         eftMessage = "Keyword returned no results"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement