Log in

View Full Version : Need help with initial character info input



bigbake22
08-11-2010, 02:36 PM
Hello I decided a couple days ago that i should stop doing the monotonous actions that make up Runescape. Well i got simba did reflection and SRL. I have tried to use some scripts but i have trouble entering my character information and setting up the script in whole. if anyone would like to help I am trying to use NCDS's Edgeville Yew Cutter at
http://villavu.com/forum/showthread.php?t=57535&highlight=ncds

Eventually I hope to learn how to make my own scripts but I hope this works out first.
Thank you for any advice or guidence

Heavenguard
08-11-2010, 03:06 PM
:D I highly respect your manners. Thanks. Things become easier to fill out after you learn a little bit about the code, but to help you out.

The Player setup is almost always located at a procedure called DeclarePlayers;

Name := 'InputyourNameInHere'; // Your name should come up in pink letters.
Pass := 'InputYourPasswordHere'; //Your pass should come up in pink letters.
Nick := 'ere'; // The Nickname is just ~4 letters in your name that are not capitilized.
Active := True; // Keep this set to True if you want to keep using this character.


Sorry i don't have NCDS's other values, but thats how the basic player setup is. The rest of the settings should be pretty clear on what to put.

bigbake22
08-11-2010, 09:01 PM
thanks for the quick response heavenguard

I have that much done then i want only one player running so i turn player "1" to false but the script is still saying there is a error with that second player script is this the right code....

HowManyPlayers := 1;
NumberOfPlayers(1);
CurrentPlayer := 0;

with Players[0] do

and what should i do with this part

SetArrayLength(PlayerReport, HowManyPlayers);
// SetPlayerNameTPAs;

NCDS
08-11-2010, 09:05 PM
if you only want 1 player then replace your DeclarePlayers procedure with this:

procedure DeclarePlayers;
begin
HowManyPlayers := 1;
NumberOfPlayers(HowManyPlayers);
CurrentPlayer := 0;

with Players[0] do
begin
Name := '';
Pass := '';
Nick := ''; // 3-4 LOWERCASE letters from your username.
Active := True; // True = use this player.
Loc := 'Bank'; // Bank, SouthTree, NorthTree

Integers[TotalLogs] := 1000; //Total amount to cut
Integers[LoadsBeforeSwitch] := 4; //Plus Random(4);
Booleans[AxeEquipped] := False; // True if equipped;
end;
{
with Players[1] do
begin
Name := '';
Pass := '';
Nick := ''; // 3-4 LOWERCASE letters from your username.
Active := True; // True = use this player.
Loc := 'Bank'; // Bank, SouthTree, NorthTree

Integers[TotalLogs] := 1000; //Total amount to cut
Integers[LoadsBeforeSwitch] := 4; //Plus Random(4);
Booleans[AxeEquipped] := False; // True if equipped;
end;
}
SetArrayLength(PlayerReport, HowManyPlayers);
// SetPlayerNameTPAs;
end;

and fill it in accordingly :)

i luffs yeww
08-11-2010, 09:07 PM
Take off all the extra players (delete them or comment it all out).

NCDS
08-11-2010, 09:10 PM
Take off all the extra players (delete them or comment it all out).

Don't forget you would have to change 'NumberOfPlayers' accordingly ;)

bigbake22
08-11-2010, 09:29 PM
got thanks very much NCDS got the script to start but i need to disable smart to login right then turn it on?

NCDS
08-11-2010, 09:32 PM
got thanks very much NCDS got the script to start but i need to disable smart to login right then turn it on?

Nope, just press play and let it do it's thing :)

That's why you filled in UserNamer = ''; and Pass = ''; ;)

Also please be sure to let me know how it work's. I have not ran this in a while and have not gotten much for feedback lately, so it would be greatly appreciated.

bigbake22
08-11-2010, 09:44 PM
well thats good to know but this is what i get now when i start

[Warning] (1:1): "and True" is not needed at line 0
Compiled succesfully in 951 ms.
SRL Compiled in 15 msec
SMART Initialized.
Loaded: Server 30, Members: False, Signed: True, Super Detail: False.
New window: 65806
New window: 395472
Status: /~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\
Status: | SRL Randoms Report |
Status: | www.villavu.com |
Status: |~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~|
Status: \~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~/
STATS: "ERROR(1): Wrong username or password!"
It has been 3 minutes and Runescape is not yet ready... Terminating.
Successfully executed.

i believe this is from the Your_stat_Userid info... what is this

Ogre
08-11-2010, 10:08 PM
bigbake22, make sure that your Runescape screen setting is set to 'Fixed' and not 'Resizeable'

NCDS
08-12-2010, 03:21 AM
Also 'Safe Mode', and you don't need to select the client when using SMART ;)

