Advertisement
Guest User

Untitled

a guest
Dec 5th, 2019
100
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.73 KB | None | 0 0
  1. $${
  2. ifmatches(%CHATCLEAN%,"^.+ O chão será limpo em 5 segundos.");
  3. set(@limpando);
  4. endif;
  5. ifmatches(%CHATCLEAN%,"^\[G\] .+ SLEEP \[.+\]: (.*)$",&d);
  6. log(/g %&d%);
  7. endif;
  8. ifmatches(%CHATCLEAN%,"^.+ vindo de volta. Por favor digite /login sua-senha.$");
  9. echo(/login );
  10. endif;
  11. ifmatches(%CHATCLEAN%,"^.+ Agora você está logado.");
  12. exec(respawn.txt);
  13. endif;
  14. ifmatches(%CHATCLEAN%,"[AsyNc] Desativando macro AsyNc enchantment");
  15. exec(AsyNc.txt);
  16. endif;
  17. ifmatches(%CHATCLEAN%,"^.+ Um fantasma spawnou próximo a você.");
  18. set(@fantasma_spawn);
  19. endif;
  20. ifmatches(%CHATCLEAN%,"^.+ Você recebeu um Baú Místico Normal por matar um fantasma.");
  21. set(@fantasma_kill);
  22. endif;
  23. ifMatches(%CHATCLEAN%,"^\[G\] \[Diretor\] Infrafermelho: (.*)$",&dir,1,none);
  24. echo(/g %&dir%);
  25. endif;
  26.  
  27. IFMATCHES("%CHATCLEAN%","^Você vendeu (.+|.+ .+|.+ .+ .+) x (.+) por (.+) Coins. \(Loja de: (.+)\)");
  28. MATCH("%CHATCLEAN%","^Você vendeu (.+|.+ .+|.+ .+ .+) x (.+) por (.+) Coins. \(Loja de: (.+)\)",{&quant,&item,&val_total,&player});
  29. SET(@&venda,"vendeu");
  30. LOG("%&item% Vendido!!");
  31. ENDIF;
  32. IFMATCHES("%CHATCLEAN%","(Você já tem|Já existe) uma home com esse nome, caso queira substituí-la(,|) digite o comando novamente\!");
  33. SET(@sleepsubshome);
  34. ENDIF;
  35. IFMATCHES("%CHATCLEAN%","^(A home \"[\d\w_-]+\" foi definida com sucesso\!|Você criou a home \"[\d\w_-]+\" neste local.)$");
  36. SET(@sleepsethome);
  37. ENDIF;
  38. IFMATCHES("%CHATCLEAN%","^Você foi enviado\(a\) para a home \"[\w\d_]+\"\!$");
  39. SET(@sleepteleport);
  40. ENDIF;
  41. IFMATCHES("%CHATCLEAN%","^Teleportado\(a\)!");
  42. SET(@sleepteleport);log(a);
  43. ENDIF;
  44.  
  45.  
  46. }$$
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement