Swg Crafting Macro Program

  1. Swg Crafting Macro Program Download
  2. Swgemu Crafting Macro
  3. Swg Macro List
  1. ;autoit script: Auto-Craft macro for Star Wars Galaxies by zierk v1.4
  2. ;changelog:
  3. ;v1.1 - added variable support for 'error check' mouse position
  4. ;v1.2 - adapted 4slot script to support 8 crafting tools
  5. ;v1.3 - cleaned up loop code and added more functions
  6. ;v1.4 - added support for up to 5 resources, with a variable $r to control how many are needed if less then 5
  7. ;Setup:
  8. ;This script is designed to run with crafting tools located in the 1,2,3,4,5,6,7,8 action bar slots.
  9. ;A macro for '/ui action defaultButton' located in slot 9
  10. ;A macro for '/nextCraftingStage'x3 and '/createPrototype practice no item'x3 located in slot 0
  11. ;Hotkeys:
  12. ;Hit PAUSE key to pause the script, press PAUSE again to resume
  13. ;Declare $r's value based on how many 'boxes' there are for resources in the crafting window
  14. ;Example: You are making a Percision Laser Knife which requires the same metal resources 4 times,
  15. ;you will set $r to 4 and select the same metal resource each time.
  16. ;Directions:
  17. ;Open your crafting tool and select the recipie you want to grind on, then close the crafting window (DO this PRIOR to running script!)
  18. ;Run script, select up to 5 resources then let the macro auto craft for you
  19. ;change the value of $i below to determine how many items will be crafted
  20. #include <Misc.au3>
  21. ;define vars
  22. $i=50;how many total crafts are needed
  23. $j=1;which crafting tool to start with(always keep as 1)
  24. $r=2;how many resource positions are needed per craft (put 1-5)
  25. ;define hotkeys
  26. HotKeySet('{END}','Terminate')
  27. ;This pause stops the script before any in-game windows are selected.
  28. ;Added this to support people who multi-box, so they have an opportunity
  29. ;to select which window their crafter is in. If you only run 1 box Then
  30. ;feel free to remove the pause and uncomment the WinActivate line.
  31. ;WinActivate('SwgClient', ') ;activate SWG window
  32. Init()
  33. SplashTextOn('Auto Craft Setup','AutoCraft Setup Complete. Starting in 5 Seconds.. ',400,100,-1,675,0,'Courier New',10)
  34. SplashOff()
  35. ;main crafting loop
  36. ErrorCheck()
  37. OpenCraftingTool()
  38. NextStep()
  39. $j=1
  40. $j=$j+1
  41. WEnd
  42. Func Init()
  43. if$r<1Or$r>5Then
  44. SplashTextOn('Auto Craft Setup','Error. Please set $r to a value between 1 and 5.',400,100,-1,675,0,'Courier New',10)
  45. Terminate()
  46. ToolTip('Starting Setup. Please Standby.. ',0,0)
  47. ToolTip(')
  48. Sleep(2000)
  49. Sleep(2000)
  50. ;store mouse position for 1st resource
  51. SplashTextOn('Auto Craft Setup','Please Click on the center of the 1st resource.',400,100,-1,675,0,'Courier New',10)
  52. Sleep(100)
  53. $pos=MouseGetPos()
  54. EndIf
  55. SplashOff()
  56. Global$res1=$pos[1]
  57. ;store mouse position for 2nd resource
  58. SplashTextOn('Auto Craft Setup','Please Click on the center of the 2nd resource.',400,100,-1,675,0,'Courier New',10)
  59. Sleep(100)
  60. $pos=MouseGetPos()
  61. EndIf
  62. SplashOff()
  63. Global$res3=$pos[1]
  64. EndIf
  65. if$r>2Then
  66. SplashTextOn('Auto Craft Setup','Please Click on the center of the 3rd resource.',400,100,-1,675,0,'Courier New',10)
  67. Sleep(100)
  68. $pos=MouseGetPos()
  69. EndIf
  70. SplashOff()
  71. Global$res5=$pos[1]
  72. EndIf
  73. if$r>3Then
  74. SplashTextOn('Auto Craft Setup','Please Click on the center of the 4th resource.',400,100,-1,675,0,'Courier New',10)
  75. Sleep(100)
  76. $pos=MouseGetPos()
  77. EndIf
  78. SplashOff()
  79. Global$res7=$pos[1]
  80. EndIf
  81. if$r>4Then
  82. SplashTextOn('Auto Craft Setup','Please Click on the center of the 5th resource.',400,100,-1,675,0,'Courier New',10)
  83. Sleep(100)
  84. $pos=MouseGetPos()
  85. EndIf
  86. SplashOff()
  87. Global$res9=$pos[1]
  88. EndIf
  89. ;cause 'You are already crafting' dialoge to appear
  90. Sleep(500)
  91. ;store mouse position for OK button
  92. SplashTextOn('Auto Craft Setup','Please Click on the 'OK' button on the 'You are already crafting' notification.',400,100,-1,675,0,'Courier New',10)
  93. Sleep(100)
  94. $pos=MouseGetPos()
  95. EndIf
  96. SplashOff()
  97. Global$err2=$pos[1]
  98. Sleep(1000)
  99. Sleep(1000)
  100. Sleep(1000)
  101. Sleep(2000)
  102. EndFunc
  103. ;function to manage crafting tool Send commands
  104. Send('{1 1}');use first crafting tool
  105. Send('{2 1}');use first crafting tool
  106. Send('{3 1}');use first crafting tool
  107. Send('{4 1}');use first crafting tool
  108. Send('{5 1}');use first crafting tool
  109. Send('{6 1}');use first crafting tool
  110. Send('{7 1}');use first crafting tool
  111. Send('{8 1}');use first crafting tool
  112. SplashTextOn('Auto Craft Setup','An Error has occured in function OpenCraftingTool',400,100,-1,675,0,'Courier New',10)
  113. EndIf
  114. EndFunc
  115. Func NextStep()
  116. Sleep(3000)
  117. Sleep(1000)
  118. EndIf
  119. Sleep(1000)
  120. EndIf
  121. Sleep(1000)
  122. EndIf
  123. Sleep(1000)
  124. EndIf
  125. Sleep(2000)
  126. Send('{0 2}');nextCraftingStage & createprototype practice noitem
  127. EndFunc
  128. ;function to attempt to correct lag
  129. MouseClick('left',$err1,$err2,3);attempt to correct lag
  130. Send('{0 3}');nextCraftingStage & createprototype practice noitem
  131. Func TogglePause()
  132. While$Paused
  133. ToolTip('Script is 'Paused',0,0)
  134. ToolTip(')
  135. Func Terminate()
  136. EndFunc

Get 9 crafting tools of the same type. Put them across your toolbar top row in slots 00-8 (f1-f9) On revelation, you get a group bonus so get in a group. Create 9 macros (each one is below) and place the icons for them in the bottom action bar row. The first macro punches F1 (which the game considers slot 00) to start the crafting session. SWG Crafting Clicker - posted in Scripts and Functions: Hi all. Firstly Id just like to say how much I love this program, very handy. Great Job to whoever made this tool! As there doesnt seem to be any scripts relating to Star Wars Galaxies, I thought Id post.This script just needs the click positions modified to suit your resolution. Hello everybody. I'm the guy who wrote all that crazy VBA in the original JnF's Crafting tool. Well, I've recently become enthused about the SWGEMU project and decided to program up a new crafting tool to celebrate their End of Liberator milestone. SWG Manager is a Java application supporting players of the popular MMORPG called Star Wars Galaxies(tm). It helps players select the best resources for crafting, manages lot usage, structures, and vendors, and it includes a skill calculator.

  • Console application to parse a raw list of character names into an SWG macro that will add to these characters to the community friends list in Star Wars Galaxies.

    • SWG Friend-Add MacroGenerator
    • swgmacro Sourceforge Project
    • Freeware (Free)
    • Windows
  • SWG Manager is a Java application supporting players of the popular MMORPG called Star Wars Galaxies(tm). It helps players select the best resources for crafting, manages lot usage, structures, and vendors, and it includes a skill calculator.

    • SWG Manager
    • Per Velschow
    • Freeware (Free)
    • Windows
  • Macro Wizard Keyboard Mouse Recorder 2.1 lets you record and play back keyboard and mouse actions. Also has Hot Keys that enable you to daoc craftingmacro,Run Marcos, Run Applications, Send a string a text, Send Key Strokes too. - by. ..

    • #1 Macro Wizard KeyboardMouse Recorder
    • VsiSoftware.com, Inc.
    • Shareware ($19.95)
    • 1.55 Mb
    • Windows XP, 2000, 98, Me, NT
  • A tool used with Star Wars Galaxies(tm) to help with resource management and A tool used with Star Wars Galaxies(tm) to help with resource management and crafting.

    • javaSDKfiles.zip
    • swg-crafter
    • Freeware (Free)
    • 26 Kb
    • N/A
  • Swgemu ACM is a webbased Account Manger for SWG EMU servers. Includes support for changing character status, viewing and editing characters, and more. The best account manager for SWG EMU servers.

    • SWGEMU - Account Manager /Control Panel
    • jnaf
    • Freeware (Free)
    • Windows
  • A Perl script to parse SWG game chat log files to break out chat tabs separately. Use this for catching guild meetings, hotchats, post-combat analysis, and RP adventures.

    • SWG Log Parse
    • swglogparse
    • Freeware (Free)
    • 3 Kb
    • Windows; Mac; Linux
  • Quick Macro (QMacro) is an intelligent software to record, replay and edit keyboard & mouse macros. Quick Macro (QMacro) is an intelligent software to record, replay and edit keyboard & mouse macros. It has easy-to-use script editing interface for novice users to quickly create macros.

    • quickmacro6.exe
    • Brothers Software
    • Shareware ($29.95)
    • 2.18 Mb
    • Win95, Win98, WinME, WinNT 3.x, WinNT 4.x, Windows2000, WinXP, Windows2003, Windows Vista
  • A utility for players of Star Wars Galaxies, SWG, which provides a GUI for locally stored data and other features. Includes an off-line game-mail client, screen shot viewer, management system for Traders, resource support for crafters, and more.

    • SWGAide, a utility forplayers of SWG
    • Simon Gronlund, JesperMadsen
    • Freeware (Free)
    • Windows
  • SWG Profession Builder Project provides people an application built with an XML backend to create the perfect combination of profession skills without wasting precious skillpoints for the popular MMO game called Star Wars Galaxies(tm).

    • SWG Profession Builder
    • Casey Dement, Eric Clausing
    • Freeware (Free)
    • Windows
  • Ease your workload. Alienate monotony. Delegate repetitive tasks to Workspace Macro Recorder. Highly accurate keyboard macro & mouse macro. Create macros in any application using a simple, intuitive process. Features unique SMART Macro Technology,. ..

    • WrkSpc-Macro-setup460.exe
    • Tethys Solutions, LLC
    • Shareware ($24.95)
    • 1.72 Mb
    • WinNT 4.x, WinXP, Windows2000, Windows2003
  • Ease your workload. Delegate repetitive tasks to Workspace Macro Recorder. Keyboard macro & mouse macro. SMART Macro Technology ensures high reliability. Simple, intuitive, user-friendly. Just record & replay. Macro recorder & Macro program.

    Jennifer Lopez Mp3 downloads:: free mp3 songs for download. Love songs and all other mp3 download songs. All song downloads are FREE at mp3-download-songs.com. Download All Zip & Mp3 Jennifer Lopez Songs, Albums & Mixtapes From The Archive Of The Best Jennifer Lopez Download Website HIPHOPDE. Download jennifer lopez songs. Actress, singer, dancer and fashion designer Jennifer Lopez was born in the Bronx, NY, on July 24, 1969, into a Puerto Rican family. At the age of 19 she went into singing and dancing, financing the lessons from her own pocket. In 1990 Lopez got her first regular job of. Download Latest Jennifer Lopez Songs mp3. Are you searching for the Latest Jennifer Lopez Songs to Download? Search no further, We have picked the current top trending songs of Jennifer Lopez you can download, stream and play online. Download the Audios, Share and Enjoy. Mar 31, 2017  Jennifer Lopez is a famous American singer, actress, dancer and fashion. Jennifer Lynn Lopez also known as by her nick name J.Lo, was born on July 24, 1969. Jennifer Lopez is a.

    • WrkSpc-Macro-setup460.exe
    • Automation Anywhere
    • Shareware ($24.95)
    • 1.72 Mb
    • WinNT 4.x, WinXP, Windows2000, Windows2003
  • It is a low cost automation software to record and play mouse clicks, mouse movements and keyboard strokes. Macro Recorder LITE is very easy to use, quick to configure and is great value for money. Download now and start automating your tasks in. ..

    • MacroRecorderLiteSetup.zip
    • JitBit Software
    • Shareware ($29.95)
    • 1.7 Mb
    • Windows All

Swg Crafting Macro Program Download

Related:Swg Crafting Macro - Crafting Macro Lineage - Character Generator Swg - Swg Character Builder - Swg Launchpad Enhanced

Swgemu Crafting Macro


Swg Macro List

Pages : <1 2 3