23.10.2009, 00:58
The International Secret Prison
A fully mapped hidden prison island in the secret heart of the sea .. Can be only reached by a permitted helicopter and not by boats and swimmers .. Has an interior and severa doors inside the interior which can be opened as well as close by pressing KEY LOOK BACK (On foot) ...
Screenshots
[center]
Download
AMX File
PWN File
All comments are appreciated (good or bad)
If you need a teleport command to the prison , then use this : -
pawn Code:
forward Unfreeze(playerid);
if(strcmp("/jail",cmdtext,true,5) == 0)
{
SetPlayerPos(playerid,1459.9524,-2593.2859,13.7198);
SetPlayerInterior(playerid,0);
TogglePlayerControllable(playerid,0);
SetTimer("Unfreeze",3000,false);
return 1;
}
public Unfreeze(playerid)
{
TogglePlayerControllable(playerid,1);
}