25.02.2010, 12:10
Of course it doesn't work, here's your mistake:
Player can't be in the both vehicles at the same time.
Correct:
pawn Код:
if(modelid == 476 && modelid == 520)
{
// other code.
}
Correct:
pawn Код:
if(modelid == 476 || modelid == 520)
{
// other code.
}