您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
try to take over the world!
// ==UserScript== // @name Modded Highscore // @namespace http://tampermonkey.net/ // @version 0.2 // @description try to take over the world! // @author You // @match flappybird.io // @grant none // ==/UserScript== (function() { 'use strict'; localStorage.setItem("highScore", "ur a thot"); restart = function(){$("canvas").trigger("gameRestart");pipes.removeAllChildren();createjs.Tween.get(start).to({y:start.y+10},50).call(removeStart);counter.text=6000000;counterOutline.text=6000000;counterOutline.alpha=0;counter.alpha=0;counter.font="86px 'Flappy Bird'";counterOutline.font=counter.font;counter.y=150+outerPadding;counterOutline.y=counter.y;counterShow=false;highScore.alpha=0;highScoreOutline.alpha=0;pipeDelay=masterPipeDelay;dead=false;started=false;startJump=false;createjs.Tween.removeTweens(bird);bird.x=startX;bird.y=startY;bird.scaleX=-0.4;bird.scaleY=-0.4;bird.rotation=0;rd=0;createjs.Tween.get(bird,{loop:true}).to({y:startY+wiggleDelta},380,createjs.Ease.sineInOut).to({y:startY},380,createjs.Ease.sineInOut);} manifest = [{src:"img/bird.png",id:"bird"},{src:"https://pics.me.me/fox-man-breaks-in-to-houses-to-ews-exterminate-thots-25859356.png",id:"background"},{src:"http://1.bp.blogspot.com/-S2r6WiqLZEw/U5ZIM3dhjuI/AAAAAAAAAcs/6E1SPHADXS4/s1600/thot.jpg",id:"ground"},{src:"https://pbs.twimg.com/media/DTZ1HgjW4AAK9m7.jpg",id:"pipe"},{src:"img/restart.png",id:"start"},{src:"img/score.png",id:"score"},{src:"img/share.png",id:"share"},{src:"img/add-to-leaderboard.png",id:"leaderboard"},{src:"fonts/FB.eot"},{src:"fonts/FB.svg"},{src:"fonts/FB.ttf"},{src:"fonts/FB.woff"}]; loader.loadManifest(manifest); bird.scaleX = -0.4; bird.scaleY = -0.4; })();