Rotation Tibia

Ask gaming related questions (AHK v1.1 and older)
Szef91
Posts: 2
Joined: 22 Oct 2023, 09:36

Rotation Tibia

Post by Szef91 » 22 Oct 2023, 09:38

hello everyone .


i try to write one script but its so difficult for me when i never write anything :( so i really have hope someone can help me ! so

i want to write simple "spell rotation with delay" when tibia client If WinActive("Tibia") is on and i press button for example (capslock) then press hotkeys combo ( f5 , wait 2000 ms , f4 , wait 2000 ms , f6 , wait 2000 ms , f7 , wait 2000 ms) its possible to write something like that on autohotkey ???

User avatar
mikeyww
Posts: 27372
Joined: 09 Sep 2014, 18:38

Re: Rotation Tibia

Post by mikeyww » 22 Oct 2023, 11:37

Welcome to this AutoHotkey forum!

Code: Select all

#Requires AutoHotkey v1.1.33


#If WinActive("Tibia")
CapsLock::
For each, item in ["F5", "F4", "F6", "F7"] {
 Send % "{" item "}"
 Sleep 2000
}
Return
#If

Szef91
Posts: 2
Joined: 22 Oct 2023, 09:36

Tibia - hotkey rotation when monster mark

Post by Szef91 » 03 Mar 2024, 14:10

hello everyone .


i try to write one script but its so difficult for me when i never write anything :( so i really have hope someone can help me ! so

I need such a script if I select a given monster on the battle list and it is marked in red, then the given key rotation starts beating, if the border disappears it stops the action, the image of the battle list will be highlighted by the OBS program. Anyone have an idea how to write this?

I upload photo down how its look

https://gyazo.com/b2d920bbb9ccdc4e4d28f9f3ab0c7dcd


[Mod action: Post moved from a new topic since it’s the same as this old one (with some new detail).]
[Mod edit: Removed img-tags around the image link. They only work with direct links, and not embedded pictures.]
Last edited by gregster on 03 Mar 2024, 14:13, edited 1 time in total.

Post Reply

Return to “Gaming Help (v1)”