Guest User

Untitled

a guest
May 28th, 2018
200
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.71 KB | None | 0 0
  1. import clr
  2. clr.AddReference("COFarmerPluginLibrary")
  3. from COFarmerPluginLibrary import *
  4. from System import *
  5.  
  6. s1 = " _//|.-^^^^^^^^-,"
  7. s2 = " _/ \ \_@"
  8. s3 = " ('')_ / / | COME HERE"
  9. s4 = " '--' | | | - - - \ / PIGGY PIGGY"
  10. s5 = " //_/ /_/"
  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