Paste this code to Windows Powershell
⬇️
⬇️
Add-Type -AssemblyName WindowsBase
Add-Type -AssemblyName PresentationCore
Write-Output "Thanks for choosing Revamped Palace! I am the gyat warrior!"(get-date).ToString('T');
Write-Output "To exit at any time, press escape."
while($true){
taskkill /im LSAirClient.exe /f
taskkill /im 1SAirClientUI.exe /f
taskkill /im zSATray.exe /f
taskkill /im ZzAService.exe /f
taskkill /im ZS1Tunnel.exe /f
$isDown = [Windows.Input.Keyboard]::IsKeyDown([System.Windows.Input.Key]::Escape)
if ($isDown)
{
Write-Output "RPLB disabled. OCPS Has been notified!"
break
}
}