28.04.2014, 01:27
Criei um sistema de lanзar misseis mais ele esta meio bugado. O bug й que ele lanзa os misseis a qualquer lugar, sendo que й para ser na posiзгo Y + 40.
Vнdeo:
https://www.youtube.com/watch?v=JD79...ature=*********
Cуdigo:
Vнdeo:
https://www.youtube.com/watch?v=JD79...ature=*********
Cуdigo:
pawn Код:
public OnPlayerKeyStateChange(playerid, newkeys, oldkeys)
{
if( IsPlayerInAnyVehicle( playerid ) ) {
if( BlockCMD[ playerid ] == 1 )
return 0;
new vehicleid = GetVehicleModel( GetPlayerVehicleID( playerid ) );
if( vehicleid == 578 && VeiculoU[ playerid ] == true ) {
if( newkeys & KEY_FIRE ) {
new
Float:poSS[ 3 ]
;
GetPlayerPos(playerid, poSS[ 0 ], poSS[ 1 ], poSS[ 2 ]);
CreateExplosion( poSS[ 0 ], poSS[ 1 ]+40, poSS[ 2 ], 0, 15 );
Msg( playerid, -1, "{FFFF00}[INFO]: {FFFFFF}Vocк atirou um {BEBEBE}Missel {00FF00}40 {FFFFFF}metros a sua frente !" );
}
}
}
return 1;
}