SA-MP Forums Archive
[Pedido] TextDraw que modifique in game +rep - 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: [Pedido] TextDraw que modifique in game +rep (/showthread.php?tid=513265)



TextDraw que modifique in game +rep - LE4NDrO - 15.05.2014

Alguйm poderia mandar o link de algum tуpico que ensine ou poderia por gentileza fazer o cуdigo ?
tipo queria uma textdraw que edita-se in game exemplo

/text , dai configurava , eu с quero por a do zamaroth , :3
sу para por o texto msm obg


Re: TextDraw que modifique in game +rep - Cor3y - 15.05.2014

https://sampwiki.blast.hk/wiki/TextDrawSetString


Re: TextDraw que modifique in game +rep - PT - 15.05.2014

--'

https://sampforum.blast.hk/showthread.php?tid=376758


Re: TextDraw que modifique in game +rep - Cor3y - 15.05.2014

Quote:
Originally Posted by PT
Посмотреть сообщение
Acho que ele quer mudar o TEXTO da TXD com um comando.


Re: TextDraw que modifique in game +rep - LE4NDrO - 05.07.2014

Quote:
Originally Posted by Cor3y
Посмотреть сообщение
Acho que ele quer mudar o TEXTO da TXD com um comando.
e isso mesmo, tipo /mudartextdraw..


Re: TextDraw que modifique in game +rep - jovinon - 05.07.2014

preguiзa й grande hein --' desse jeito nгo vai acabar nunca o GM

Код:
public OnPlayerCommandText(playerid, cmdtext[])
{
        new cmd[128], idx, tmp[128];
        cmd = strtok(cmdtext, idx);
	if (strcmp(cmd, "/mudartextdraw", true) == 0)
	{
                if(!IsPlayerAdmin(playerid)) return SendClientMessage(playerid, -1, "{FF0000}Primeiro, logue na RCON.");
		tmp = strtok(cmdtext, idx);
		if(!strlen(tmp)) return SendClientMessage(playerid, -1, "{CCCCCC}Use: /mudartextdraw <mensagem>");

		TextDrawSetString(NomeDaTextDraw, tmp);
		return 1;
	}
	return 0;
}