SA-MP Forums Archive
[Ajuda] mapa em textdraw - 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] mapa em textdraw (/showthread.php?tid=661100)



mapa em textdraw - MtPlayerZ - 22.11.2018

Vi um vнdeo no ******* de um filterscript que quando vc digita /mapa aparece o mapa do gta igual no ESC como se fosse um TextDraw, mais infelizmente o cara que fez sу disponibilizou o arquivo .amx do FS, gostaria de saber se alguйm tem ideia de como fazer isto?


Re: mapa em textdraw - PowerMwK - 22.11.2018

Link do Video?


Re: mapa em textdraw - MtPlayerZ - 22.11.2018

Quote:
Originally Posted by PowerMwK
Посмотреть сообщение
Link do Video?
coloca you tube . com/watch?v=ZfIgRfRwByk

o forum fica censurando o site


Re: mapa em textdraw - PowerMwK - 22.11.2018

Vou ver se Decompilo ele e te passo, fica de olho no fуrum.


Re: mapa em textdraw - MtPlayerZ - 22.11.2018

JA CONSEGUI, ERA BEM SIMPLES ATЙ:

Код:
//No topo do GM
new Text:MAPA;

public OnGameModeInit()
{
        MAPA = TextDrawCreate(120.0, 20.0, "samaps:map");
	TextDrawFont(MAPA, 4);
	TextDrawColor(MAPA, 0xFFFFFFFF);
	TextDrawTextSize(MAPA, 400.0, 400.0);
        return 1;
}

CMD:mapa(playerid, params[])
{    
       TextDrawShowForPlayer(playerid, MAPA);
       return true;
}
ERA BASICAMENTE ISSO!
VLW PELA AJUDA MESMO ASSIM !!!

@Closed