SA-MP Forums Archive
[Ajuda] Isso afeta em algo no GM - 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] Isso afeta em algo no GM (/showthread.php?tid=576866)



Isso afeta em algo no GM - BrasilVidadeCargaS - 07.06.2015

Header size: 10460 bytes
Code size: 1238816 bytes
Data size: 4787268 bytes
Stack/heap size: 16384 bytes; estimated max. usage=6002 cells (24008 bytes)
Total requirements: 6052928 bytes


Re: Isso afeta em algo no GM - LockedLucas - 07.06.2015

Nгo.


Re: Isso afeta em algo no GM - ipsLuan - 07.06.2015

Nгo altera em nada. Sгo apenas as estatнsticas.


Re: Isso afeta em algo no GM - LucasDias - 08.06.2015

Nгo, mas o meu nгo aparece nada disso, jб apareceu, mas melhorei os scripts.


Re: Isso afeta em algo no GM - zSuYaNw - 08.06.2015

Geralmente quando aparece isso, й quando a quantidade de cйlulas declaradas em arrays estгo maior que o suportado/real uso...

Exemplo:
PHP код:
new string[256];
format(stringsizeof(string), "Olб mundo");
printf(string); 
Nesse cуdigo, eu declaro 256 caracteres(256 cйlulas).. porйm sу uso 10 cйlulas.. Nisso me sobram 246 cйlulas.


O Correto seria:
PHP код:
new string[10]; // nossa frase tem 9 cйlulas, porйm ao declarar, Adicionamos a cйlula NULL, Ficando 10.
format(stringsizeof(string),"Olб mundo");
printf(string); 


Geralmente aparece em gamemodes RPGS editados(nгo estou falando do seu caso).


Respuesta: Isso afeta em algo no GM - [BWL]Chamaleon - 08.06.2015

Nгo nescessбriamente editado, o criado do 0 meu que eu fiz a um tempo atrбs com a intenзгo de vende-lo coisa que fiz mesmo kkk, tambйm fazia o mesmo, sу do seu script ser muito alto isso jб й mostrado, o meu code size й maior que meu data size atualmente.

Afetar, afeta sim, pois o GM estб tendo muitos bytes chamados, isso causa um lagzim, pelo menos quando eu diminui no meu tirou bastante o lag.

Atenciosamente,



Re: Isso afeta em algo no GM - ipsLuan - 08.06.2015

Quote:
Originally Posted by zSuYaNw
Посмотреть сообщение
O Correto seria:
PHP код:
new string[10]; // nossa frase tem 9 cйlulas, porйm ao declarar, Adicionamos a cйlula NULL, Ficando 10.
format(stringsizeof(string),"Olб mundo");
printf(string); 
Nesse caso, iria estб gastando cйlulas sem precisгo.
PHP код:
print("Olб mundo"); 



Re: Isso afeta em algo no GM - zSuYaNw - 08.06.2015

Quote:
Originally Posted by ipsLuan
Посмотреть сообщение
Nesse caso, iria estб gastando cйlulas sem precisгo.
PHP код:
print("Olб mundo"); 
o foco nгo й esse, e sim manipulaзгo de cйlulas.