Results 1 to 9 of 9

Thread: such thing as a autoCrumbleOfUndead?

  1. #1
    Join Date
    Feb 2007
    Posts
    38
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default such thing as a autoCrumbleOfUndead?

    im working on my magic skills and couldn't find a automager that could do crumble of undead. do you know of one?

  2. #2
    Join Date
    Feb 2007
    Location
    Alberta, Canada
    Posts
    4,615
    Mentioned
    50 Post(s)
    Quoted
    429 Post(s)

    Default

    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

  3. #3
    Join Date
    Dec 2006
    Location
    Third rock from the sun.
    Posts
    2,510
    Mentioned
    4 Post(s)
    Quoted
    1 Post(s)

    Default

    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!

  4. #4
    Join Date
    Oct 2006
    Posts
    2,297
    Mentioned
    1 Post(s)
    Quoted
    0 Post(s)

    Default

    i already started making one in the past, never finished

  5. #5
    Join Date
    Feb 2007
    Posts
    38
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Quote Originally Posted by Jason2gs View Post
    By your post count, you don't know much about scripting.
    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

  6. #6
    Join Date
    Dec 2006
    Location
    Third rock from the sun.
    Posts
    2,510
    Mentioned
    4 Post(s)
    Quoted
    1 Post(s)

    Default

    Quote Originally Posted by solidxxx View Post
    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
    Np

    I like making seperate procedures/functions like this, than real scripts. I don't have to make everything work together like a key in a lock, I just make the procedure, and the people do the rest

  7. #7
    Join Date
    Feb 2007
    Location
    Alberta, Canada
    Posts
    4,615
    Mentioned
    50 Post(s)
    Quoted
    429 Post(s)

    Default

    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.

  8. #8
    Join Date
    Feb 2007
    Posts
    215
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Quote Originally Posted by 3garrett3 View Post
    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.
    Some people need to read code to learn. Others need tutorials. I just looked at some dudes scripts and learnt srl functions but thats it. (i ar t3h programz0r)

    He probably will look at it read it and understand it somewhat, pascal is practically English!
    A common mistake people make when trying to design something completely foolproof is to underestimate the ingenuity of complete fools.
    -Douglas Adams

  9. #9
    Join Date
    Dec 2006
    Location
    Third rock from the sun.
    Posts
    2,510
    Mentioned
    4 Post(s)
    Quoted
    1 Post(s)

    Default

    Plus it was kinda fun to make

    I've never made an automager before. Plus it was cool to make the procedure param box

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Similar Threads

  1. Fun Thing.
    By awesom in forum News and General
    Replies: 4
    Last Post: 12-08-2007, 03:40 AM
  2. Just one more thing about VMs :/
    By PwNZoRNooB in forum News and General
    Replies: 7
    Last Post: 05-21-2007, 07:45 PM
  3. Need 1 more thing i think please
    By JAD in forum OSR Help
    Replies: 13
    Last Post: 02-13-2007, 03:49 PM

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •