brandon8081
02-22-2012, 04:40 AM
The reason i posted in here is so that if anyone has similar questions to mine, they will be able to find it in here.
I am making a Shilo Village Fishing script. Basically, I want to fish and bank. I am about an hour into it, and I don't know where to start.
So far I got
program ShiloVillageFlyFisher;
{$DEFINE SMART}
{$i srl/srl.simba}
{$i sps/sps.simba}
Const
procedure DeclarePlayers;
begin
HowManyPlayers := 1;
NumberOfPlayers(HowManyPlayers);
CurrentPlayer := 0;
Players[0].Name := ''; // Username
Players[0].Pass := ''; // Password
Players[0].Nick := ''; // 3-4 lowercase letters from ingame username;
Players[0].Active := True; // Set to true if you want to use Player 0
Players[0].Pin := ''; // Bank Pin
end;
I am trying to make this as basic as possible. What should i do next?
I am making a Shilo Village Fishing script. Basically, I want to fish and bank. I am about an hour into it, and I don't know where to start.
So far I got
program ShiloVillageFlyFisher;
{$DEFINE SMART}
{$i srl/srl.simba}
{$i sps/sps.simba}
Const
procedure DeclarePlayers;
begin
HowManyPlayers := 1;
NumberOfPlayers(HowManyPlayers);
CurrentPlayer := 0;
Players[0].Name := ''; // Username
Players[0].Pass := ''; // Password
Players[0].Nick := ''; // 3-4 lowercase letters from ingame username;
Players[0].Active := True; // Set to true if you want to use Player 0
Players[0].Pin := ''; // Bank Pin
end;
I am trying to make this as basic as possible. What should i do next?