I forward the OnPlayerConnect with this:[pawn]forward OnPlayerConnect(playerid);[/pawn]Not sure if its correct. Then this is my script:[pawn]public OnPlayerConnect(playerid);
{//The error was referring to here.
   SetWaterLevel(6.0);
   SetGamespeed(100);
   SetGravity(100);
   GetPlayerName(playerid,gPlayers[playerid],MAX_PLAYER_NAME);
   SendClientMessage(playerid,GREEN, "Welcome to Vice City Life");
}[/pawn] And this is the error I received:[pawn]error 055: start of function body without function header[/pawn] The error was referring to {