王高一路走好吧 关注:5贴子:186

回复:我的收藏

只看楼主收藏回复

http://tieba.baidu.com/p/4563911777 mirage 阁楼封vip烟


IP属地:重庆146楼2016-12-16 13:40
回复
    hud_scaling 0.95 // 整体hud比例,调到最大
    cl_hud_radar_scale 1.3 //雷达大小,调到最大
    cl_radar_scale 0.4 // (雷达显示地图范围,数字越小显示地图范围越大,但是小一点的地图最好调到0.7以上,比如seaside\nuke)
    cl_radar_always_centered 0 //(这个个人喜好,不显示居中不会留太多黑边)
    cl_radar_icon_scale_min 0.4 //(设置显示队友那些点点的大小,一般0.4以下就好,0.6的话点点太大,容易重叠)


    IP属地:重庆147楼2017-02-19 19:01
    回复


      IP属地:重庆149楼2017-02-21 11:26
      回复
        http://upload.farm/


        IP属地:重庆151楼2017-05-01 16:09
        回复
          javascript:(function(){function getDigit(x,digitIndex){return(digitIndex>=x.length)?"0":x.charAt(x.length-digitIndex-1)}function prefixZeros(strint,zeroCount){var result=strint;for(var i=0;i<zeroCount;i++){result="0"+result}return result}function add(x,y){var maxLength=Math.max(x.length,y.length);var result="";var borrow=0;var leadingZeros=0;for(var i=0;i<maxLength;i++){var lhs=Number(getDigit(x,i));var rhs=Number(getDigit(y,i));var digit=lhs+rhs+borrow;borrow=0;while(digit>=10){digit-=10;borrow++}if(digit===0){leadingZeros++}else{result=String(digit)+prefixZeros(result,leadingZeros);leadingZeros=0}}if(borrow>0){result=String(borrow)+result}return result}function getId(friend){var steam64identifier="76561197960265728";var miniProfileId=friend.attributes.getNamedItem("data-miniprofile").value;return add(steam64identifier,miniProfileId)}var friends=[].slice.call(document.querySelectorAll("#memberList .member_block, .friendHolder, .friendBlock"));var lookup={};friends.forEach(function(friend){var id=getId(friend);if(!lookup[id]){lookup[id]=[]}lookup[id].push(friend)});function setVacation(player){var friendElements=lookup[player.SteamId];friendElements.forEach(function(friend){var inGameText=friend.querySelector(".linkFriend_in-game");var span=document.createElement("span");span.style.fontWeight="bold";span.style.display="block";if(inGameText){inGameText.innerHTML=inGameText.innerHTML.replace(/<br ?\/?>/," - ")}if(player.NumberOfVACBans||player.NumberOfGameBans){var text="";if(player.NumberOfGameBans){text+=player.NumberOfGameBans+" OW %E5%B0%81%E7%A6%81"}if(player.NumberOfVACBans){text+=(text===""?"":", ")+player.NumberOfVACBans+" VAC %E5%B0%81%E7%A6%81"}text+=" "+player.DaysSinceLastBan+" %E5%A4%A9%E4%BB%A5%E5%89%8D.";span.style.color="rgb(255, 73, 73)";span.innerHTML=text}else{span.style.color="rgb(43, 203, 64)";span.innerHTML="%E6%AD%A4%E4%BA%BA%E6%B2%A1%E6%9C%89%E8%A2%AB%E5%B0%81%E7%A6%81%E8%AE%B0%E5%BD%95."}friend.querySelector(".friendSmallText").appendChild(span)})}function onData(xmlHttp){if(xmlHttp.readyState===XMLHttpRequest.DONE&&xmlHttp.status===200){var data=JSON.parse(xmlHttp.responseText);data.players.forEach(setVacation)}}function makeApiCall(ids){var xmlHttp=new XMLHttpRequest();var endpointRoot="https://api.steampowered.com/ISteamUser/GetPlayerBans/v1/?key=12A1D1DE83F9932934EDD6DF2BA00463&steamids=";var endpoint=endpointRoot+ids.join(",");xmlHttp.onreadystatechange=function(){onData(xmlHttp)};xmlHttp.open("GET",endpoint,true);xmlHttp.send()}var ids=Object.keys(lookup);while(ids.length>0){var batch=ids.splice(0,100);makeApiCall(batch)}})();


          IP属地:重庆152楼2017-05-13 19:00
          收起回复
            jQuery(".manage_actions_buttons").after('<div class="commentthread_entry"><div class="commentthread_entry_quotebox"><textarea rows="1" class="commentthread_textarea" id="comment_textarea" placeholder="Add a comment" style="overflow: hidden; height: 20px;"></textarea></div><div class="commentthread_entry_submitlink" style=""><a class="btn_grey_black btn_small_thin" href="javascript:CCommentThread.FormattingHelpPopup( \'Profile\' );"><span>Formatting help</span></a> &nbsp; <span class="emoticon_container"><span class="emoticon_button small" id="emoticonbtn"></span></span><span class="btn_green_white_innerfade btn_small" id="comment_submit"><span>Post Comments to Selected Friends</span></span></div></div><div id="log"><span id="log_head"></span><span id="log_body"></span></div>');new CEmoticonPopup( $J('#emoticonbtn'), $J('#commentthread_Profile_0_textarea') );jQuery("#comment_submit").click(function() { const total = jQuery(".friendCheckbox:checked").length; const msg = jQuery("#comment_textarea").val(); if (total > 0 && msg.length > 0) { jQuery("#log_head, #log_body").html(""); jQuery(".friendCheckbox:checked").each(function(i) { let profileID = this.getAttribute("data-steamid"); (function(i, profileID) { setTimeout(function() { jQuery.post("//steamcommunity.com/comment/Profile/post/" + profileID + "/-1/", { comment: msg, count: 6, sessionid: g_sessionID }, function(response) { if (response.success === false) { jQuery("#log_body")[0].innerHTML += "<br>" + response.error; } else { jQuery("#log_body")[0].innerHTML += "<br>Successfully posted comment on <a href='http://steamcommunity.com/profiles/" + profileID + "'>http://steamcommunity.com/profiles/" + profileID + "</a>."; } }).fail(function() { jQuery("#log_body")[0].innerHTML += "<br>Failed to post comment on <a href='http://steamcommunity.com/profiles/" + profileID + "'>http://steamcommunity.com/profiles/" + profileID + "</a>."; }).always(function() { jQuery("#log_head").html("<br><b>Processed " + (i+1) + " out of " + total + " friends.<b>"); }); }, i * 6000); })(i, profileID); }); } else { alert("Please make sure you entered a message and selected 1 or more friends."); }});


            IP属地:重庆153楼2017-07-02 21:04
            收起回复
              烦(|||¬ω¬)


              IP属地:重庆来自iPhone客户端155楼2017-08-15 20:54
              回复


                IP属地:重庆158楼2020-04-25 18:54
                回复