Here's the code, I'm trying to make a multiplayer form, I followed jhildy's tut, but i got an error.
Here's the error:
Line 109: [Error] (15098:1): Identifier expected in script C:\Program Files\SCAR 3.06\Scripts\Multiple Runecrafter.scar
No flaming please, i know this is a pretty nooby error, I know what it means, I just dont know what identifier it needs.. if that makes sense.
Code:procedure Inititate(Sender: TObject); begin Players[cUser].Nick := ednick.Text; Players[cUser].Name := eduser.Text; Players[cUser].Pass := edpass.Text; Players[cUser].Integer1 := (strtoint(Edess.Text)); Players[cUser].String1 := Edrune.Text; if (Edtiara.Text = 'True')then Players[cUser].Boolean1 := True; else Players[cUser].Boolean1 := False; if (cbActive.Text = 'True') then//THIS IS LINE 109. Players[cUser].Active := True else Players[cUser].Active := False; cUser := GetArrayLength(Players) - 1; end;






Reply With Quote
