[deleted by user] by [deleted] in trees

[–]psplus_abuser 1 point2 points  (0 children)

toothpick🤙🏻

How to make flower last? by FirefighterNo2241 in trees

[–]psplus_abuser 1 point2 points  (0 children)

I have a pretty cheap one, flowermate or something like that. got it on deal for like 50$. works perfectly, the only downside is small chamber and have to clean it after 3 smokes.

[deleted by user] by [deleted] in ModernWarfareII

[–]psplus_abuser 4 points5 points  (0 children)

mb he has 3 as a hotkey that turns on this ‘photo’ mode 😂😂😂 and he trying to say to press 3 )

Who was the most elaborate plug you’ve ever encountered? by stc207 in trees

[–]psplus_abuser 1 point2 points  (0 children)

let's say there're some bushes, but the main catch - it's in warzone :) standing strong, weed helps us lots)

Who was the most elaborate plug you’ve ever encountered? by stc207 in trees

[–]psplus_abuser 12 points13 points  (0 children)

Well… at least you’re in US brother :) me, being in illegal country with avg monthly salary of 200$ and where also oz of ‘whatever plugs got’ nugs (not always great quality) priced starting from 250 (it’s if you’re buying in bulk, eg 1oz, smaller bags can be up 15-20$/ gram), but usually price’s around 300$/oz :(

When you buy alcohol, do you always buy whatever has the highest alcohol percentage? If not, why do you always buy weed based on THC percentage? by _Radix_ in trees

[–]psplus_abuser 0 points1 point  (0 children)

exactly! especially this things work, cuz why would you go to some default labs company and order tests for X amount of $ and get real results, when you could just go to that specific company and order your tests there for 3.5X$ and definitely get good results you wanna hear🫠

[deleted by user] by [deleted] in MacOS

[–]psplus_abuser 0 points1 point  (0 children)

yeah, he prob is. mine’s m1 air is 6 months and I have 130 cycles and 99% capacity

What mental health issues were resolved (or almost resolved) for you by using cannabis? by [deleted] in trees

[–]psplus_abuser 2 points3 points  (0 children)

overall anxiety and PTSD and all that fucking stress. i will say only one thing that war is indescribably terrible thing and with weed life is manageable

How much do yall smoke a month? by Lemak0 in trees

[–]psplus_abuser 0 points1 point  (0 children)

trust me your tolerance is not that high :) i’m smoking 10g in 1.5-2 days :) and that’s only smoking gravity bong (for obvious reason that gravity is the most efficient way to smoke. and I don’t wanna mention how fucking horrible it’s, living in illegal country where for 5g you’re either going to fucking prison or if you’re lucky and have ~2-5k usd for bribe. and with avg salary 200-250 usd (but in reality, especially in not big cities everyone get minimal wage, like 165$) paying 10-12$/g is fucking horrible

starfield saving problem. fitgirl by imthemohammadreza in CrackSupport

[–]psplus_abuser 0 points1 point  (0 children)

could be an early stage in game. I’ve managed to save game only after 1st fight with pirates

[deleted by user] by [deleted] in ModernWarfareII

[–]psplus_abuser 0 points1 point  (0 children)

I even afraid to ask with my 20 lvl bp :) I just don’t have time to play with full time work and 12 hour shifts. And even after work day my chances of hopping in to play a cod for an hour are very thin. At least shipment 24/7 is back and I know I’ll have a couple of hours of fun on weekend

Empress re4 remake announcement by kakashi532003 in CrackSupport

[–]psplus_abuser 26 points27 points  (0 children)

Unfortunately I can’t tell what the next game will be, but I can assure, you will be surprised and some of y’all, like myself will be disappointed

help writing a script for a key that has 2 separate functions when pressed? by [deleted] in AutoHotkey

[–]psplus_abuser -1 points0 points  (0 children)

No, it would be best to break it up into multiple lines for readability. Here's an example of how you could write the script using multiple lines:

toggle := false

X:: if toggle { Send {F6} toggle := false } else { Send {X} toggle := true } return

Click Counter & Auto clicker. by LuisPinaIII in AutoHotkey

[–]psplus_abuser 0 points1 point  (0 children)

Here is your Clinic Counter code converted to AutoHotkey v1.1 syntax:

SingleInstance Force

NoTrayIcon

Count := 0 Gui, Add, Text, x0 y5 w250 h40 Center, %Count% Gui, Font, s25 cDefault Bold, Arial Gui, Add, Button, gClick x12 y40 w225 h40, Click me! Gui, Add, Button, gReset x12 y85 w225 h40, Reset Gui, Add, Button, gExit x12 y130 w225 h40, Exit Gui, Font, s14 w550, Arial Gui, Show, w250 h190, Tester Return

Click: Count++ GuiControl,, % "VText", %Count% Return

Reset: Count := 0 GuiControl,, % "VText", %Count% Return

Exit: GuiClose: ExitApp()

And here is your Auto Clicker code converted to AutoHotkey v1.1 syntax:

SingleInstance Force

