Register for your free account! | Forgot your password?

Go Back   elitepvpers > MMORPGs > Last Chaos
You last visited: Today at 06:51

  • Please register to post and access all features, it's quick, easy and FREE!

Advertisement



Last Chaos, Scar Script Trainer

Discussion on Last Chaos, Scar Script Trainer within the Last Chaos forum part of the MMORPGs category.

Reply
 
Old   #1
 
elite*gold: 0
Join Date: Sep 2009
Posts: 1
Received Thanks: 2
Last Chaos, Scar Script Trainer

well... i got tired of trying to play(guess u cant call making a script for it playing ) but ive been working on making a script with scar... i got it pretty decent, till that whole hacker ordeal came about... so, im looking for a new game to play... and i thought id go ahead and post what ive got done... i havent been making scripts for long so im sure this is buggy... i wasnt 100% done with this, so feel free to edit it how u feel is necessary... ull need to crop out each letter for the text to read... mine was 6x9 pixils... i jus used paint... i was goin to make the HP and MP part read the numbers, but, like i said, the hacker who has been seriously messing up being able to log in and stay logged in, has made me give up without finishing this...

PHP Code:
{           Last Chaos Bot version 1.0            )
(                
Created by Grimmy                )
(                                                 )
(                                                 )
Directions:                                     )
(   
1st Open Last ChaosLog In                 )
(           !!!DO 
NOT MOVE ANY WINDOWS!!!         )
(   
2nd Find desired MobEdit "const"          )
(                  as 
needed                      )
(   
3rd Run :D                                  )
(
_________________________________________________)

!!! 
THINGS TO ADD !!!
LETTERS
HUNTER LOOP
~ CLASS SPECIFIC SKILLS
BOT MODE
OTHERS TO COME WHEN I THINK OF EM :P

(=======Hotkey Setup=======)
F1 Attack              )
F2 Pet Pick            )
F3 User Pick           )
F4 Sit                 )
F5 Buff                )
F6 = ~                   )
F7 = ~                   )
F8 = ~                   )
F9 Flawed Stone        )     // in the feed procedure... set coords to which ever one ur goin to use...
F10 Imperfect Stone    )     //
F11 Quality Stone      )     //
F12 =                    )
(==========================}

{=======================================================}
program Trainer;

var 
abcdefghijz,
monstercountTextinteger;

{=======================================================}

const

          
//// COORDS \\\\
{Area of Window to look for Monster}
Sx 35Sy 120Sx1 990Sy1 600;

{
Hp Coords}
HPx 144HPy 53HPx1 145HPy1 54;

{
MP Coords}
Mx 144My 66Mx1 145My1 67;

{
Pet Hunger}
Hx 365Hy 75Hx1 366Hy1 76;

{
Pet HP}
PHx 320PHy 61PHx1 321PHy1 62;

{
Targets Health Box}
Tx 515Ty 65Tx1 515Ty1 65;

          
//// COLORS \\\\
{Low Hp}
LowH 592664;

{
Low Mp}
LowM 15663874;

{
Pet Low Hp}
PHP 592664;

{
Pet Hunger}
Hunger 198935;

{
Under Health Bar In Targeted Monster Bar}
Mob 2303052;

{=======================================================}
procedure Target;
begin
  
if (IsTextInAreaEx(SxSySx1Sy1ab,'NAME'10Textfalsefalse0012894660)) then
  holdmouse
((40), (60), false);
  
wait(20);
  
releasemouse((40), (60), false);
  
wait(100);
  
z:=z+1;
end;

procedure Attack;
begin
  movemouse
(606771);
  
wait(50);
  
clickmouse(606771true);
  
wait(250);
end;

procedure CheckTarget;
begin
  
if (findcolor(cdMobTxTyTx1Ty1)) then
  Attack 
else Target;
end;

Function 
Check:Boolean;
begin
  
