20.11.2011, 15:48
deu um erro:
ah,e com esse seu code eu tenho que deletar o playerentervehicle e o playerexitvehicle?
@EDIT
Eu tentei assim,compilou,eu testei e nгo deu certo.
OBS.: Tentei com os publics de enter e exit vehicle:
Agora eu tentei sem as publics exit e enter e tambйm nгo deu,o objeto continua atacado ao player quando ele entra no veнculo.
pawn Код:
error 017: undefined symbol "i"
@EDIT
Eu tentei assim,compilou,eu testei e nгo deu certo.
OBS.: Tentei com os publics de enter e exit vehicle:
pawn Код:
public OnPlayerStateChange(playerid, newstate, oldstate)
{
for(new i = 0; i < MAX_PLAYERS; i++)
if(IsPlayerInAnyVehicle(playerid))
{
if(Info[playerid][Arara])
RemovePlayerAttachedObject(i, 0);
}
if(newstate == PLAYER_STATE_DRIVER || newstate == PLAYER_STATE_PASSENGER)
{
if(Info[playerid][Arara])
SetPlayerAttachedObject(playerid,0, 19079, 1, 0.319503, -0.089340, -0.185576, 0.000000, 0.000000, 0.000000, 1.000000, 1.000000, 1.000000 );
}
return 1;
}