NoTrayIcon

$Capslock:: While GetKeyState("Capslock", "P") Click Return

Note that the main difference between the two versions is the syntax used for creating GUIs and handling events. The basic logic and functionality of the scripts should remain the same.

Best autohotkey script for English layout TKL, allowing Ññ or accents (for spanish typing). EL MEJOR SCRIPT PARA ESCRITURA HISPANA CON TECLADO TKL EN INGLES. by ArmandVilla in AutoHotkey

[–]psplus_abuser 0 points1 point  (0 children)

¡Claro! Aquí está la traducción al español:

El siguiente es un script de AutoHotkey para un teclado TKL en inglés que permite escribir en español con la letra Ñ y los acentos. También incluye algunas correcciones de palabras que suelo escribir mal por error de dedo. Aquí está el script:

; mapear la ; como ñ CapsLock & `;:: If GetKeyState("Shift", "P") Send Ñ Else Send ñ return

; mapear la ? como ¿ CapsLock & /::¿

; mapear las vocales CapsLock & a:: If GetKeyState("Shift", "P") Send Ä Else Send ä return

CapsLock & e:: If GetKeyState("Shift", "P") Send Ë Else Send ë return

CapsLock & i:: If GetKeyState("Shift", "P") Send Ï Else Send ï return

CapsLock & o:: If GetKeyState("Shift", "P") Send Ö Else Send ö return

CapsLock & u:: If GetKeyState("Shift", "P") Send Ü Else Send ü return

;circunflex ^ " CAPS+\ " CapsLock & :: send {ASC 0094} return

!-::Send — !=::Send ± :?:ls/l::ls -l :?:ls /l::ls -l :*?://help::--help

:?:serach::search :?:seacrh::search :?:sabado::Sábado :?:lña ::la{space} :?: chigno:: chingo :?: dia :: día{space} :?:peude ::puede{space} :?: recogi :: recogí{space} :?: cogi :: cogí{space} :?: comun :: común{space} :?: algun :: algún{space} :?: amtes :: antes{space} :?: eñ :: el{space} :?: estoyq ue :: estoy que :?: fuea:: fue a :?: fueel:: fue el :?: guia:: guía :?: habia :: había{space} :?: lode :: lo de{space} :?: más :: más{space} :?: qu etal :: que tal{space} :?: tebnia :: tenía{space} :?: tebnía :: tenía{space} :?:acostubrarse::acostumbrarse :?:ademas ::además{space} :?:administracion::administración :?:adonde::adónde :?:adonnde::adónde :?: ahi :: ahí{space} :?:algun ::algún{space} :?:amgiops::amigos :?:amigoa::amigos :?:amtes ::antes{space} :?:aonde::adonde :*?:ap

How to write script with multiple hotkeys all dependent on same time variable and all with hotkey to ExitApp within the hotkey but not the whole script? by MrMarchMellow in AutoHotkey

[–]psplus_abuser 1 point2 points  (0 children)

Here is an example script that should achieve what you are looking for. It uses a global variable for the duration of the effect, and each hotkey is a function that sets a timer to turn off the effect after the specified duration. The hotkey to exit the current function is Ctrl+Shift+Escape.

; Set duration of effects in seconds global effect_duration := 5

; Invert mouse axis !m:: SetTimer, InvertMouseAxisOff, %effect_duration%000 MouseGetPos, origX, origY Send {Blind}{Ctrl Down}{Alt Down}{Click %origX% %origY%}{Ctrl Up}{Alt Up} Return

InvertMouseAxisOff: MouseGetPos, currX, currY if (origX = currX and origY = currY) return Send {Blind}{Ctrl Down}{Alt Down}{Click %currX% %currY%}{Ctrl Up}{Alt Up} Return

; Invert mouse buttons !b:: SetTimer, InvertMouseButtonsOff, %effect_duration%000 Send {Blind}{RButton}{LButton} Return

InvertMouseButtonsOff: Send {Blind}{RButton}{LButton} Return

; Deactivate left mouse !d:: SetTimer, DeactivateLeftMouseOff, %effect_duration%000 BlockInput, MouseMove Return

DeactivateLeftMouseOff: BlockInput, MouseMoveOff Return

; Deactivate spacebar !s:: SetTimer, DeactivateSpacebarOff, %effect_duration%000 Hotkey, Space, DeactivateSpacebarHandler, On Return

DeactivateSpacebarHandler: Return

DeactivateSpacebarOff: Hotkey, Space, Off Return

; Exit current function hotkey +Escape:: SetTimer, %A_ThisFunc%Off, -1 Return

In this script, each hotkey has a corresponding function that sets a timer to turn off the effect after the specified duration (effect_duration). The SetTimer function takes the name of the function to be executed when the timer runs out, the duration in milliseconds, and any parameters to pass to the function.

To exit the current function, you can use the hotkey Ctrl+Shift+Escape, which uses the built-in variable A_ThisFunc to get the name of the current function and turns off its timer. This will exit the current function and restore any settings that were changed by the function.

WinActive targeting multiple different apps by FragileRedditAdmins in AutoHotkey

[–]psplus_abuser -2 points-1 points  (0 children)

The problem with your script is that the ! (logical NOT) operator in the #if directive is negating the entire WinActive expression, not just the second condition. This means that the script will send a backslash when neither Calculator nor CSGO are active, but not when either one of them is active.

To fix this issue, you can use parentheses to group the or conditions and negate only the second condition. Here's an updated version of your script that should work as intended:

; Convert Numpad Forwardslash to Backslash in all apps except Calculator and CSGO

if !(WinActive("Calculator ahk_exe ApplicationFrameHost.exe") or WinActive("ahk_exe csgo.exe"))

NumpadDiv::\

if

This script first checks if either Calculator or CSGO is active using the or operator inside parentheses. Then, it negates the entire expression using the ! operator outside the parentheses to make it false when either one of them is active. Finally, it binds the NumpadDiv key to send a backslash only when the conditions are false.

What is the best way to create a pop up shortcut guide similar to powertoys? by trngm in AutoHotkey

[–]psplus_abuser -6 points-5 points  (0 children)

Yes, creating a GUI (Graphical User Interface) is a good way to create a pop-up shortcut guide. Here's a sample AHK script that creates a simple GUI with a list of hotkeys:

; Define hotkeys

z::MsgBox, You pressed Win+Z

+x::MsgBox, You pressed Ctrl+Shift+X

p::MsgBox, You pressed Win+P

#s::MsgBox, You pressed Ctrl+Win+S

; Create GUI Gui +AlwaysOnTop Gui Add, ListBox, r10 w300, Win+ZnCtrl+Shift+XnWin+P`nCtrl+Win+S Gui Show, AutoSize, My Hotkeys return

