Guest User

Untitled

a guest
Oct 21st, 2018
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.47 KB | None | 0 0
  1. pattern: ^hpoint(.*)$
  2.  
  3. script:
  4. if matches[2] == "" then
  5. send("em looks around for someone's head to point to.")
  6. else
  7. send("em points to ^"..matches[2].."'s head.")
  8. end
  9.  
  10.  
  11.  
  12. OR
  13.  
  14. pattern: ^hpoint(.*)$
  15.  
  16. script:
  17. if matches[2] == "" then
  18. send("em points to ^"..target.."'s head.")
  19. else
  20. send("em points to ^"..matches[2].."'s head.")
  21. end
  22.  
  23.  
  24. In both, you would have to use hpointraelyr with no space to make it work, because of the ^ character in targeted emotes.
Add Comment
Please, Sign In to add comment