im working on my magic skills and couldn't find a automager that could do crumble of undead. do you know of one?
im working on my magic skills and couldn't find a automager that could do crumble of undead. do you know of one?
It really wouldnt be hard to make, why dont you try, i think maybe like, findcolor and uptext multi, a few antis and ur ready, go to tut island and learn the basics, email me at rscheater33@hotmail.com if you want some help with the basics, and maybe you can get this script made.. ok? i dont like it when people leach, so im gunna try to get you into scripting![]()
By your post count, you don't know much about scripting.
Ok, this is your long procedure, it goes in with your other procedures. (I trust you know how to do that):
SCAR Code:procedure CrumbleUndead(TimesToCast, MonsterColor: Integer; MonsterName: String);
var
TimesDone, Tries : Integer;
begin
repeat
Wait(1000 + Random(1000));
GameTab(7);
Wait(500 + Random(500));
MouseBox(595, 306, 605, 316, 1);
TimesDone := TimesDone + 1;
if(FindColorSpiralTolerance(x, y, MonsterColor, MSX1, MSY1, MSX2, MSY2, 5))then
begin
repeat
MMouse(x, y, 2, 2);
Tries := Tries + 1;
if(Tries >= 5)then
begin
KeyDown(37);
Wait(1000 + Random(500));
KeyUp(37);
Tries := 0;
end;
until(IsUpText(MonsterName) or (Not(LoggedIn)));
if(Not(LoggedIn))then
TerminateScript;
begin
Mouse(x, y, 2, 2, False);
ChooseOption(x, y, 'Attack');
Wait(1000 + Random(500));
end;
end;
until(TimesDone >= TimesToCast);
end;
This is your short procedure/command, it goes in your main loop:
SCAR Code:CrumbleUndead(5, Color, 'Name');
"5" Is how many times you want to cast the spell, change it to whatever you want.
"Color" Is the monster color.
"Name" Is the name of the monster.
Have fun!
i already started making one in the past, never finished![]()
lol yea you got that right, i attempted to make my own before i posted. i think i got some stuff right but was never able to get past the being able to find the spell book part lol. thanks a lot for your help, ill try this out.
p.s: your one of the few people who actually help when people have questions. thanks again
I wanted to help! I just didnt want to post the whole thing there for him! I didnt learn anything when people posted those sort of things, and i actually wanted him to learn it.
A common mistake people make when trying to design something completely foolproof is to underestimate the ingenuity of complete fools.-Douglas Adams
Plus it was kinda fun to make
I've never made an automager before. Plus it was cool to make the procedure param box![]()
There are currently 1 users browsing this thread. (0 members and 1 guests)