14.03.2011, 01:06
Quote:
For the last part, I want it so that you ARE able to teleport in a car.. or on foot.
|
Anyway, overall, with the messages, it`s not really hard. For the example, after the if, you can use else return, just like you did with the SetVehiclePos...
I`ll give you another example:
pawn Код:
if( bla bla)
{
//bla bla
}
return SendClientMessage( playerid, -1, "Message you want." ); // -1 is the color, which is white in this case ...
pawn Код:
else return SendClientMessage( bla bla)
Hope you understood something.