if (findcolor(cdMobTxTyTx1Ty1)) then
  result
:=true else result:=false;
end;


procedure Pickup;
begin
  movemouse
(638770);
  
wait(5000);
  
clickmouse(638770true);
end;

procedure Skill;
begin
  movemouse
(745770);
  
wait(100);
  
clickmouse(745770true);
end;

procedure Sit;
begin
  movemouse
(708770);
  
wait(100);
  
clickmouse(708770true);
end;

Procedure Move;
begin
  movemouse
(440640);
  
clickmouse(440640true);
  
wait(50);
  
clickmouse(440640true);
  
wait(50);
end;

procedure Hp;
begin
  
if (findcolor(efLowHHPxHPyHPx1HPy1)) then
  begin
    Move
;
    
Sit;
    
wait(60000);
    
Sit;
  
end;
end;

procedure Mp;
begin
  
if (findcolor(ghLowMMxMyMx1My1)) then
  begin
    Move
;
    
Sit;
    
wait(60000);
    
Sit;
  
end;
end;

procedure TakeoffPet;
begin
clickmouse
(720265true);
wait(50);
clickmouse(720265true);
end;

procedure Pethp;
begin
  
if (findcolor(efPHPPHxPHyPHx1PHy1)) then
  begin
  keydown
(18);
  
wait(20);
  
keydown(101);
  
wait(20);
  
keyup(101);
  
wait(20);
  
keyup(18);
  
wait(50);
  
TakeoffPet;
  
keydown((18));
  
wait(20);
  
keydown((101));
  
wait(20);
  
keyup(101);
  
wait(20);
  
keyup(18);
  
wait(50);
  
end;
end;

procedure Feed;
begin
  movemouse
(955770);
  
wait(50);
  
clickmouse(955770true);
end;

procedure PetHunger;
begin
  
if (findcolor(ijHungerHxHyHx1Hy1)) then
  begin
  Feed
;
  
end;
end;

procedure Report;
begin
  WriteLn
(' ________________________ ');
  
WriteLn('|       LC Bot v0.1      |');
  
WriteLn('|------------------------|');
  
WriteLn('|Monsters Killed:    '+inttostr(monstercount)+'    |');
  
WriteLn('|________________________|');
end;

procedure Rotate;
begin
  keydown
(37);
  
wait(20);
  
keyup(37);
end;


begin
ActivateClient
;
wait(2500)
Text:= LoadChars2(ScriptPath 'LCFont\');
  repeat
    repeat
      repeat
      wait(1000);
      Target;
      until ((z=5)or(check));
    if(z=5)then
    Rotate;
    z:=0;
    until(check);
  Attack;
    repeat
    wait(1000);
    until (not(check));
  monstercount:= monstercount + 1 ;
  PickUp;
  wait(5000);
  HP;
  wait(500);
  PetHP;
  wait(500);
  PetHunger;
  wait(500);
  until(isfkeydown(12));
FreeChars2(Text);
end. 
i dont get online too often, so if uall have any questions about this, post em and give me a bit of time to respond
finneytown is offline  
Thanks
2 Users
Reply


Similar Threads Similar Threads
Looking for scar runescape auto miner script
03/07/2007 - General Coding - 5 Replies
Hey im looking for a runescape auto kiner/banker to help out a guy thnx please post if u have it or email it to me at [email protected] He im ein runescape Selbstkiner/einen Banker suchend, um einem Kerl thnx heraus bitte zu helfen bekanntzugeben, wenn u es oder email es zu mir an [email protected] haben



All times are GMT +1. The time now is 06:53.


Powered by vBulletin®
Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
SEO by vBSEO ©2011, Crawlability, Inc.
This site is protected by reCAPTCHA and the Google Privacy Policy and Terms of Service apply.

Support | Contact Us | FAQ | Advertising | Privacy Policy | Terms of Service | Abuse
Copyright ©2025 elitepvpers All Rights Reserved.