Swg Crafting Macro Program
- ;autoit script: Auto-Craft macro for Star Wars Galaxies by zierk v1.4
- ;changelog:
- ;v1.1 - added variable support for 'error check' mouse position
- ;v1.2 - adapted 4slot script to support 8 crafting tools
- ;v1.3 - cleaned up loop code and added more functions
- ;v1.4 - added support for up to 5 resources, with a variable $r to control how many are needed if less then 5
- ;Setup:
- ;This script is designed to run with crafting tools located in the 1,2,3,4,5,6,7,8 action bar slots.
- ;A macro for '/ui action defaultButton' located in slot 9
- ;A macro for '/nextCraftingStage'x3 and '/createPrototype practice no item'x3 located in slot 0
- ;Hotkeys:
- ;Hit PAUSE key to pause the script, press PAUSE again to resume
- ;Declare $r's value based on how many 'boxes' there are for resources in the crafting window
- ;Example: You are making a Percision Laser Knife which requires the same metal resources 4 times,
- ;you will set $r to 4 and select the same metal resource each time.
- ;Directions:
- ;Open your crafting tool and select the recipie you want to grind on, then close the crafting window (DO this PRIOR to running script!)
- ;Run script, select up to 5 resources then let the macro auto craft for you
- ;change the value of $i below to determine how many items will be crafted
- #include <Misc.au3>
- ;define vars
- $i=50;how many total crafts are needed
- $j=1;which crafting tool to start with(always keep as 1)
- $r=2;how many resource positions are needed per craft (put 1-5)
- ;define hotkeys
- HotKeySet('{END}','Terminate')
- ;This pause stops the script before any in-game windows are selected.
- ;Added this to support people who multi-box, so they have an opportunity
- ;to select which window their crafter is in. If you only run 1 box Then
- ;feel free to remove the pause and uncomment the WinActivate line.
- ;WinActivate('SwgClient', ') ;activate SWG window
- Init()
- SplashTextOn('Auto Craft Setup','AutoCraft Setup Complete. Starting in 5 Seconds.. ',400,100,-1,675,0,'Courier New',10)
- SplashOff()
- ;main crafting loop
- ErrorCheck()
- OpenCraftingTool()
- NextStep()
- $j=1
- $j=$j+1
- WEnd
- Func Init()
- if$r<1Or$r>5Then
- SplashTextOn('Auto Craft Setup','Error. Please set $r to a value between 1 and 5.',400,100,-1,675,0,'Courier New',10)
- Terminate()
- ToolTip('Starting Setup. Please Standby.. ',0,0)
- ToolTip(')
- Sleep(2000)
- Sleep(2000)
- ;store mouse position for 1st resource
- SplashTextOn('Auto Craft Setup','Please Click on the center of the 1st resource.',400,100,-1,675,0,'Courier New',10)
- Sleep(100)
- $pos=MouseGetPos()
- EndIf
- SplashOff()
- Global$res1=$pos[1]
- ;store mouse position for 2nd resource
- SplashTextOn('Auto Craft Setup','Please Click on the center of the 2nd resource.',400,100,-1,675,0,'Courier New',10)
- Sleep(100)
- $pos=MouseGetPos()
- EndIf
- SplashOff()
- Global$res3=$pos[1]
- EndIf
- if$r>2Then
- SplashTextOn('Auto Craft Setup','Please Click on the center of the 3rd resource.',400,100,-1,675,0,'Courier New',10)
- Sleep(100)
- $pos=MouseGetPos()
- EndIf
- SplashOff()
- Global$res5=$pos[1]
- EndIf
- if$r>3Then
- SplashTextOn('Auto Craft Setup','Please Click on the center of the 4th resource.',400,100,-1,675,0,'Courier New',10)
- Sleep(100)
- $pos=MouseGetPos()
- EndIf
- SplashOff()
- Global$res7=$pos[1]
- EndIf
- if$r>4Then
- SplashTextOn('Auto Craft Setup','Please Click on the center of the 5th resource.',400,100,-1,675,0,'Courier New',10)
- Sleep(100)
- $pos=MouseGetPos()
- EndIf
- SplashOff()
- Global$res9=$pos[1]
- EndIf
- ;cause 'You are already crafting' dialoge to appear
- Sleep(500)
- ;store mouse position for OK button
- 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)
- Sleep(100)
- $pos=MouseGetPos()
- EndIf
- SplashOff()
- Global$err2=$pos[1]
- Sleep(1000)
- Sleep(1000)
- Sleep(1000)
- Sleep(2000)
- EndFunc
- ;function to manage crafting tool Send commands
- Send('{1 1}');use first crafting tool
- Send('{2 1}');use first crafting tool
- Send('{3 1}');use first crafting tool
- Send('{4 1}');use first crafting tool
- Send('{5 1}');use first crafting tool
- Send('{6 1}');use first crafting tool
- Send('{7 1}');use first crafting tool
- Send('{8 1}');use first crafting tool
- SplashTextOn('Auto Craft Setup','An Error has occured in function OpenCraftingTool',400,100,-1,675,0,'Courier New',10)
- EndIf
- EndFunc
- Func NextStep()
- Sleep(3000)
- Sleep(1000)
- EndIf
- Sleep(1000)
- EndIf
- Sleep(1000)
- EndIf
- Sleep(1000)
- EndIf
- Sleep(2000)
- Send('{0 2}');nextCraftingStage & createprototype practice noitem
- EndFunc
- ;function to attempt to correct lag
- MouseClick('left',$err1,$err2,3);attempt to correct lag
- Send('{0 3}');nextCraftingStage & createprototype practice noitem
- Func TogglePause()
- While$Paused
- ToolTip('Script is 'Paused',0,0)
- ToolTip(')
- Func Terminate()
- 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