2024.8.6 SPT 3.9.5 - e4ba92
Based on Client.0.14.9.1.30626
客户端更新:
- Fika 0.9.8964.35784 -> 0.9.8983.25381
- DynamicMaps 0.3.3 -> 0.3.4
服务端更新:
- Fika 2.2.3 -> 2.2.7
2024.8.6 SPT 3.9.5 - e4ba92
Based on Client.0.14.9.1.30626
客户端更新:
服务端更新:
payload: | |
# EPIC | |
- DOMAIN,cdn1-epicgames-1251447533.file.myqcloud.com, | |
- DOMAIN,cdn2-unrealengine-1251447533.file.myqcloud.com, | |
- DOMAIN,media-epicgames-1251447533.file.myqcloud.com, | |
- DOMAIN,static-assets-prod-ue-1251447533.file.myqcloud.com, | |
- DOMAIN,epicgames-download1-1251447533.file.myqcloud.com, | |
- DOMAIN-SUFFIX,epicgames.dev, | |
- DOMAIN-SUFFIX,epicgames.com, | |
- DOMAIN-SUFFIX,unrealengine.com, |
#!/bin/sh | |
if ! /opt/etc/init.d/S99ping0 check > /dev/null | |
then | |
/opt/etc/init.d/S99ping0 start | |
fi |
package main | |
import ( | |
"encoding/json" | |
"fmt" | |
"io/ioutil" | |
"os" | |
"time" | |
) |
#include <Wire.h> | |
#define PY32 0xA0 | |
void setup() { | |
// put your setup code here, to run once: | |
Serial.begin(76880); | |
Wire.begin(12, 13); | |
} | |
void loop() { |
mkdir overlay
cd overlay
mkdir -p etc/ssh etc/network etc/runlevels/{default,boot,sysinit,shutdown} root/.ssh etc/lbu
cp -a /etc/{passwd,group,shadow,gshadow,hostname,resolv.conf,network/interfaces,ssh} etc/
cp /etc/network/interfaces etc/network
cp -a /root/.ssh/authorized_keys root/.ssh
echo "/root/.ssh" > etc/lbu/include
sed -i -e '/^root:/s:/bin/bash:/bin/ash:' etc/passwd
#include "STC8.h" | |
#include "intrins.h" | |
sbit PWRSW1 = P5^4; | |
sbit PWRSW2 = P3^3; | |
sbit PWRDET = P5^5; | |
sbit PWRBTN = P3^2; | |
void Delay100ms() //@11.0592MHz | |
{ |
<?php | |
$cmd = 'sensors'; | |
exec($cmd,$result); | |
$arr = array(); | |
for($i=0;$i<count($result);$i++) { | |
$linenow = $result[$i]; | |
while(strstr($linenow,' ')) { | |
$linenow = str_replace(' ','',$linenow); //去空格 | |
} | |
if(strstr($linenow,'Core')) { |
<?php | |
error_reporting(0); | |
function curl($url) { | |
$ch = curl_init(); | |
curl_setopt($ch, CURLOPT_URL, $url); | |
curl_setopt($ch, CURLOPT_TIMEOUT, 2); | |
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1); | |
$r = curl_exec($ch); | |
$curl_errno = curl_errno($ch); | |
curl_close($ch); |