Advertisement
Guest User

Untitled

a guest
Apr 20th, 2019
115
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.79 KB | None | 0 0
  1. // ==UserScript==
  2. // @name Oddawanie dowództwa
  3. // @version 0.1
  4. // @description Oddaje dowództwo po napisaniu na czacie grupowym 'oddaj d'
  5. // @author You
  6. // @match http://*.margonem.pl/
  7. // @match https://*.margonem.pl/
  8. // @grant none
  9. // ==/UserScript==
  10.  
  11. ((Engine) => {
  12. const time = () => Date.now() / 1000;
  13.  
  14. const filter = ({ k, n, t, ts }) => {
  15. if(time() - ts > 2 || n === Engine.hero.d.nick || k !== 2 || t.toLowerCase() !== "oddaj d") return;
  16. if(typeof Engine.party === "object" && Engine.party.getLeaderId() === Engine.hero.d.id){
  17. window._g("party&a=give&id=" + Object.values(Engine.party.getMembers()).find(p => p.nick === n).id);
  18. }
  19. }
  20.  
  21. window.API.addCallbackToEvent("newMsg", msg => filter(msg[1]));
  22. })(window.Engine)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement