Procure no GM (Ctrl + F) isso:
pawn Код:
forward LiberarPrisao( playerid );
E/ou Ativa o Code que está Bloqueado
Que ira ficar assim:
pawn Код:
forward LiberarPrisao( playerid );
public LiberarPrisao( playerid )
{
if( pInfo[ playerid ][ Preso ] <= 0 )
{
KillTimer( T_Preso[ playerid ] );
TextDrawHideForPlayer( playerid, p_TextPreso[ playerid ] );
SendClientMessage( playerid, 0xA9C4E4AA, "[ x ] Você cumpriu sua pena e está livre novamente !" );
SetPlayerPos( playerid, 265.9714, 83.1550, 1001.0391 );
SetPlayerInterior( playerid, 6 );
SetPlayerWantedLevel( playerid, 0 );
pInfo[ playerid ][ EntrouL ] = true;
pInfo[ playerid ][ Preso ] = 0;
SetPlayerHealth( playerid, 100.0 );
GameTextForPlayer( playerid, "~w~SOLTO!", 3000, 0 );
format( gFile, sizeof( gFile ), "Contas/%s.ini", PlayerName( playerid ));
dini_IntSet( gFile, "Abuser", 0 );
pInfo[ playerid ][ entrouDEL ] = 1;
return 1;
}
if( pInfo[ playerid ][ Preso ] >= 1 )
{
pInfo[ playerid ][ Preso ] --;
T_Preso[ playerid ] = SetTimerEx( "LiberarPrisao", 1000, false, "d", playerid );
new
d_Horas1,
d_Minut1,
d_Segun1
;
formatSeconds( pInfo[ playerid ][ Preso ], d_Horas1, d_Minut1, d_Segun1 );
if( d_Horas1 > 0 )
{
format( gstring, sizeof( gstring ), "~r~~h~Tempo de Prisao~n~~g~~h~Hora(s): %d~n~~p~~h~Minutos: ~w~%d~n~~b~~h~Segundos: ~w~%d", d_Horas1, d_Minut1, d_Segun1 );
TextDrawSetString( p_TextPreso[ playerid ], gstring );
}
else if( d_Horas1 <= 0 && d_Minut1 > 0 )
{
format( gStr, sizeof( gStr ), "~r~~h~Tempo de Prisao~n~~n~~p~~h~Minutos: ~w~%d~n~~b~~h~Segundos: ~w~%d", d_Minut1, d_Segun1 );
TextDrawSetString( p_TextPreso[ playerid ], gStr );
}
else if( d_Horas1 <= 0 && d_Minut1 <= 0 && d_Segun1 > 0 )
{
format( gStr, sizeof( gStr ), "~r~~h~Tempo de Prisao~n~~n~~b~~h~Segundos: ~w~%d", d_Segun1 );
TextDrawSetString( p_TextPreso[ playerid ], gStr );
}
TextDrawShowForPlayer( playerid, p_TextPreso[ playerid ] );
}
return 1;
}
#EDIT:
Acrescente no Code:
pawn Код:
SetPlayerPos( playerid, 265.9714, 83.1550, 1001.0391 );
SetPlayerInterior( playerid, 6 );
Se não ele não ira sair da Prisão,Sera solto apenas por Mensagem!