4. Açılış Kaydı: Yevmiye defterine ilk olarak yani birinci madde olarak açılış bilançosundaki hesapların yazıldığı kayıt yapılır. Bilançonun aktifinde yer alan değerler yevmiye defterinin borcuna, pasifte yer alan değerler ise alacağına kaydedilir. Açılış kaydı yevmiye defterinin 1 numaralı maddesidir.
Yevmiye defterine yapılan kayıtlar ne olursa olsun borç ve alacak toplamlarının mutlaka birbirine eşit olması gereklidir.
; ========== CONFIGURATION ========== foodSlot := 8 ; which inventory slot contains food (1=top-left) antiIdleInterval := 120000 ; milliseconds (2 minutes) lootHotkey := "LButton" ; main loot click lootModifier := "Shift" ; hold Shift to loot ; ===================================
global botActive := false global antiIdleTimer := ""
; ---------- Anti-Idle (prevents auto-logout) ---------- AntiIdle: if (botActive) { ; Press a harmless key (spacebar) to keep connection alive Send {Space} ; Optional: random delay between 1.5 and 2.5 minutes ; SetTimer, AntiIdle, % (150000 + Random(0,60000)) } return
F2:: botActive := false SetTimer, AntiIdle, Off TrayTip, Tibia Bot, Bot DISABLED, 1 return
F4:: ; Health potion on self if (botActive) { Send {F4} ; assumes health potion on F4 hotkey Send {Enter} } return
; ========== CONFIGURATION ========== foodSlot := 8 ; which inventory slot contains food (1=top-left) antiIdleInterval := 120000 ; milliseconds (2 minutes) lootHotkey := "LButton" ; main loot click lootModifier := "Shift" ; hold Shift to loot ; ===================================
global botActive := false global antiIdleTimer := "" autohotkey tibia
; ---------- Anti-Idle (prevents auto-logout) ---------- AntiIdle: if (botActive) { ; Press a harmless key (spacebar) to keep connection alive Send {Space} ; Optional: random delay between 1.5 and 2.5 minutes ; SetTimer, AntiIdle, % (150000 + Random(0,60000)) } return ; ========== CONFIGURATION ========== foodSlot := 8 ;
F2:: botActive := false SetTimer, AntiIdle, Off TrayTip, Tibia Bot, Bot DISABLED, 1 return ========== CONFIGURATION ========== foodSlot := 8
F4:: ; Health potion on self if (botActive) { Send {F4} ; assumes health potion on F4 hotkey Send {Enter} } return