SA-MP Forums Archive
[Ajuda] Falta de atenзгo acontece kk - 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] Falta de atenзгo acontece kk (/showthread.php?tid=662191)



Falta de atenзгo acontece kk - DanielMatrix - 25.12.2018

Bom kk , e uma coisa simples que por motivos de falta de atenзгo nгo estou me recordando.

stock cargodiretoria(playerid) {

new String[128];
switch(PlayerInfo[playerid][pAdmin]) {

case 1: strcat(String, "Diretor");

case 2: strcat(String, "Fundador Diretor");

case 3: strcat(String, "Fundador Presidente");

case 4: strcat(String, "Fundador Scripter");
}
return 1;
}
format(Dialog, sizeof(Dialog), "{b30059} Vocк foi adimitido para a diretoria do servidor. \n | Reponsбvel: %s|",cargodiretoria(playerid));
Nгo a nenhum erro nesse codigo , mas nгo esta puxando as Strings , quando tento setar em algum format.
Help- me , Feliz Natal


Re: Falta de atenзгo acontece kk - FerrariL - 25.12.2018

Simples, sу retornar a variбvel String. Esta variбvel estб muito grande, diminua a quantia de нndices, e nгo й necessбrio a keyword stock.


Re: Falta de atenзгo acontece kk - iorp - 25.12.2018

Quote:
Originally Posted by DanielMatrix
Посмотреть сообщение
Bom kk , e uma coisa simples que por motivos de falta de atenзгo nгo estou me recordando.

stock cargodiretoria(playerid) {

new String[128];
switch(PlayerInfo[playerid][pAdmin]) {

case 1: strcat(String, "Diretor");

case 2: strcat(String, "Fundador Diretor");

case 3: strcat(String, "Fundador Presidente");

case 4: strcat(String, "Fundador Scripter");
}
return 1;
}
format(Dialog, sizeof(Dialog), "{b30059} Vocк foi adimitido para a diretoria do servidor. \n | Reponsбvel: %s|",cargodiretoria(playerid));
Nгo a nenhum erro nesse codigo , mas nгo esta puxando as Strings , quando tento setar em algum format.
Help- me , Feliz Natal
use code format to markdown the script code in post


Re: Falta de atenзгo acontece kk - vitinhosamp - 25.12.2018

PHP код:
stock cargodiretoria(playerid) {
new 
String[128];
switch(
PlayerInfo[playerid][pAdmin]) {
case 
1strcat(String"Diretor");
case 
2strcat(String"Fundador Diretor");
case 
3strcat(String"Fundador Presidente");
case 
4strcat(String"Fundador Scripter");
}
return 
String;