bigbake22
08-12-2010, 02:04 PM
K so this is what i have entered and the pass to my rs account is correct so i am wondering why it wont log in using smart



const
Bank = 0; //DO
NorthTree = 1; //NOT
SouthTree = 2; //EDIT
TreesFromBank = 3; //THESE
TreeToTree = 4; //LINES
TreesToBank = 5; //!!!

MM_BankFloor = 921931;
MM_DirtGround = 3758177; //3364196, 3953755
MM_TreeSymbol = 494860;
MM_SymbolOutline = 65536;

AxeEquipped = 0; //OR
TotalLogs = 0; //THESE
LoadsBeforeSwitch = 1; //ONES

YewOutlineCount = 85;

SinglePlayerBreak = True; // True to take breaks if only 1 player remains
BreakTime1 = 3; //Length of time to take a break is chosen randomly
BreakTime2 = 15; //between these 2 numbers. (in minutes)

Version = 'Beta v2.7;';

Stats_Link = 'http://scriptmanager.freehostia.com/submit.php';

Debug = True; //Set true for extensive debugging.
DebugLogOutline = True; // Set True if your having problems with the log counting
// then please post what 'LogOutline:' debugs on the script thread.
Your_Stats_UserID = 'bigbake22';
Your_Stats_Password = '*******';

var
tLoc: array of TLocation; TreeInfo: TTreeInfo; PlayerReport: array of TPlayerReport;
MS_BankColor: array of Integer; MDAr: array of array of TPoint; PCount: array of Boolean;
M, WTime, i, t, BT, tTimeRunning, LBS: Integer;
B, NewPlayer: Boolean;
// Stats vars
Stats_UserID, Stats_Password, Stats_ScriptID: string; Stats_LastTime: Integer;
Stats_CustomVars: array [1..20] of Integer; Stats_GlobalVars: array[1..24] of Integer;

label AtTrees, ML, AtBank;

procedure DeclarePlayers;
begin
HowManyPlayers := 1;
NumberOfPlayers(HowManyPlayers);
CurrentPlayer := 0;
// SetPlayerNameTPAs;

with Players[0] do
begin
Name := 'jap 11';
Pass := '******* ';
Nick := 'jap'; // 3-4 LOWERCASE letters from your username.
Active := True; // True = use this player.
Loc := 'NorthTree'; // Bank, SouthTree, NorthTree

Integers[TotalLogs] := 1000; //Total amount to cut
Integers[LoadsBeforeSwitch] := 4; //Plus Random(4);
Booleans[AxeEquipped] := True; // True if equipped;
end;
{
with Players[1] do SetArrayLength(PlayerReport, HowManyPlayers);
// SetPlayerNameTPAs;
begin
Name := '';
Pass := '';
Nick := ''; // 3-4 LOWERCASE letters from your username.
Active := False; // True = use this player.
Loc := 'Bank'; // Bank, SouthTree, NorthTree

Integers[TotalLogs] := 1000; //Total amount to cut
Integers[LoadsBeforeSwitch] := 4; //Plus Random(4);
Booleans[AxeEquipped] := False; // True if equipped;
end;
}
SetArrayLength(PlayerReport, HowManyPlayers);
// SetPlayerNameTPAs;
end;


yet it still gives me the error message i posted above

-Elite Hacker-
08-29-2010, 06:44 PM
Man you should reaaaaaallllllyyyyyy edit out that player name quick.

Also make sure to follow the guide to setting up Simba and updating Reflection and SRL and such. Remember that Reflection needs to be updated using SVN at the moment. After that set all the graphical details to Minimum and turn off any extraneous features (moving background, resizable screen, etc. need to be turned off). Then make sure SMART is Enabled (look at the bottom left corner of the SMART screen), and make sure you're not minimizing and maximizing it all the time (that can cause problems).

Shuttleu
08-29-2010, 06:50 PM
Man you should reaaaaaallllllyyyyyy edit out that player name quick.

well as he has edited out his password, he doesnt need to be quick, to be honest i have posted several RS usernames and botted on them hardcore, and they still arent banned

so its not like Jagex are going to ban him if he doesnt remove it in 1 min

as far as im concerned, jagex dont browse the website to find usernames to ban, but they may browse the website to learn how SRL works so they can try and detect it

~shut

EDIT: your stats username and password are not the same as your SRL username and password, you can make a stats account here http://scriptmanager.freehostia.com/

jack15
02-10-2012, 11:03 PM
ok i know i might be interupting this threads flow of conversation but im kind of having a similar issue except i did exactly what u have told this person and my script just wont run. and what i mean by that is the rs screen will pop up and load and take me to the sign in screen but after that the mouse wont take over and type my username and stuff. Can u possibly help?