Advertisement
Guest User

Untitled

a guest
Feb 17th, 2020
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. function maidtrap(){
  2. for(var i=0; i<ChatRoomCharacter.length; i++){
  3. if(!HUNT) continue
  4. C = ChatRoomCharacter[i]
  5. HUNT = false
  6. setTimeout(maidcatch, 20000)
  7. }
  8. if(HUNT) setTimeout(maidtrap, 2000)
  9. }
  10. function maidcatch(){
  11. if( !InventoryGet(C, "Cloth") )
  12. {
  13.  
  14. }
  15. else{
  16. }
  17. HUNT = true
  18. setTimeout(maidtrap, 2000)
  19. }
  20. var C
  21. var HUNT = true
  22. ServerSend("ChatRoomChat", { Content: "Beep", Type: "Action", Dictionary: [{ Tag: "Beep", Text: "msg" }, { Tag: "Biep", Text: "msg" }, { Tag: "Sonner", Text: "msg" }, { Tag: "msg", Text: "Biep the System shut Down." }] });
  23. maidtrap()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement