Andromada open/close back door with interior that player can join help me please -
buonggiorno - 06.01.2010
hi to all...i have idea to add some to server but i dont know is it posibile...
thing going like this, i want to make parachute club on server, and to add one andromada...the way i want to add andromada and not some other plane is that that only andromada can open/close back door ( taster 8 and 2 )... i try to open door and enter back but i cant...can somebody tell me is it posibile to make when i open andromadas back door that players can enter back in plane, and when i open it again, when we are in are, that player can run to end of plane cargo witch is back and jump from there, like in san andreas single mision...
something like this
http://i201.photobucket.com/albums/a.../sa-mp-383.png but withoutcheck point... so revise..
1. when i open andromadas back door everyone can enter in cargo space not when somebody press G
2. nobody cant leave plane until i open door
3. when i open door, player can run and jump from back plane and open parachute when they that want.
I thing that there is way to make it but i me noob ( new in that world ) and i dont know much
Re: Andromada open/close back door with interior that player can join help me pl -
rs2fun111 - 06.01.2010
YEH im searched this too everywhere but nothing :S
Re: Andromada open/close back door with interior that player can join help me please -
buonggiorno - 06.01.2010
or there is no way to make this, or there is somebody who know this but wont tell to us :S anywhere i think that there is way to make this but i am not good scripter to comfirm this or make it...
Re: Andromada open/close back door with interior that player can join help me pl -
rs2fun111 - 06.01.2010
someone sayd me how to set JUMP KEY to open Andromada Checkpoint!
Код:
public OnPlayerKeyStateChange(playerid, newkeys, oldkeys)
{
if (PRESSED(KEY_JUMP))
{
if(GetVehicleModel(GetPlayerVehicleID(playerid)) == 592)
{
new Float:vX, Float:vY, Float:vZ;
SetPlayerCheckpoint(playerid,vX,vY,vZ,5.0);
}
}
return 1;
}
but i dont know how it works .
Re: Andromada open/close back door with interior that player can join help me please -
Retardedwolf - 06.01.2010
The andromada interior (in the screenshot) is just a object by GTA.
You can't open andromada (vehicle)s' backdoor or the ramp like in GTA SA Single player.
Re: Andromada open/close back door with interior that player can join help me please -
beckzy - 06.01.2010
Quote:
The andromada interior (in the screenshot) is just a object by GTA.
You can't open andromada (vehicle)s' backdoor or the ramp like in GTA SA Single player.
|
You can but it doesn't open for streamed out players in 0.3.
Re: Andromada open/close back door with interior that player can join help me pl -
rs2fun111 - 06.01.2010
Quote:
Originally Posted by rs2fun111
its not a object this screenshot is made in SAP server . and its possible to make thos

|
Re: Andromada open/close back door with interior that player can join help me pl -
Sascha - 07.01.2010
Quote:
Originally Posted by rs2fun111
someone sayd me how to set JUMP KEY to open Andromada Checkpoint!
Код:
public OnPlayerKeyStateChange(playerid, newkeys, oldkeys)
{
if (PRESSED(KEY_JUMP))
{
if(GetVehicleModel(GetPlayerVehicleID(playerid)) == 592)
{
new Float:vX, Float:vY, Float:vZ;
SetPlayerCheckpoint(playerid,vX,vY,vZ,5.0);
}
}
return 1;
}
but i dont know how it works .
|
That would only make the Checkpoint visible for you...not for other players.
You have to use: CreateCheckpoint
and
OnPlayerEnterCheckpoint
set the player to the position of the Andro Interior:
SetPlayerInterior(playerid, 9);
SetPlayerPos(playerid, 315.856170, 1024.496459, 1949.797363);
that could work maybe..