IsPlayerInVehicle problem.
#10

Quote:
Originally Posted by Mean
Посмотреть сообщение
pawn Код:
if(IsPlayerInVehicle(playerid, 509 | 481 | 510 | 462 | 448 | 581 | 522 | 461 | 521 | 523 | 463 | 586 | 468 | 471))
To
pawn Код:
new vid = GetPlayerVehicleID( playerid );
if( vid == 509 || vid == 481 || vid == 510 || vid == 462 || vid == 448 || vid == 581 || vid == 522 || vid == 461 || vid == 521 || vid == 523 || vid == 463 || vid == 586 || vid == 468 || vid == 471 )
It might give you an error that line is too long, in that case, seperate lines with "\".
Huh... This one doesn't work either.







Quote:
Originally Posted by Spectre
Посмотреть сообщение
Actually, a Switch/Case works better in your case...
You can define the vehicles you want to do something to so much easier...
Here's a little example I wrote for you to examine...
Just spawn yourself in different type of vehicles and you'll see how it works when you type /INVEH
Once you "get" the coding you can adapt it to your particular needs...

(Put in OnPlayerCommandText)

if(strcmp(cmd,"/INVEH",true)==0){
if(IsPlayerInAnyVehicle(playerid)){
new vehtype[16];
switch(GetVehicleModel(GetPlayerVehicleID(playerid ))){
case 441,464,465,501,564,594:{vehtype="RC Vehicle";}
case 430,446,452 .. 454,472,473,484,493,595:{vehtype="Boat";}
case 461,463,468,521 .. 523,581,586:{vehtype="MotorCycle";}
default:{vehtype="who cares?";}
}// end of switch
format(msv0,sizeof(msv0),"You are in a %s",vehtype);
SendClientMessage(playerid,0xFFFFFFAA,msv0);
}// end of IsPlayerInAnyVehicle
return 1;}

Cheers
8^}>
And i cant fin a way to put this ^ script in an if command.
Reply


Messages In This Thread
IsPlayerInVehicle problem. - by Shetch - 27.02.2011, 14:49
Re: IsPlayerInVehicle problem. - by Master_Gangster - 27.02.2011, 15:16
Re: IsPlayerInVehicle problem. - by admantis - 27.02.2011, 15:18
Re: IsPlayerInVehicle problem. - by Shetch - 27.02.2011, 15:28
Re: IsPlayerInVehicle problem. - by Shetch - 27.02.2011, 15:52
Re: IsPlayerInVehicle problem. - by Master_Gangster - 27.02.2011, 16:30
Re: IsPlayerInVehicle problem. - by Mean - 27.02.2011, 17:15
Re: IsPlayerInVehicle problem. - by Shetch - 27.02.2011, 22:01
Re: IsPlayerInVehicle problem. - by Spectre - 28.02.2011, 03:01
Re: IsPlayerInVehicle problem. - by Shetch - 07.03.2011, 07:24

Forum Jump:


Users browsing this thread: 1 Guest(s)