01.04.2015, 02:36
Falae galera. Bom estou com mais um problema que й o seguinte. Quando eu crio veнculo no interior no comando "/criarveiculo" aparece o veнculo de boa, pois ja adaptei....
Mais eu estou querendo criar uns eventos em interiores, porem o veнculo estб ficando invisivel, eu tentei umas soluзгo aqui mais nгo consegui. Acho que este й de fato o ultimo problema que estou tendo. Obrigado ! Atй +
Mais eu estou querendo criar uns eventos em interiores, porem o veнculo estб ficando invisivel, eu tentei umas soluзгo aqui mais nгo consegui. Acho que este й de fato o ultimo problema que estou tendo. Obrigado ! Atй +
PHP код:
if( GetPVarInt( playerid, "pDono" ) == 1 || GetPVarInt( playerid, "pAdmin" ) == 1 )
{
if( !strcmp( cmd, "/ecv", true ))
{
if( VeiculosEvento == MAX_VEH_EVENTO )
{
SendClientMessage( playerid, COLOR_ERRO, "[ x ] Foi excedido o limite de veнculos por evento ! ( Mбximo: 50 )" );
return 1;
}
tmp = strtok( cmdtext, idx );
if( !strlen( tmp ))
{
SendClientMessage( playerid, COLOR_ERRO, "[ x ] Uso correto: /ecv [ VeiculoID ]" );
return 1;
}
new
veiculoID = strval( tmp )
;
if( veiculoID < 400 || veiculoID > 611 )
{
SendClientMessage( playerid, COLOR_ERRO, "[ x ] ID de veнculo inexistente!" );
return 1;
}
new
Float:ev_x, Float:ev_y, Float:ev_z, Float:ev_a
;
GetPlayerFacingAngle( playerid, ev_a );
GetPlayerPos( playerid, ev_x, ev_y, ev_z );
LinkVehicleToInterior( vehid, GetPlayerInterior( playerid ));
new
ev_c = random( 360 )
;
PutPlayerInVehicle( playerid, vEvento[ VeiculosEvento ] = CreateVehicle( veiculoID, ev_x, ev_y, ev_z, ev_a, ev_c, ev_c, -1 ), 0 );
ivEvento[ vEvento[ VeiculosEvento ] ] = 1;
VeiculosEvento ++;
return 1;
}