Summoning Skill Script

07/06/2004 15:04 Mizu#1
Um das Script ausführen zu können braucht ihr [Only registered and activated users can see links. Click Here To Register...].

Wenn ihr das Programm beim FFXI spielen benutzt verstößt es gegen die Eula und ihr könnt von nem GM gebannt werden falls ihr nicht an eurem Rechner sitzt (Also nicht antworten könnt) und trotzdem euren smning skill pusht.
Naja, wer am Rechner sitzt und TV guckt oder ein Tell-Script hat (selber scripten ^^;) ist eigentlich zu 100% sicher.

Das Script hab ich vor paar Tagen mal angefangen zu schreiben (Damit will ich sagen dass es recht unordentlich ist und noch lange nicht perfekt)

Verbesserungsvorschläge höre ich nur zu gerne ... darum poste ich es ja auch ins Forum :cool:

Quote:

sleep(10000); Startet das script syncron mit der "Play" betätigung im pol viewer und wartet ab ^^
WinWaitActive("FFXiApp");
Send("{ENTER}");
sleep(15000);
Send("{ENTER}");
sleep(5000);
Send("{ENTER}");
sleep(5000);
Send("{ENTER}");
sleep(25000);
$mpfull = 500; Momentane MP
$mp1 = 7;
$mp2 = 13;
$mp3 = 13;
$mp4 = 13;
$mp5 = 13;
$mp123 = $mp1+$mp2+$mp3+$mp4+$m p5;
$mpcount = $mpfull - $mp123;
$mpcount = $mpcount - 1;
$mpcount = round($mpcount);
$smn = 0;
$count = 0;
while &#036;count <= &#036;mpcount
if &#036;count >= &#036;mpcount Then
Send("!0");
Sleep(120000);
Send("!0");
&#036;count = 0;
EndIf
if &#036;count >= 0 Then
&#036;count = &#036;count +1;
Else
&#036;count = 0;
Endif
AutoItSetOption("SendKeyDelay", 40);
if &#036;smn = 0 Then
Send("!1");
Sleep(13000);
if &#036;smn >=0 Then
&#036;smn = &#036;smn +1;
EndIf
Endif
if &#036;smn = 1 Then
Send("!2");
Sleep(3000);
&#036;smn = &#036;smn +1;
Endif
if &#036;smn = 2 Then
Send("!3");
Sleep(3000);
&#036;smn = &#036;smn +1;
Endif
if &#036;smn = 3 Then
Send("!4");
Sleep(3000);
&#036;smn = 0;
Endif
Wend
Ist momentan auf 4 summons eingestellt aber das lässt sich ja in einer Minute ändern.
06/29/2006 01:33 blackdragon456#2
ENGLISH-
Babel Fish FTW :P

Around the Script to implement to be able its Autoit V3 needs. If you the program with the FFXI play used offend it against the Eula and it can by nem GM be gebannt if it at your computer do not sit (thus not to answer can) and nevertheless your smning skill pusht. Naja, who sits at the computer and TV looks or a Tell Script has (scripten ^^ are actually to 100% safe. The Script have I before few days times begun to write (with it I want to say that it am quite untidy and still for a long time not perfectly) I hear improvement suggestions only too gladly... therefore poste I it also in the forum


Is to 4 summons adjusted however can momentary in one minute be changed.
08/01/2007 02:51 DarkTwilight#3
English Please?
11/14/2008 15:18 Mizu#4
Is this still usefull ? can someone confirm it ?
05/31/2009 00:15 rubeusfromfairy#5
If you're using AutoITV3, to make it work, yes it's still useful. however, it does require some working with. You could use this easily to level up enhancing or healing or blue or singing; basically any skill that's repetitive and requires no user action. I can't get it to /heal yet, even though that's a set parameter. basically what you do is set up macros 1-4 in your CTRL line of macros to look like this:

/ma "Carbuncle" <me>
/wait 9
/pet "Release" <me>

and repeat for 2nd macro with Ifrit, then Titan, then Leviathan, etc. As a 37 SMN, anyway, this is just the best working plan. then, for your last ctrl macro (0) put /heal as its command. change your MPfull for whatever your character's is as that's the math the program will do to determine it's repetitions. change the mp1 through mp5 to whatever the spell you're casting's MP cost is (in this case for SMN its best to include 1 tick of perpetuation in the cost for accuracy reasons). sleep is how long your spells take to cast or how long you should rest and is counted in milliseconds. so sleep 13000 is a 13 second macro (i.e. 9 seconds to summon, 3 to release, 1 to let your casting timer cool down so you won't be interrupted.)

I realize I'm really late on updating this forum page but I hope this clarifies things.

on with the code. :D

sleep(25000); this gives you time to go back and make your ffxi screen active
$mpfull = 443; Momentane MP
$mp1 = 12;
$mp2 = 14;
$mp3 = 14;
$mp4 = 14;
$mp5 = 14;
$mp123 = $mp1+$mp2+$mp3+$mp4+$mp5;
$mpcount = $mpfull - $mp123;
$mpcount = $mpcount - 1;
$mpcount = round($mpcount);
$smn = 0;
$count = 0;
while $count <= $mpcount
if $count >= $mpcount Then
Send("!0");
Sleep(180000);
Send("!0");
$count = 0;
EndIf
if $count >= 0 Then
$count = $count +1;
Else
$count = 0;
Endif
AutoItSetOption("SendKeyDelay", 40);
if $smn = 0 Then
Send("!1");
Sleep(13000);
if $smn >=0 Then
$smn = $smn +1;
EndIf
Endif
if $smn = 1 Then
Send("!2");
Sleep(13000);
$smn = $smn +1;
Endif
if $smn = 2 Then
Send("!3");
Sleep(13000);
$smn = $smn +1;
Endif
if $smn = 3 Then
Send("!4");
Sleep(13000);
$smn = 0;
Endif
Wend
06/07/2009 22:08 Kingofcruel#6
I have a summoner at lvl 20 and the summon magic skill is sooo far from capped. I came looking for something to help but I'm sadly relatively new to these things. I'm familiar with some bots and of course CE, but I'm hoping to give this a try when I get home from work in a few hours... Although at the moment it's absurdly confusing to me.