Advertisement
Guest User

Untitled

a guest
Jan 26th, 2020
89
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.87 KB | None | 0 0
  1. // ==UserScript==
  2. // @name Don't Kick
  3. // @namespace I Don't have a Website
  4. // @version 0.1
  5. // @description Disables Kicking your Spouse from your property!
  6. // @author Pending
  7. // @match *.torn.com/property.php
  8. // @grant none
  9. // ==/UserScript==
  10.  
  11. (function() {
  12. 'use strict';
  13.  
  14. // Your code here...
  15. $(window).load(function() {
  16. $('#??????').replaceWith(`
  17. <div class='m-top10'>
  18. <div class='title-black top-round' aria-level='5'>STOP</div>
  19. <div class="bottom-round cont-gray p10">
  20. <p>Are you <span style='color: red; font-weight:bold'>SURE</span> you want to kick your spouse?
  21. <br/><br/>
  22. If you want to kick them, disable this script.</p>
  23. </div>
  24. <hr class="page-head-delimiter m-top10">
  25. </div>
  26. `)
  27. $('.doctorn-widgets').remove();
  28. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement