Advertisement
Guest User

Untitled

a guest
Sep 26th, 2017
50
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.45 KB | None | 0 0
  1. RButton & N::
  2. {
  3. ; !!!!! if id targeta == -1 ---> skip all
  4. a := getIdByPed(getTargetPed()) ; id таргета
  5.  
  6. if (a != -1)
  7. {
  8. b := getPlayerNameById(a) ; имя таргета
  9. c := UnderlineReplace(b) ; имя без подчёркивания
  10.  
  11. SendChat( c ", хотите переспать со мной?")
  12. Sleep, 1000
  13. SendChat("))")
  14. }
  15.  
  16. }
  17. Return
  18.  
  19.  
  20. UnderlineReplace(x)
  21. {
  22. StringReplace, REPL, x, _, %A_Space%, All
  23. Return REPL
  24. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement