Author Topic: Need help in scripting.  (Read 2683 times)

0 Members and 1 Guest are viewing this topic.

Offline Some_one

  • Street Thug
  • *
  • Posts: 14
    • View Profile
Need help in scripting.
« 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.



In these lines.



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.

Offline S.L.C

  • Street Thug
  • *
  • Posts: 42
  • Sorry if you weren't impressed!
    • View Profile
Re: Need help in scripting.
« Reply #1 on: August 13, 2014, 07:55:10 am »
I believe this:
Code: [Select]
);Should be just this:
Code: [Select]
)Ex.
Code: [Select]
)
return 1;

Offline Some_one

  • Street Thug
  • *
  • Posts: 14
    • View Profile
Re: Need help in scripting.
« Reply #2 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.