Log in

View Full Version : More Specific problems (with scripts)



romber
08-27-2007, 02:54 AM
Hi, this is my first post here at srl forums. I use to play runescape pretty avidly a few years back, and got decent at it. anyways, when I log back in to play, all I see is autoers, so I figure I should try it out myself. I have read tutorials to help with scripts, but I still have more questions that the guides didn't really answer.

I'm going to use http://www.villavu.com/forum/showthread.php?t=15568 woodcutting script, but I don't know what to do for some things.

After brisking some forums using SCAR, I heard the scripts don't work because of the new Interface Jagex has. Does this one work with the new interface?

Do I have to make multiple accounts to use the script effectively? Can I just try it out with my account I had from a couple years ago? Also, what exactly do I need to fill out in that script and could someone show an example of what I need to fill out (like what they would put)

And where do I need to be to start the script?

Thanks for any replies

zenma
08-27-2007, 07:37 AM
1st of all i suggest you edit your post to edit out your username..no doubt there are jagex spies on this forum. yes you do have to use multiple accounts if you dont want to get banned because they get suspicous when u play 3 hours straight without breaks, but you can only use one character just switch the players that you arent using to active is false in the declareplayers procedure. and i looked at like the third post the scripter said he updated it for srl 4. start in varrock east bank. this is would i would fill it out toProcedure DeclarePlayers;
var load : integer;
begin

HowManyPlayers :=6; // Set Number of Players here.
NumberOfPlayers(HowManyPlayers); // Sets the Players Array Length;
CurrentPlayer:=0; // CurrentPlayer = Array Index

Players[0].Name :='poolkii'; // runescape username
Players[0].Pass :='passgoeshere'; // runescape password
Players[0].Nick :='lki'; // nick, 3 - 4 letters of username
Players[0].Loc :='bank'; // current location
players[0].integers[0]:= 100; // number of loads
Players[0].Active:=True; // active player

Players[1].Name :='';
Players[1].Pass :='';
Players[1].Nick :='';
Players[1].Loc :='bank';
players[1].integers[0]:= 2;
Players[1].Active:=False; {notice i changed player numbers i wasnt using like Players[1].Active:=False; to false because it was originaly true}

Players[2].Name :='';
Players[2].Pass :='';
Players[2].Nick :='';
Players[2].Loc :='bank';
players[2].integers[0]:= 2;
Players[2].Active:=false;

Players[3].Name :='';
Players[3].Pass :='';
Players[3].Nick :='';
Players[3].Loc :='bank';
players[3].integers[0]:= 2;
Players[3].Active:=false;

Players[4].Name :='';
Players[4].Pass :='';
Players[4].Nick :='';
Players[4].Loc :='bank';
players[4].integers[0]:= 2;
Players[4].Active:=false;

Players[5].Name :='';
Players[5].Pass :='';
Players[5].Nick :='';
Players[5].Loc :='bank';
players[5].integers[0]:= 2;
Players[5].Active:=false;

writeln(inttostr(HowManyPlayers)+' Players');

end; if i was using one player.
i think thats all you need to fill out in this script

romber
08-27-2007, 11:03 AM
alright thanks, i will edit, but frankly I don't care if it gets banned or not:D

That helped a lot.