Guest User

Untitled

a guest
May 25th, 2018
103
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.40 KB | None | 0 0
  1. import clr
  2. clr.AddReference("COFarmerPluginLibrary")
  3. from COFarmerPluginLibrary import *
  4. from System import *
  5.  
  6. s = "I'm famous and I deal with the haters. Ain't nobody gonna take away what I built."
  7. for i in range(5):
  8.     h = ""
  9.     for i2 in range(i):
  10.         h = " " + h;
  11.     Client.Chat(h+s, ChatMode.Normal, PacketSource.ToServer)
  12.     Client.Chat(h+s, ChatMode.Normal, PacketSource.ToClient)
  13.     BCOHelper.Sleep(550)
Add Comment
Please, Sign In to add comment