Thanks Myles for answering that for him. 

Originally Posted by
archer790
and when i use player [0] i get this error...
Line 24: [Error] (20562:19): Unknown identifier 'zdewd93' in script C:\Users\JOSH\Desktop\Coh3n's Anywhere PowerChopper V.1.1.scar
That just means you didn't fill out DeclarePlayers right, here's how it should go:
SCAR Code:
Players[0].Name := 'Username';
Players[0].Pass := 'Password';
Players[0].Nick := 'ser';//3-4 lowercase letters from your Username
Players[0].Active := True;//Use this player?
Players[0].Strings[0] := 'Willow';//Which tree to cut?
Players[0].Integers[0] := 1000;//How many logs to cut?
Players[0].Booleans[0] := True;//Is hatchet equiped?
Players[0].BoxRewards := ['Xp', 'mote', 'ostume'];
Hopefully that clears things up for you.