|
VPet-Simulator
Cheat Codes:
------------
Submitted by: David K.
AHK Script to Remove The Window from The Alt-Tab List:
------------------------------------------------------
Written by April
I keep accidentally tabbing into the vpet window instead of the application
I want to, I figured since its always on top it doesn’t need an alt tab entry.
-=How It Works=-
The script modifies the window type into a palette window which by default doesnt
have an alt-tab entry. To use it:
* Launch the script using autohotkey
* Press CTRL+ALT+F12 while the vpet is the focused window
* You can now safely exit the script from your system tray
* Also useful to know that you can toggle it back on with the same keyboard shortcut
-=The Script=-
; Initialize an empty object to store window data
data := {}
; Define the hotkey Ctrl + Alt + F12
^!f12::
; Get the ID of the active window
WinGet, hw, ID, A
; Check if the window ID is valid and not 0
if ((hw != "") && (hw != 0)) {
; Check if the window data exists for this window ID
if (data[hw]) {
; If window data exists, remove the specified extended style from the window
WinSet, ExStyle, % data[hw], ahk_id %hw%
data.Delete(hw) ; Remove the window data entry
} else {
; If no window data exists, get the current extended style of the window
WinGet, es, ExStyle, ahk_id %hw%
; Store the current extended style in the data object
data[hw] := es
; Add a specific extended style (0x80) to the window's extended style
WinSet, ExStyle, % (es | 0x80), ahk_id %hw%
}
}
return ; End of the hotkey subroutine
-=Further Explanation=-
The WinSet function is used to modify various window attributes. In this script,
it’s primarily used to manipulate the extended style of windows. The extended
style (ExStyle) of a window controls various visual aspects and behaviors. By
toggling the extended style value using the | (bitwise OR) operator, the script
can add or remove specific attributes from the window’s ExStyle, effectively changing
its appearance or behavior.
Extended styles are a set of attributes that control various visual and behavioral
aspects of a window. These styles can be manipulated using the `ExStyle` parameter
of the `WinSet` function in AutoHotkey. In this script, the `winset exstyle` command
is used to add or remove the extended style associated with the value `0x80` from the
window’s existing extended style.
The specific extended style being manipulated here, `0x80`, corresponds to the
`WS_EX_TOOLWINDOW` style. This style affects how the window is displayed in the taskbar
and Alt+Tab switcher.
`WS_EX_TOOLWINDOW` (0x80):
* This style makes a window a tool window, which means it won’t appear in the Alt+Tab
switcher by default.
* Tool windows are intended for auxiliary dialogs or floating tool palettes that should
not appear in the taskbar or Alt+Tab list.
* By adding this style to a window, you’re essentially hiding it from the Alt+Tab list.
* In summary, the script uses the `WinSet` function to toggle the `WS_EX_TOOLWINDOW`
extended style on and off for a specified window, effectively controlling whether that
window appears in the Alt+Tab switcher or not. When the script adds this style to a
window’s extended style, the window is hidden from the Alt+Tab list, and when the style
is removed, the window reappears in the Alt+Tab list.
Mid / End Game EXP Guide:
-------------------------
Written by Jiratu
I will explain everything about the cheaper way to get EXP buying gifts.
Let I do the maths
The cheaper way to get EXP from gifts is buying the $444 Very Good Mic.
Ok, now really starting, lets do the maths.
$444 Very Good Mic gives 2500 EXP, and is the cheaper of the all if buy many times, and
i will explain why.
The $897 Very Good Mic gives 5000 EXP, but buy two of the cheaper gives the same EXP and
is $11 cheaper.
Same thing for everything, i saw every gift and the $444 Very Good Mic give more EXP with
less money, if you dont trust do the maths yourself, APhone X and Inter i5-8400 gives 5000
EXP too, but all is more expensive than two $444 Very Good Mic.
Super Good Mic, Inter i7-11700 and APhone 12 gives 10000 EXP, but is more expensive than
four $444 Very Good Mic, that costs 1776, is cheaper than all of them.
CTC2070 costs $2889 and gives 12500 EXP, but five $444 Very Good Mic gives exactly the same
EXP and costs 2220.
Inter i9-14900 costs $3099 and gives 15000 EXP, but six $444 Very Good Mic cost $2664 and
gives the same EXP.
The same for APhone 14 Pro, gives EXP 20000 and costs $4399, but eight $444 Very Good Mic
costs $3552, and do the maths, $444 Very Good Mic gives 2500 EXP, 2500×8=20000
And finally, the end of all, CTC4090 costs $5999, very expensive, and gives 25000 EXP, but
but but, remember that Very Good Mic gives 2500 EXP and costs $444, just do the maths, buy
ten of that will cost $4440 and will give the exact same thing, but $1559 cheaper!
So, the $444 Very Good Mic is the best and cheaper gift! Dont waste your money!!!
Buy only $444 Very Good Mic!
|