Advertisement
Guest User

Untitled

a guest
Sep 21st, 2017
65
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.75 KB | None | 0 0
  1. dialog pm {
  2. title "PM Request"
  3. size -1 -1 216 221
  4. option pixels
  5. edit "", 1, 17 36 180 20
  6. edit "", 2, 17 72 180 108, read multi vsbar
  7. text "PM from:", 3, 17 19 45 15
  8. text "Message:", 4, 17 56 50 15
  9. button "Accept", 5, 38 184 59 20,
  10. button "Decline", 6, 107 184 59 20, ok
  11. box "", 7, 7 2 201 212
  12. }
  13. on *:OPEN:?:{
  14. .dialog -mod pm pm pm
  15. .did -a pm 2 $1-
  16. .did -a pm 1 $nick
  17. .msg $nick Your message has been sent to $me $+ . Please wait...
  18. .close -m $nick
  19. }
  20. on *:dialog:pm:sclick:5:{
  21. .query $did(pm,1).text
  22. .msg $did(pm,1).text Your PM request was accepted because your ownage.
  23. .dialog -x pm
  24. }
  25. on *:dialog:pm:sclick:6:{
  26. .msg $did(pm,1).text This PM was declined because your a massive CUNT
  27.  
  28. .dialog -x pm pm
  29. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement