ejecting
#2

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

Correct:
pawn Код:
if(modelid == 476 || modelid == 520)
{
  // other code.
}
Reply


Messages In This Thread
ejecting - by aircombat - 25.02.2010, 12:09
Re: ejecting - by Correlli - 25.02.2010, 12:10
Re: ejecting - by mick88 - 25.02.2010, 12:41
Re: ejecting - by silvan - 25.02.2010, 13:59
Re: ejecting - by aircombat - 25.02.2010, 16:03

Forum Jump:


Users browsing this thread: 1 Guest(s)