[AJUDA] Pegar carro pelo Alt
#1

Galerб, estou querendo aprender fazer um comando que й assim :

O servido ta sem carro (elegy) dai o carra vai la e aperta Alt, dai apareзe um Elegy e ele dentro do elegy pronto pra andar ... Mais quero aprender tbm Se poderem ajudar por favor ^^ e que quando ele faзa outro aquele q ele tinha criado sumisse ! pra nгo ficar cheio de elegy .. Obrigado
Reply
#2

pawn Код:
if(newkeys & 1)
{
    if(IsPlayerInAnyVehicle(playerid)) return true;
    new Float:x, Float:y, Floatz;
    GetPlayerPos(playerid, x,y,z);
    PutPlayerInVehicle(playerid, CreateVehicle(512, x,y,z, 0.0, -1, -1, 9999999999), 0);
}
Reply
#3

pawn Код:
C:\Documents and Settings\FAMILIA_\Desktop\Iniciante\gamemodes\testing.pwn(495) : error 017: undefined symbol "newkeys"
C:\Documents and Settings\FAMILIA_\Desktop\Iniciante\gamemodes\testing.pwn(499) : error 017: undefined symbol "z"
C:\Documents and Settings\FAMILIA_\Desktop\Iniciante\gamemodes\testing.pwn(500) : error 017: undefined symbol "z"
C:\Documents and Settings\FAMILIA_\Desktop\Iniciante\gamemodes\testing.pwn(498) : warning 203: symbol is never used: "Floatz"
Pawn compiler 3.2.3664          Copyright (c) 1997-2006, ITB CompuPhase


3 Errors.
Reply
#4

bota isto no OnPlayerKeyStateChange
pawn Код:
if(newkeys & 1)
{
    if(IsPlayerInAnyVehicle(playerid)) return true;
    new Float:x, Float:y, Float:z;
    GetPlayerPos(playerid, x,y,z);
    PutPlayerInVehicle(playerid, CreateVehicle(512, x,y,z, 0.0, -1, -1, 9999999999), 0);
}
Reply
#5

eei carol brigadгo funfo, soque Nгo й pelo alt '-' й pelo tabata oq eu faзo pra por pelo alt ? [Alt][Space][Alt Gr]

Quero o [Alt]

e quando cria o veiculo e sai, e cria dinovo o outro continua la, queria q ele resetase Tipo : Criei o veiculo, se eu criar outro, oq eu tinha criado sumisse '-'
Reply
#6

No Topo:
pawn Код:
new MyCar[MAX_PLAYERS];

pawn Код:
if(newkeys & 1)
{
    if(IsPlayerInAnyVehicle(playerid)) return true;
    if(MyCar[playerid] != -1) DestroyVehicle(MyCar[playerid]);
    new Float:x, Float:y, Float:z;
    GetPlayerPos(playerid, x,y,z);
    MyCar[playerid] = CreateVehicle(512, x,y,z, 0.0, -1, -1, 9999999999);
    PutPlayerInVehicle(playerid, MyCar[playerid], 0);
}
Reply
#7

Aew carol vc й 10 Garota !! Funfo certim, mais como eu faзo pra criar com a Tecla [Alt] do teclado ? Ta ino apenas com a Tecla Tabta ?
Reply
#8

nгo й possнvel a tecla ALT apй.
Reply
#9

Como eu faзo pra por a Tecla F ?
Reply
#10

pawn Код:
if(newkeys & 16)
{
    if(IsPlayerInAnyVehicle(playerid)) return true;
    if(MyCar[playerid] != -1) DestroyVehicle(MyCar[playerid]);
    new Float:x, Float:y, Float:z;
    GetPlayerPos(playerid, x,y,z);
    MyCar[playerid] = CreateVehicle(512, x,y,z, 0.0, -1, -1, 9999999999);
    PutPlayerInVehicle(playerid, MyCar[playerid], 0);
}
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)