Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- print("\x0314"+scriptName()+" by dane, has been loaded correctly");
- function onLoad()
- {
- Users.local(function(x){
- x.vroom = 1;
- });
- }
- var blacklist = "arlnk://F5fPxdTq8eJeuqSVejGmq0Y2XosK6SG4aFbSifAN6Ia6KM0DyHtMXO4VklDBsILKF5DlQdX8";
- function onJoinCheck(userobj)
- {
- var iphub = new HttpRequest();
- iphub.src = "https://v2.api.iphub.info/guest/ip/"+userobj.externalIp+"?c=Fae9gi8a";
- iphub.oncomplete = function()
- {
- var result = JSON.parse(this.page);
- var is = result.block;
- if (is == 1)
- {
- userobj.redirect(blacklist);
- return false;
- }
- else
- {
- userobj.vroom = 1;
- return true;
- }
- }
- return iphub.download();
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement