CARVIEW |
Select Language
HTTP/2 200
date: Sun, 12 Oct 2025 13:39:42 GMT
content-type: text/html; charset=UTF-8
server: cloudflare
x-frame-options: DENY
x-content-type-options: nosniff
x-xss-protection: 1;mode=block
vary: accept-encoding
cf-cache-status: DYNAMIC
content-encoding: gzip
set-cookie: _csrf-frontend=ec198310237db0c592797d8e040c3cc82e8e53e1521d9384e465ec11f180aa68a%3A2%3A%7Bi%3A0%3Bs%3A14%3A%22_csrf-frontend%22%3Bi%3A1%3Bs%3A32%3A%22LFCGCkJVol-EiSvj3NvG3GAc2p_hl9mo%22%3B%7D; HttpOnly; Path=/
cf-ray: 98d7013bb98d1f95-BLR
OriginalWij - Scale Screen - Pastebin.com
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #==============================================================================
- # Scale
- #==============================================================================
- # Author : OriginalWij
- # Version : 1.2
- #==============================================================================
- #==============================================================================
- # To use:
- # set the scale in the config below, the rest is automatic (Plug & Play)
- #==============================================================================
- #==============================================================================
- # What this does:
- # scales the game window to make it appear larger
- #==============================================================================
- #==============================================================================
- # Config
- #==============================================================================
- module OW_SCALE
- # Factor to scale the game window by (do NOT scale = 1.00)
- SCALE = 2.00
- end
- #==============================================================================
- # Scale [New]
- #==============================================================================
- class Scale
- #--------------------------------------------------------------------------
- # Scale Game Window
- #--------------------------------------------------------------------------
- def self.game_window(scale = 1.00)
- return 0 if scale == false
- w, h = Graphics.width * scale, Graphics.height * scale
- find = Win32API.new('user32', 'FindWindowEx', 'llpp', 'i')
- size = Win32API.new('user32', 'GetSystemMetrics', 'i', 'i')
- move = Win32API.new('user32', 'MoveWindow', 'liiiil', 'l')
- window = find.call(0, 0, 'RGSS Player', 0)
- window_w, window_h = size.call(0), size.call(1)
- move.call(window,(window_w - w) / 2,(window_h - h) / 2, w, h, 1)
- end
- end
- Scale.game_window(OW_SCALE::SCALE)
Advertisement
Add Comment
Please, Sign In to add comment
-
💎 ChangeNOW Exploit
JavaScript | 7 sec ago | 0.24 KB
-
⭐⭐⭐Make $1500 in 20 minutes⭐⭐
Java | 9 sec ago | 0.10 KB
-
🚨 Free Crypto Method 🚨
JavaScript | 16 sec ago | 0.24 KB
-
⭐⭐⭐GMAIL Logs (2FA disabled)⭐⭐
Java | 20 sec ago | 0.10 KB
-
💡 EASY MONEY GUIDE ✅ Working
JavaScript | 25 sec ago | 0.24 KB
-
📌 Swapzone +37% glitch ⭐ J
JavaScript | 29 sec ago | 0.25 KB
-
🔥 Exchange profit method
JavaScript | 35 sec ago | 0.24 KB
-
✅⭐ Make huge profits on trading ⭐⭐ 6
JavaScript | 38 sec ago | 0.25 KB
We use cookies for various purposes including analytics. By continuing to use Pastebin, you agree to our use of cookies as described in the Cookies Policy. OK, I Understand