SA-MP Forums Archive
[AJUDA]Como adiciono carros a equipa? - Printable Version

+- SA-MP Forums Archive (https://sampforum.blast.hk)
+-- Forum: Non-English (https://sampforum.blast.hk/forumdisplay.php?fid=9)
+--- Forum: Languages (https://sampforum.blast.hk/forumdisplay.php?fid=33)
+---- Forum: Português/Portuguese (https://sampforum.blast.hk/forumdisplay.php?fid=34)
+---- Thread: [AJUDA]Como adiciono carros a equipa? (/showthread.php?tid=239023)



[AJUDA]Como adiciono carros a equipa? - Gi_Flow - 12.03.2011

Bem eu tive a ver tutos fiz o que lб estava pedido mas nao deu :S
Eu gostava de saber como faзo que o veiculos X seja da equipa X
Podem me dizer?


Re: [AJUDA]Como adiciono carros a equipa? - Falcon. - 12.03.2011

No Comeзo do mode:

pawn Код:
#define EquipeFalcon 1
new Equipe[MAX_PLAYERS];
new VeiculoEquipeFalcon;
public OnGameModeInit()
pawn Код:
VeiculoEquipeFalcon = CreateVehicle(555, X, Y, Z, rotaзгo, cor1, cor2, 0);
OnPlayerEnterVehicle(playerid, vehicleid, ispassenger)
pawn Код:
if(vehicleid == VeiculoEquipeFalcon)
{
    if(Equipe[playerid] == EquipeFalcon)
    {
        SendClientMessage(playerid, 0xFFFFFF, "Parabens voce entrou no veiculo de sua equipe");
    }
    else
    {
        RemovePlayerFromVehicle(playerid);
        TogglePlayerControllable(playerid, 1);
    }
}



Re: [AJUDA]Como adiciono carros a equipa? - Gi_Flow - 12.03.2011

e imagine que eu sou da equipa contraria ex: equipegays
Como faзo o texto a dizer "Voce nao й da equipeFalcon"

@EDIT mais uma duvida eu tenho de adiciona a #define? eu jб tenho as equipas feitas, agora sу falta colocar os veiculos na equipa certa :P


Re: [AJUDA]Como adiciono carros a equipa? - Falcon. - 12.03.2011

Para enviar a mensagem informando que nao pertence a equipe coloque isso junto com o RemovePlayerFromVehicle...
pawn Код:
SendClientMessage(playerid, 0xFFFFFF, "Vocк nгo pertence a EquipeFalcon");
Caso vocк jб tenha as equipes formadas entгo nгo й necessбrio definir novamente


Re: [AJUDA]Como adiciono carros a equipa? - Gi_Flow - 12.03.2011

Ok eu carreguei no CTRL+F e procurei o OnPlayerEnterVehicle e nao encontrei tenho de adicionar uma forward?


Re: [AJUDA]Como adiciono carros a equipa? - Kruger - 12.03.2011

Vooce Deve Ter Apagado Ela ...

Criei Ela Sem Forward Se Der ERRO Coloca A Forward Com O Nome Da Callback


Re: [AJUDA]Como adiciono carros a equipa? - Gi_Flow - 12.03.2011

Jб fiz isso tudinho mas tem muitos erros :S

Код:
C:\Users\Gonзalo.utilizador-PC\Desktop\SAMP - TPD\gamemodes\ZO-RPfoda.pwn(588) : warning 202: number of arguments does not match definition
C:\Users\Gonзalo.utilizador-PC\Desktop\SAMP - TPD\gamemodes\ZO-RPfoda.pwn(589) : warning 202: number of arguments does not match definition
C:\Users\Gonзalo.utilizador-PC\Desktop\SAMP - TPD\gamemodes\ZO-RPfoda.pwn(590) : warning 202: number of arguments does not match definition
C:\Users\Gonзalo.utilizador-PC\Desktop\SAMP - TPD\gamemodes\ZO-RPfoda.pwn(591) : warning 202: number of arguments does not match definition
C:\Users\Gonзalo.utilizador-PC\Desktop\SAMP - TPD\gamemodes\ZO-RPfoda.pwn(592) : warning 202: number of arguments does not match definition
C:\Users\Gonзalo.utilizador-PC\Desktop\SAMP - TPD\gamemodes\ZO-RPfoda.pwn(593) : warning 202: number of arguments does not match definition
C:\Users\Gonзalo.utilizador-PC\Desktop\SAMP - TPD\gamemodes\ZO-RPfoda.pwn(594) : warning 202: number of arguments does not match definition
C:\Users\Gonзalo.utilizador-PC\Desktop\SAMP - TPD\gamemodes\ZO-RPfoda.pwn(595) : warning 202: number of arguments does not match definition
C:\Users\Gonзalo.utilizador-PC\Desktop\SAMP - TPD\gamemodes\ZO-RPfoda.pwn(596) : warning 202: number of arguments does not match definition
C:\Users\Gonзalo.utilizador-PC\Desktop\SAMP - TPD\gamemodes\ZO-RPfoda.pwn(597) : warning 202: number of arguments does not match definition
C:\Users\Gonзalo.utilizador-PC\Desktop\SAMP - TPD\gamemodes\ZO-RPfoda.pwn(1326) : error 055: start of function body without function header
C:\Users\Gonзalo.utilizador-PC\Desktop\SAMP - TPD\gamemodes\ZO-RPfoda.pwn(1327) : error 010: invalid function or declaration
C:\Users\Gonзalo.utilizador-PC\Desktop\SAMP - TPD\gamemodes\ZO-RPfoda.pwn(1329) : error 010: invalid function or declaration
C:\Users\Gonзalo.utilizador-PC\Desktop\SAMP - TPD\gamemodes\ZO-RPfoda.pwn(1333) : error 010: invalid function or declaration
C:\Users\Gonзalo.utilizador-PC\Desktop\SAMP - TPD\gamemodes\ZO-RPfoda.pwn(1359) : warning 203: symbol is never used: "Equipe"
C:\Users\Gonзalo.utilizador-PC\Desktop\SAMP - TPD\gamemodes\ZO-RPfoda.pwn(597) : warning 204: symbol is assigned a value that is never used: "VeiculoEquipeMilitar"
Pawn compiler 3.2.3664	 	 	Copyright © 1997-2006, ITB CompuPhase


4 Errors.
@EDIT jб resolvi 1, mas acho que os outros 3 provem do CreateVehicle, vou tentar mudar para o AddStaticVehicle.

@EDIT pronto os erros jб diminuirгo mas ainda tem aqueles 3 vejam,
Код:
C:\Users\Gonзalo.utilizador-PC\Desktop\SAMP - TPD\gamemodes\ZO-RPfoda.pwn(1324) : error 055: start of function body without function header
C:\Users\Gonзalo.utilizador-PC\Desktop\SAMP - TPD\gamemodes\ZO-RPfoda.pwn(1325) : error 010: invalid function or declaration
C:\Users\Gonзalo.utilizador-PC\Desktop\SAMP - TPD\gamemodes\ZO-RPfoda.pwn(1327) : error 010: invalid function or declaration
C:\Users\Gonзalo.utilizador-PC\Desktop\SAMP - TPD\gamemodes\ZO-RPfoda.pwn(1353) : warning 203: symbol is never used: "Equipe"
C:\Users\Gonзalo.utilizador-PC\Desktop\SAMP - TPD\gamemodes\ZO-RPfoda.pwn(595) : warning 204: symbol is assigned a value that is never used: "VeiculoMilitar"
Pawn compiler 3.2.3664	 	 	Copyright © 1997-2006, ITB CompuPhase


3 Errors.



Re: [AJUDA]Como adiciono carros a equipa? - Carl_Thuse - 12.03.2011

Esse Invalid Function or Declaration tem me tirado o sono :O
Algum Expert da uma ajuda ae, como resolve esse Invalid...?
'----'


Re: [AJUDA]Como adiciono carros a equipa? - Gi_Flow - 12.03.2011

Isso inrrita :S
as vezes sу uma falha lixa-nos o GM a pala disso jб fiz tantos backups :S


Re: [AJUDA]Como adiciono carros a equipa? - [AF]Junior - 12.03.2011

poste linhas nгo temos bola de cristal...