Vice City Multiplayer

General Discussion => Support => Topic started by: Some_one on August 13, 2014, 06:23:28 am

Title: Need help in scripting.
Post by: Some_one on August 13, 2014, 06:23:28 am
hello guyz!
i hope that you all will be fine!
well i need some help in scripting.hope you people can help me.
here are  some errors highlighted.

(http://i58.tinypic.com/21j9abt.jpg)

In these lines.

(http://i58.tinypic.com/2gybubs.jpg)

Here is the full code of OnPlayerExitVehicle


Quote
public OnPlayerExitVehicle(playerid,vehicleid)
{
    RemovePlayerMarker(playerid);
    /*if(PlayerInfo[playerid][Status] == 0) {
        CheckIfZombieEnteredInVehicle[playerid] = 0;
   }*/
   if(vehicleid > 142) {
       if(R[playerid] == 1) {
           R[playerid] = 0;
      } else {
      if(EngineON[vehicleid] == 0) {
      IsInVehicle[playerid][vehicleid] = 0;
      GameTextForPlayerBottom(playerid," ");
      SetVehicleLights(vehicleid,0);
      vh[playerid][vehicleid] = 0;
      NotDamager[playerid] = 0;
      SetVehicleAlarm(vehicleid,0);
      }
      if(EngineON[vehicleid] == 1) {
      IsInVehicle[playerid][vehicleid] = 0;
      GameTextForPlayerBottom(playerid," ");
      IsEngineOnOutOfPlayer[vehicleid] = 1;
      SetVehicleLights(vehicleid,0);
      vh[playerid][vehicleid] = 0;
      NotDamager[playerid] = 0;
      SetVehicleAlarm(vehicleid,0);
          );
          return 1;
  }


Error is in last bold red lines.
Title: Re: Need help in scripting.
Post by: S.L.C on August 13, 2014, 07:55:10 am
I believe this:
Code: [Select]
);Should be just this:
Code: [Select]
)Ex.
Code: [Select]
)
return 1;
Title: Re: Need help in scripting.
Post by: Some_one on August 13, 2014, 08:23:34 am
No,still it show errors but now there are 4 errors instead of 6 on same lines.

(http://i59.tinypic.com/11743tz.jpg)