- Download nvidia-libs
- Unpack it and run
PROTON_LIBS=/path/to/proton ./proton_setup.sh
i.e.PROTON_LIBS=/home/oleg/.local/share/Steam/compatibilitytools.d/GE-Proton10-25 ./proton_setup.sh - Re-create game's prefix (delete
steamfolder/steamapps/compatdata/17410) - Launch the game, so new prefix is created
- Download PhysX System Software
- Install it via
protontricks-launch --appid 17410 ./PhysX_9.23.1019_SystemSoftware.exe - Open game's files location, navigate to
Binariesfolder and REMOVEPhysXLocaldirectory,PhysXCore.dllandPhysXDevice.dll
- Application API key with read acces to allocations
- Node ID
- Place
pterodactyl-upnp.shfile to the same system Wings is running on - Edit the
PANEL_URL,API_KEY,NODE_IDvariables, as well as additional ones if necessary. chmod +x pterodactyl-upnp.sh
- Generate personal token with
read:packagespermission - Login to GitHub Packages registry
npm login --scope=@YourOrg --registry=https://npm.pkg.github.com
- Enter your GitHub username in lower case as
Usernameand personal token asPassword. - Now you can simply install any private package from the
@YourOrgscope like:
I hereby claim:
- I am thesaineyereg on github.
- I am olejka (https://keybase.io/olejka) on keybase.
- I have a public key ASBbc6MhBqq67IqGAWUaMtXk7SY2VmTXzSJROcGTprqsbQo
To claim this, I am signing this object:
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| let due_to = [ | |
| 'spread', | |
| 'occlusion', | |
| 'resolver', | |
| 'fakelag', | |
| 'desync', | |
| 'bad cfg', | |
| // 'pasted code', | |
| // 'urbanichka' | |
| ] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| let string = 'root@olejka.ru $ ' | |
| let even = () => { | |
| let d = new Date(); | |
| return d.getSeconds()%2==0 | |
| } | |
| if (even()) {string+='▌'} | |
| new String(string) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| let date = '2021'; | |
| let gmt = 0; //Default GMT is 0 | |
| let timeLeft = (endtime) => { | |
| let t = Date.parse(endtime) - Date.parse(new Date())-(gmt*1000*60*60); | |
| let seconds = Math.floor( (t/1000) % 60 ); | |
| let minutes = Math.floor( (t/1000/60) % 60 ); | |
| let hours = Math.floor( (t/(1000*60*60)) % 24 ); | |
| let days = Math.floor( t/(1000*60*60*24) ); | |
| return { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| //----------------------------------Sett----------------------------------\\ | |
| const info = { | |
| build: "Beta191220", | |
| version: 1 | |
| } | |
| const debug_default = "0"; //Not true or false because localStorage cannot store boolean values | |
| const debug_time = true; | |
| //----------------------------------Core----------------------------------\\ |