SA-MP Forums Archive
CAR HELP - Printable Version

+- SA-MP Forums Archive (https://sampforum.blast.hk)
+-- Forum: SA-MP Scripting and Plugins (https://sampforum.blast.hk/forumdisplay.php?fid=8)
+--- Forum: Scripting Help (https://sampforum.blast.hk/forumdisplay.php?fid=12)
+--- Thread: CAR HELP (/showthread.php?tid=375444)



CAR HELP - trapstar2020 - 06.09.2012

Problem none........... ALL i need iz 2 figure out how 2 add a second name??

Код:
public OnPlayerStateChange(playerid, newstate, oldstate)
{
    if(newstate == 2)
    {
        new CarCheck = GetPlayerVehicleID(playerid);
        if(CarCheck == FireCat )
        {
          new pName[MAX_PLAYER_NAME];//Where we will store the players name in a 24 size.
          GetPlayerName(playerid,pName,sizeof(pName));//Getting the players name and storing it in pName.
          if(strcmp(pName,"Admin") == 0 )//String compare between the users name and the selected name.
		  {
           SendClientMessage(playerid,-1,"YOUR A OG!");
          }
          else//Else if the 2 names don't match....
          {
          RemovePlayerFromVehicle(playerid);//Lets remove him from the vehicle
          SendClientMessage(playerid,-1,"Get The Fuck OUT!");
		  }
        }
    }
    return 1;
}



Re : CAR HELP - lelemaster - 07.09.2012

if(strcmp(pName,"Admin") == 0 || strcmp(pName,"TheNewName") == 0)