View Full Version : how do i put my name in?
raptorstewie
06-12-2012, 02:19 AM
hey guys, i have been using this for a while. but i havent figured out how to put my name in? any help? thanks :D
Nietszche
06-12-2012, 02:21 AM
do you mean to start the script? if it doesn't have an automatic interface come up find the part of the script that says "" username and put your name in the quotes.
Gillzo
06-12-2012, 02:26 AM
look for the declare player section near the top of the script looks like this;
procedure DeclarePlayers;
begin
HowManyPlayers := 1;
NumberOfPlayers(HowManyPlayers);
CurrentPlayer := 0;
Players[0].Name := ''; // Username
Players[0].Pass := ''; // Password
Players[0].Active := True;
Players[0].Pin := '';
Players[0].BoxRewards :=
raptorstewie
06-12-2012, 02:28 AM
look for the declare player section near the top of the script looks like this;
procedure DeclarePlayers;
begin
Slot := 22; //choose your bank slot where the glass is at.
HowManyPlayers := 1;
NumberOfPlayers(HowManyPlayers);
CurrentPlayer := 0;
Players[0].Name := ''; // player123
Players[0].Pass := ''; // pass12
Players[0].Active := True;
Players[0].Pin := '';
Players[0].BoxRewards :=
so like that? do i remove anything?
Gillzo
06-12-2012, 02:29 AM
put it before the "
raptorstewie
06-12-2012, 02:31 AM
Slot := 22; //choose your bank slot where the glass is at.
HowManyPlayers := 1;
NumberOfPlayers(HowManyPlayers);
CurrentPlayer := 0;
Players[0].Name := player123''; //
Players[0].Pass := pass123''; //
Players[0].Active := True;
Players[0].Pin := '';
Players[0].BoxRewards :=
So like that?
Gillzo
06-12-2012, 02:32 AM
yes :thumbsup:
Put it BETWEEN the quotation marks.
'your username'
'your password'
Gillzo
06-12-2012, 02:37 AM
oops mb like this;
HowManyPlayers := 1;
NumberOfPlayers(HowManyPlayers);
CurrentPlayer := 0;
Players[0].Name := 'player123'; //
Players[0].Pass := 'pass123'; //
Players[0].Active := True;
Players[0].Pin := '';
Players[0].BoxRewards :=
raptorstewie
06-12-2012, 02:53 AM
worked! thanks so much!
Powered by vBulletin® Version 4.2.1 Copyright © 2024 vBulletin Solutions, Inc. All rights reserved.