22.03.2012, 00:20
Acabei de fazer um tutorial mermгo, tб de vacilaзгo? G_G
http://forum.sa-mp.com/showthread.ph...28#post1746528
@EDIT, pra economizar post, leia e estude isso juntamente com o tutorial pelo amor do seu "Deus"...
Aprender й уtimo.
http://forum.sa-mp.com/showthread.ph...28#post1746528
@EDIT, pra economizar post, leia e estude isso juntamente com o tutorial pelo amor do seu "Deus"...
Aprender й уtimo.
pawn Код:
CMD:carro(playerid)
{
ShowPlayerDialog(playerid, 1, DIALOG_STYLE_INPUT, "Car", "Digite o id do carro", "Confirmar", "");
return 1;
}
public OnDialogResponse(playerid, dialogid, response, listitem, inputtext[])
{
if(dialogid == 1)
{
if(response)
{
new car = strval(inputtext);
new Float:x, Float:y, Float:z, Float:a;
GetPlayerPos(playerid, x, y, z);
GetPlayerFacingAngle(playerid, a);
CreateVehicle(car, x, y, z, a, -1, -1, 9999999);
return 1;
}
return 1;
}
return 1;
}