|
Post by crazyboy on Aug 25, 2005 12:59:31 GMT -5
hi I've downloaded the Windower and its running fine...I've coppied the SMN Script from RPG site and saved it as au3 file...now When i run that it doesn't do anything...I dunno how to do .. I mean Do I've to start Script before Opening WIndower? or I cna start it any time when ever i want? But how it works? how Do I start it? WHen I start the script it shows me in my Task bar near Clock...but it doesn't do anything...ok here is what i'm doing, Starting script, opening ffxi via windower... my buttons are set to Control 1 to Control 7 all my avatars and control 0 is my heal...and the script is ...
Sleep (40000); $count=1; $nomp=0; WinWaitActive("FFXiApp"); Sleep (30000);
While 1=1 AutoItSetOption("SendKeyDelay", 110);
Do Sleep(50);
Send("^" & $count);
Sleep (9100); Send("^0"); Sleep (3000); $count=$count+1;
If PixelGetColor(1206,998) = 10266047 AND PixelGetColor(1206,1001) = 10263231 Then $nomp=1; EndIf
If $count=8 Then $count=1; EndIf
Until $nomp=1
Send("!h"); Sleep (200);
Do If PixelGetColor(1254,998) = 16383926 AND PixelGetColor(1254,1001) = 14345866 Then $nomp=0; EndIf (Sleep 200); Until $nomp=0
Send("!h"); Sleep (3000);
WEnd
But don't know how it works...I'm really not good in Script thing.... Please Help me out I'll be very greatfull to you all THankyou...
|
|
|
Post by TinyTerror on Aug 26, 2005 7:30:02 GMT -5
The problem is in the first section. WinWaitActive("FFXiApp"); wont work anymore because FFXI now randomizes its program name. This causes scripts that use this old method to sit and wait for a program called FFXIAPP to run, which of course never happens. Since you are using the windower, remve the first section (lines 1-4) of the script then just run it once you are ready for it to start.
|
|
|
Post by crazyboy on Aug 26, 2005 19:33:32 GMT -5
Thanks for the Reply...
Well Its not working..i'm getting an Error... Line 12 Send("^"&$count); Send("^"&$count^ ERROR Error: Variable used without Being declared.
I don't know ...Sorry but I'm not good in Scripting...Just wnated to skill my SMN... 1st I start the script then Windower...then I get this error...is ther esomething to do with Pixels??? I really don't know please Help me... and I deleted 1st 4 lines as you said... Thanksyou
|
|
|
Post by TinyTerror on Aug 27, 2005 0:58:46 GMT -5
Readd the variable declarations that you removed.
|
|
|
Post by crazyboy on Aug 27, 2005 2:55:03 GMT -5
Thanks Tiny I've typed the Variable back which i removed...Well now it cast Carby...soon after that it sit down and heal...and in the /say I get the message " you cannot use this command while you are healing"...and DO not release the Pet....then stands up again and go back to heal...then stands up again and release the pet...then go back to heal...sorry for the trouble...but I dunno what exactly is the prob...My macros are at Ctrl 1 - Ctrl 7 and Heal is Cntr 0...Please help... the Script looks like this now.... Sleep (40000); $count=1; $nomp=0; Sleep (30000); While 1=1 AutoItSetOption("SendKeyDelay", 110); Do Sleep(50); Send("^" & $count); Sleep (9100); Send("^0"); Sleep (3000); $count=$count+1; If PixelGetColor(1206,998) = 10266047 AND PixelGetColor(1206,1001) = 10263231 Then $nomp=1; EndIf If $count=8 Then $count=1; EndIf Until $nomp=1 Send("!h"); Sleep (200); Do If PixelGetColor(1254,998) = 16383926 AND PixelGetColor(1254,1001) = 14345866 Then $nomp=0; EndIf (Sleep 200); Until $nomp=0 Send("!h"); Sleep (3000); WEnd I've tried removing "Sleep (40000);" too but its the same... Well I'm Editing this coz I just removed the Ctrl +0 /heal Key...and the Script is working fine...but It doesn't heal when the mp is low... and even after cast of 4 avatars it skips release....and wait for another cast and then release it....I don't know what to do ...Please help...or can you give me the Proper Working Script Please I'll be very greatfull to you... Thankyou in Advance... many thanks for the Help...
|
|