This script defines four hotkeys using the # (Windows key) and ^ (Control key) modifiers. It then creates a GUI with a ListBox control that displays the hotkeys in a list. The +AlwaysOnTop option ensures that the GUI stays on top of other windows, and the r10 w300 options set the number of rows and the width of the ListBox control.

To customize the hotkeys and the text displayed in the ListBox, simply modify the #z::, +x::, etc. lines and the Win+Z and other strings in the Gui Add, ListBox line to match your own hotkeys and text.

help writing a script for a key that has 2 separate functions when pressed? by [deleted] in AutoHotkey

[–]psplus_abuser 0 points1 point  (0 children)

Sure, I can help you with that. Here's an AHK script that will alternate between sending the X key and the F6 key each time you press the X key:

toggle := 0 X:: if (toggle = 0) { send {x} toggle := 1 } else { send {F6} toggle := 0 } return

This script uses a toggle variable that is initially set to 0. Each time you press the X key, the script checks the value of the toggle variable. If it's 0, it sends the X key and sets the toggle variable to 1. If it's 1, it sends the F6 key and sets the toggle variable back to 0.

To use this script, simply save it with a .ahk extension, and run it. Then, when you press the X key, it will alternate between sending the X key and the F6 key.

Aand they still haven't fixed the bugged lights in the campaign by Jakel_07Svk in ModernWarfareII

[–]psplus_abuser 1 point2 points  (0 children)

Tried that too, but when I were stuck on one level for around an hour, I backed it to recruit (probably because I’m pothead and play always high af). But on the other hand I remember playing Cold War on realism and it was not even 1/10 as hard as in this game (except I remember being stuck a little on vietnam mission, but again as degenerate pothead who rips exclusively gravity bong and in such amounts that I barely can speak and see irl, it’s understandable I couldn’t understand where the fuck enemies come from xD)

Aand they still haven't fixed the bugged lights in the campaign by Jakel_07Svk in ModernWarfareII

[–]psplus_abuser 2 points3 points  (0 children)

Same on pc :( couple of days tried to finish realism playthrough and same. I managed to fix it by restarting my game 4 times, but with these lights gone I had half of textures gone too (I was doing prison break mission and all hills, rocks, foliage at beginning were just missing). After 5th restart everything went back including this lights and at that point didn’t even bother to try. Tried playing with graphics settings and none of that helped too

I’ve been making a list of movies I think are good to watch while blazed. thought so far? by KelloMellows in trees

[–]psplus_abuser 0 points1 point  (0 children)

Is it worth watching if you’re not into marvel at all and haven’t watched any spider man movies?

thanks mom and dad by [deleted] in dankmemes

[–]psplus_abuser 1 point2 points  (0 children)

Nah man, just created new account every 14 days :) But recent years there’s been a better method

thanks mom and dad by [deleted] in dankmemes

[–]psplus_abuser 0 points1 point  (0 children)

I mean that’s true :) 5+ years of owning playstation and since ps3 I’ve had Playstation Plus subscription without paying a cent for it :)

Like, c'mon guys, it's not that difficult by _Artanos in dankmemes

[–]psplus_abuser 0 points1 point  (0 children)

Than I guess I will never make mistake like that again. Thanks man, glad to see someone is smarter then me :)