• Hi Guest! To get rid of ads on the page, please consider donating through user upgrades or other methods.

Macros, lets post them in 1 place to help everyone

IchigoMugetsu

Cricket
Member
May you share macro for wind kfm (rf) or (2rf) on new razer synapse in beta version?
I cant figure how to set it up.

Here is mine but u must figure out delays:

2RF:

2 ▼
2 ▲
delay 0.360 ms
R ▼
R▲
delay 0.220 ms
F ▼
F ▲
delay 0.310 ms

RF:
R ▼
R▲
delay 0.360 ms
F ▼
F ▲
delay 0.310 ms

R4F:

R ▼
R ▲
delay 0.400 ms
4 ▼
4▲
delay 0.220 ms
F ▼
F ▲
delay 0.310 ms
 

BlackViola

Cricket
Member
Does anyone have a macro for Wind Summoner cant get my timeing to work reliably for rmb lmb with in game latency 90-120
 

waaabafet

Cricket
Member
Here are the ones I use, If anyone see's any glaring mistakes please let me know.
Most of these characters are at the BT-8set stage with maybe a bracelet and a soul badge.

R -> lmb context skill 1
T -> rmb context skill 2
[v] -> keypress down
[^] -> keypress up
Just the keystroke means no delay. Also I get around ~150ms ping and ~30fps
  • Earth DES
    • R -> 50ms -> R -> 300ms -> T -> 200ms
    • R[v] -> 45ms -> R[^] -> 35ms -> T[v] -> 45-> T[^] -> 180ms
      • I used the second one but saw a vid on the first one so might try that one
  • Lightning Sin
    • 4 -> 115ms -> T-> 15ms
  • Fire Gunner
    • 34TF
    • Manual Tab -> V4F
  • Shadow Gunner
    • V4TFC (disable air)
  • Earth Summoner (super low gear)
    • 32RTF1
    • 2RTF1 (spec'd party protect)
  • Ice WL
    • 24TF (disabled rupture)
  • Auto Run
    • W[v] -> Shift -> custom delay -> W[^]
Looking for help with a better Fire Gunner Tab opener, Fire KFM, Fire BM, Soulfighter
 

ChibiiDemon

Cricket
Member
so guys if we have high ping we need change delay more faster or more slower
n
can someone help me with shadow SIN n fire KFM plz

tks U
 

Elin Honey

Cricket
Member
Autohotkey
Fire FM (Flame Force Master)

Ingame Settings > Keybinds > Skill Use
Code:
Contextual Skill Slot 1 = R (Blazing Palm, Left Mouse Button)
Contextual Skill Slot 2 = T (Frost Palm, Right Mouse Button)

Notes: My ping to the server as shown in BnSBuddy is 40ms, ingame ping is around 100ms.
I play with DragonBlaze disabled, this applies ShockFire (Burn) whenever it is up so yes it will waste the Shockfire if the enemy does not have 5 ember stacks.

Code:
*$XButton1::

While GetKeyState("XButton1", "p"){
 
    SendMode Input
    Send {2 down}{2 up}
    Sleep 30 ; 30 milliseconds
    ;Blazing Beam = 0.7s
 
    ;Frostpalm
    SendMode Input
    Send {t down}{t up}
    Sleep 30 ; 30 milliseconds
 
    ;Blazing Palm, use 80 if higher ping
    SendMode Input
    Send {r down}{r up}
    Sleep 70 ;
 
    ;F-Spam? Dual Dragons or DragonBlaze
    SendMode Input
    Send {f down}{f up}
    Sleep 20 ;
 
    ;Shock Fire - Burn
    SendMode Input
    Send {1 down}{1 up}
    Sleep 20 ;
}

return

This uses the Back Button (Mouse Button 4). If it does not work try launching in Administrator Mode (although I don't have to do this)

M0JLai5.jpg
 
Last edited:

XTGMods

Bamboo Warrior
Member
Is anyone else having a problem with AutoHotKey or is it just my client? Like AutoHotKey itself will work everywhere else but not in the client, it doesn't even respond when I do simple remapping like LButton::Send R. I tried running with and without admin, it still doesn't do anything.
 

lvatrung

Cricket
Member
Is anyone else having a problem with AutoHotKey or is it just my client? Like AutoHotKey itself will work everywhere else but not in the client, it doesn't even respond when I do simple remapping like LButton::Send R. I tried running with and without admin, it still doesn't do anything.
add:
Code:
#IfWinActive, Blade & Soul
 
Top Bottom