Posts: 649
Threads: 4
Joined: Jul 2010
Quote:
Originally Posted by The Knight
No teleporte:
PHP код:
new kS = GetPlayerState( playerid );
if( kS == PLAYER_STATE_DRIVER )
{
//Funзхes do Teleporte
}
else
{
//O que quiser... lembrando que esta parte aqui, й o que acontece se ele nгo fфr o condutor
}
Exemplo:
PHP код:
if( !strcmp( cmdtext, "/kComando", true ) )
{
new kS = GetPlayerState( playerid );
if( IsPlayerInAnyVehicle( playerid ) )
{
if( kS == PLAYER_STATE_DRIVER )
{
SetPlayerPos( playerid, /*Cordenada:X*/, /*Cordenada:Y*/, /*Cordenada:Z*/ );
SendClientMessage( playerid, 0xFFF000AA, "Bem-vindo :D" );
return true;
}
else
{
SendClientMessage( playerid, 0xFFF000AA, "Vocк nгo se pode teleportar, sу o motorista!" );
return true;
}
}
return true;
}
|
acho que botar isso em todos os comandos ficarб chato...
adicione isto no topo do OnPlayerCommandText:
pawn Код:
new playerState = GetPlayerState(playerid);
if (playerState == PLAYER_STATE_PASSENGER)
{
SendClientMessage(playerid, -1,"[iPs]Garfield й Gostoso!!!");
RemovePlayerFromVehicle(playerid);
return 0;// you like hexa codes: 0xA-10
}