[Ajuda] nitro em amx - 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] nitro em amx (
/showthread.php?tid=495474)
nitro em amx -
xXCallXX - 17.02.2014
bom vir esse FS DE NITRO NA NET MAIS ELE TA EM AMX E QUERIA ELE EM PAW PRA ME COLOCAR NO GM
como converter amx para pwn tem como?
Re: nitro -
PT - 17.02.2014
usa esse:
https://sampforum.blast.hk/showthread.php?tid=388518
Re: nitro em amx -
xXCallXX - 17.02.2014
deu isso
pawn Код:
C:\Users\Alakinews\Saved Games\Untitled.pwn(2) : fatal error 100: cannot read from file: "progress"
Compilation aborted.Pawn compiler 3.2.3664 Copyright (c) 1997-2006, ITB CompuPhase
1 Error.
Re: nitro em amx -
PT - 17.02.2014
aqui tens o link para baixar a include
http://forum.sa-mp.com/showthread.ph...hlight=Toribio
Re: nitro em amx -
xXCallXX - 17.02.2014
ficou o mesmo erro
Re: nitro em amx -
brunox - 17.02.2014
colocaste isto no topo do gm ?
e a include na pasta de includes do pawno ?
Re: nitro em amx -
Adejair - 17.02.2014
Crie o Seu , A Propia Wiki-SA:MP Tem Esta Funзгo lб
pawn Код:
new gTAXI;
public OnGameModeInit()
{
gTAXI = AddStaticVehicle(420, -2482.4937, 2242.3936, 4.6225, 179.3656, 6, 1); // Taxi
return 1;
}
public OnPlayerStateChange(playerid, newstate, oldstate)
{
if (newstate == PLAYER_STATE_DRIVER && oldstate == PLAYER_STATE_ONFOOT)
{
if (GetPlayerVehicleID(playerid) == gTAXI)
{
AddVehicleComponent(gTAXI, 1010); // Nitro
SendClientMessage(playerid, 0xFFFFFFAA, "Nitro added to the Taxi.");
}
}
return 1;
}
Fonte : Wiki-SAMP
Re: nitro em amx -
PT - 17.02.2014
para nao ver vc sempre aqui vc a pedir com varios topicos sobre o mesmo assunto, toma la 1 base 1 comando para meter nitro no seu carro.
em strcmp:
pawn Код:
if(strcmp(cmdtext, "/nitro", true) == 0)
{
if(IsPlayerInAnyVehicle(playerid))
{
AddVehicleComponent(GetPlayerVehicleID(playerid), 1010); // Nitro
SendClientMessage(playerid, 0x00FF00AA, "Tens nitro no carro e.e.");
}
return 1;
}
em zcmd
pawn Код:
CMD:nitro(playerid)
{
if(IsPlayerInAnyVehicle(playerid))
{
AddVehicleComponent(GetPlayerVehicleID(playerid), 1010); // Nitro
SendClientMessage(playerid, 0x00FF00AA, "Tens nitro no carro e.e.");
}
return 1;
}
Re: nitro em amx -
xXCallXX - 17.02.2014
afz mais eu tou falando e pro cara so digita no mouse ae solta o nitro
Re: nitro em amx -
Wanderson_SAMP - 17.02.2014
BR BR BR BR PQ ¬¬
pawn Код:
#define PRESSED(%0) \
(((newkeys & (%0)) == (%0)) && ((oldkeys & (%0)) != (%0)))
#define RELEASED(%0) \
(((newkeys & (%0)) != (%0)) && ((oldkeys & (%0)) == (%0)))
public OnPlayerKeyStateChange(playerid, newkeys, oldkeys)
{
if(PRESSED(KEY_ACTION)) //KEY_ACTION pode ser alterado para KEY_FIRE como o original Alt
{
if(IsPlayerInAnyVehicle(playerid))
{
AddVehicleComponent(GetPlayerVehicleID(playerid), 1010);
}
}
if(RELEASED(KEY_ACTION))
{
if(IsPlayerInAnyVehicle(playerid))
{
RemoveVehicleComponent(GetPlayerVehicleID(playerid), 1010);
}
}
if(PRESSED(KEY_SUBMISSION))
{
new vehicleid = GetPlayerVehicleID(playerid);
if(IsPlayerInVehicle(playerid, vehicleid))
{
SetVehicleHealth(vehicleid,1000.0);
RepairVehicle(GetPlayerVehicleID(playerid));
PlayerPlaySound(playerid, 1133, 0.0, 0.0, 0.0);
}
}
return 1;
}