Look towards the top for a DeclarePlayers procedure. It will either say
pascal Code:
Players[0].Name := '';
Players[0].Pass := '';
//etc. etc.
//OR IT COULD SAY
with Players[0] do
begin
Name := '';
Pass := '';
//etc. etc.
end;
either way (they're essentially the same thing, the second one just makes the scripter have to type 'Players[0].' over and over), you just put your name between the first " ' " and the second " ' " (Name := 'Zezima'; is an example) and pass between the ' 's. Bank pins (if applicable) go between " ' "s. You cannot put it there as just the numbers.
panic._@live.com, add me if you need more help.