15.05.2011, 20:16
Qual й a diferenca entre format e strcat?
new PC[20];
fomat(PC, sizeof(PC),"Formatou PC");
new PC[100];
strcat(PC,"eu sou gato (strcat)\n");
strcat(PC,"neegrooo gatoooo");
SendClientMessage(playerid, 0xFF0000, PC);
error 075: input line too long (after substitutions)
static g[20];
strcat(g,"Minhau");
Create3DTextLabel("Esse й Meu Tutorial\nSabia ?", cor,2453.7878,-1460.9454,24.0000,50.0,0);
if(strcmp(cmdtext,"/Jonathan",true)==0)
{
new Jonathan[400];
strcat(Jonathan,"Veja Que No Final Vai ter o > \n");
strcat(Jonathan,"Esse й meu Caderno !!! Agora vou Para Outra Linha \n");
strcat(Jonathan,"\n"); // Esse Exemplo Pulou Uma Linha em Branco =)
ShowPlayerDialog(playerid, 1235, DIALOG_STYLE_MSGBOX, "Jonathan Owna ! ",Jonathan, "Tutorial", "Sair");
// Iremos Ver La No Final =)
return true;
}
if(!strcmp("/meudialoglist", cmdtext, true)) // Comando
{
ShowPlayerDialog(playerid, 1239, DIALOG_STYLE_LIST, "Cabeзalho", "JFS\nJonathan", "Selecionar", "Cancelar");
//Ou Seja Vai Servir Para Pular de Linha no DIALOG LIST TAMBЙM ! SE NAO POR \n Vai Ficar na Mesma Linha !
return true;
}
new PC[100];
strcat(PC,"eu sou gato (strcat)\n");
strcat(PC,"neegrooo gatoooo");
SendClientMessage(playerid, 0xFF0000, PC);
new PC[100];
strcat(PC,"eu sou gato (strcat)\n");
strcat(PC,"neegrooo gatoooo");
ShowPlayerDialog(playerid, 0, DIALOG_STYLE_LIST, "strcat", PC, "Ok", "");