Advertisement
Guest User

Dofus Multiaccount Autohotkey Script

a guest
Nov 28th, 2014
188
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.69 KB | None | 0 0
  1. ;############################################
  2. ;### F1-F8 ~ Alternate between characters
  3. ;### ALT + F1-F8 ~ Login
  4. ;### ALT + F12 ~ Invite all to party
  5. ;############################################
  6. ;### I use windows taskbar tweaker with the "never combine" options
  7. ;### I also move all dofus windows to be the first windows open in the tray (left part)
  8. ;###############################
  9. ;# LOGIN
  10. ;###############################
  11.  
  12. SetKeyDelay, 100
  13.  
  14. !F1::
  15. Send account
  16. Sleep 100
  17. Send {Tab}password{Enter}
  18. Return
  19.  
  20. !F2::
  21. Send account
  22. Sleep 200
  23. Send {Tab}password{Enter}
  24. Return
  25.  
  26. !F3::
  27. Send account
  28. Sleep 200
  29. Send {Tab}password{Enter}
  30. Return
  31.  
  32. !F4::
  33. Send account
  34. Sleep 200
  35. Send {Tab}password{Enter}
  36. Return
  37.  
  38. !F5::
  39. Send account
  40. Sleep 200
  41. Send {Tab}password{Enter}
  42. Return
  43.  
  44. !F6::
  45. Send account
  46. Sleep 200
  47. Send {Tab}password{Enter}
  48. Return
  49.  
  50. !F7::
  51. Send account
  52. Sleep 200
  53. Send {Tab}password{Enter}
  54. Return
  55.  
  56. !F8::
  57. Send account
  58. Sleep 200
  59. Send {Tab}password{Enter}
  60. Return
  61.  
  62. ;###############################
  63. ;###############################
  64. ;###############################
  65.  
  66.  
  67. !F12::
  68. Send {Space}
  69. Send {Backspace}
  70. Sleep 500
  71. Send /invite CharacterName{Enter}
  72. Send {Enter}
  73. Sleep 500
  74. Send /invite CharacterName{Enter}{Enter}
  75. Send {Enter}
  76. Sleep 500
  77. Send /invite CharacterName{Enter}{Enter}
  78. Send {Enter}
  79. Sleep 500
  80. Send /invite CharacterName{Enter}{Enter}
  81. Send {Enter}
  82. Sleep 500
  83. Send /invite CharacterName{Enter}{Enter}
  84. Send {Enter}
  85. Sleep 500
  86. Send /invite CharacterName{Enter}{Enter}
  87. Send {Enter}
  88. Sleep 500
  89. Send /invite CharacterName{Enter}{Enter}
  90. Send {Enter}
  91. Return
  92.  
  93. F1::Send #1
  94. F2::Send #2
  95. F3::Send #3
  96. F4::Send #4
  97. F5::Send #5
  98. F6::Send #6
  99. F7::Send #7
  100. F8::Send #8
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement