SA-MP Forums Archive
[Ajuda] Como juntar strings - 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] Como juntar strings (/showthread.php?tid=654186)



Como juntar strings - idegod - 22.05.2018

Estou tendo dificuldades de juntar strings, acho que estou fazendo errado com strcat

Queria no caso num sistema de kill, pegar mais de um killer e juntar todos no final de uma string pra jogar no site:
PHP код:
                            new kstr[128];
                            if(
killerid != INVALID_PLAYER_ID) {
                                
printf("OI");
                                
format(kstrsizeof(kstr), "<a href='player.php?p=%s'>%s</a> "PlayerName(killerid), PlayerName(killerid) );
                                
printf("kstr: "kstr);
                            }
                            
strcat(strkillerskstr); 
Mas por na hora de printar no serverlog estб printando assim:
Код:
[16:30:27] OI
[16:30:27] kstr: 
[16:30:27] strkillers:



Re: Como juntar strings - arakuta - 22.05.2018

PHP код:
new minhavar "Alguma coisa";
printf("minhavar й %s",minhavar); 
cadк o placeholder do printf?


Re: Como juntar strings - idegod - 22.05.2018

Quote:
Originally Posted by arakuta
Посмотреть сообщение
PHP код:
new minhavar "Alguma coisa";
printf("minhavar й %s",minhavar); 
cadк o placeholder do printf?
falei merda


Re: Como juntar strings - idegod - 23.05.2018

O problema era no MYSQL eu tava viajando, vlw!