Guest User

Untitled

a guest
May 24th, 2018
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.72 KB | None | 0 0
  1. def broadcast(message="", includingSelf=True):
  2. startingToon = 0
  3. toonOn = 0
  4. listToonIds = base.localAvatar.getNearbyPlayers(1000000000000000, includingSelf)
  5. endingToon = len(listToonIds)
  6. print listToonIds
  7. while startingToon != endingToon:
  8. base.talkAssistant.sendWhisperTalk(str(message), listToonIds[toonOn])
  9. print toonOn
  10. toonOn = toonOn + 1
  11. startingToon = startingToon + 1
  12.  
  13. After you used that code erase from the injector then use:
  14.  
  15. broadcast("Your message to whisper to people", True)
  16.  
  17.  
  18. First parameter = The Message you whisper to everyone, second parameter is if you
  19.  
  20. include yourself inthe whisper, leave it at True if you want it to also whisper to you...
Add Comment
Please, Sign In to add comment