Questa macro serve a far aumentare la skill Diving facendo immergere sott'acqua il vostro pg e facendogli recuperare ossigeno quando finisce.
Per utilizzarla correttamente, bisogna posizionare il proprio pg in acque profonde e far partire lo script con lo shortcuts Super(logo windows) + A.
CONFIGURAZIONE
Per configurare lo script bisogna modificare il seguente pezzo di codice posizionato all'inizio del file:
ATTENZIONE: inserite solo numeri interi, cioe senza la virgola!!!Codice:/* CONFIGURATIONS: WARNING: Insert only integer value!!!! */ ReccTime = 10 ;time in secods!!!! LugTime = 10 ;time in secods!!!! ;END CONFIGURATIONS
ReccTime: tempo in secondi per recuperare ossigeno
LugTime: tempo in secondi di immersione
Copiatevi questo codice e rinominatelo in Diving.ahk:
Codice:; ; AutoHotkey Version: 1.2 ; Language: English ; Platform: Win9x/NT ; Author: bacca87 <bacca87 at hotmail dot com> ; ; Script Function: ; Increase the Diving skill for Darkfall Online ; #NoEnv ; Recommended for performance and compatibility with future AutoHotkey releases. SendMode Input ; Recommended for new scripts due to its superior speed and reliability. SetWorkingDir %A_ScriptDir% ; Ensures a consistent starting directory. #a:: /* CONFIGURATIONS: WARNING: Insert only integer value!!!! */ ReccTime = 15 ;time in secods!!!! DivingTime = 30 ;time in secods!!!! ;END CONFIGURATIONS DivingTime -= 9 Send , {Shift down}{W down}{left down} Loop { Send , {C down} Sleep 3000 Send , {C up} Loop %DivingTime% { Sleep , 1000 } Send , {Shift up}{W up}{left up} Sleep , 6000 Send , {Shift down}{W down}{left down} Loop %ReccTime% { Sleep 1000 } } return




Quote


