Guest User

Untitled

a guest
May 27th, 2018
91
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.68 KB | None | 0 0
  1. import clr
  2. clr.AddReference("COFarmerPluginLibrary")
  3. from COFarmerPluginLibrary import *
  4. from System import *
  5.  
  6. s1 = " (^) (^) (^) (^) CONGRATS"
  7. s2 = " _i__i__i__i_ BADDY"
  8. s3 = " {_-_-_-_-_-_-_} TODAY IS"
  9. s4 = " {_BLOW--ME_} YOUR"
  10. s5 = " {_-_-_-_-_-_-_} BIRTHDAY"
  11.  
  12. mode = PacketSource.ToClient
  13.  
  14. def chat(s,m,p):
  15. Client.Chat(s,m,PacketSource.ToClient)
  16. Client.Chat(s,m,PacketSource.ToServer)
  17.  
  18. chat(s1, ChatMode.Normal, mode)
  19. BCOHelper.Sleep(550)
  20. chat(s2, ChatMode.Normal, mode)
  21. BCOHelper.Sleep(550)
  22. chat(s3, ChatMode.Normal, mode)
  23. BCOHelper.Sleep(550)
  24. chat(s4, ChatMode.Normal, mode)
  25. BCOHelper.Sleep(550)
  26. chat(s5, ChatMode.Normal, mode)
  27. BCOHelper.Sleep(550)
Add Comment
Please, Sign In to add comment