Advertisement
Guest User

prostpect

a guest
Jul 27th, 2016
62
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.62 KB | None | 0 0
  1.  
  2. (this is an alias I use with the ^prospecting$ command call)
  3.  
  4.  
  5. if prospecting == not active then
  6. echo(" Prospecting Activated ")
  7. prospecting = active
  8. else
  9. echo(" Prospecting Deactivated ")
  10. prospecting = not active
  11. end
  12.  
  13.  
  14.  
  15. (this is the trigger that calls it)
  16.  
  17. if prospecting == active then
  18. send ("prospect")
  19. end
  20.  
  21. ON THE PC THIS WORKS GREAT! I type 'prospecting' and it will send "activated" and begin prospecting until I say 'prospecting' again.
  22. on the mac, I type 'prospecting' and it runs through BOTH if statements, turning it on and then off again.. as if the variable met both 'if' statements as true.
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement