VIPCore.js

Core Library for VIP BOT

بۇ قوليازمىنى بىۋاسىتە قاچىلاشقا بولمايدۇ. بۇ باشقا قوليازمىلارنىڭ ئىشلىتىشى ئۈچۈن تەمىنلەنگەن ئامبار بولۇپ، ئىشلىتىش ئۈچۈن مېتا كۆرسەتمىسىگە قىستۇرىدىغان كود: // @require https://update.greatest.deepsurf.us/scripts/522438/1512723/VIPCorejs.js

  1. // ==UserScript==
  2. // @name VIPCore.js
  3. // @namespace https://i.imgur.com/tdC3R86.png
  4. // @version 1.0.1
  5. // @description Core Library for VIP BOT
  6. // @author CryptHowl
  7. // @license MIT
  8. // @run-at document-start
  9. // ==/UserScript==
  10.  
  11. class VIPCore {
  12. constructor() {
  13. console.log("VIPCore Başlatıldı!");
  14. }
  15.  
  16. log(message) {
  17. console.log(`[VIPCore]: ${message}`);
  18. }
  19.  
  20. error(message) {
  21. console.error(`[VIPCore ERROR]: ${message}`);
  22. }
  23. }
  24.  
  25. window.VIPCore = VIPCore;