Help! why is it doing that - Printable Version
+- SA-MP Forums Archive (
https://sampforum.blast.hk)
+-- Forum: SA-MP Scripting and Plugins (
https://sampforum.blast.hk/forumdisplay.php?fid=8)
+--- Forum: Scripting Help (
https://sampforum.blast.hk/forumdisplay.php?fid=12)
+--- Thread: Help! why is it doing that (
/showthread.php?tid=569775)
Help! why is it doing that -
stev212 - 02.04.2015
why my complier doing that?
Код:
Header size: 7712 bytes
Code size: 294580 bytes
Data size: 18115200 bytes
Stack/heap size: 16384 bytes; estimated max. usage: unknown, due to recursion
Total requirements:18433876 bytes
i added this line and it's doing that
PHP код:
if(fexist(cInfo[ClanFile]))
all code of command:
http://pastebin.com/fP7DD4TK
it's ok?
Re: Help! why is it doing that -
StarPeens - 02.04.2015
i not know but, its normally.
i think is because this line is very long:
pawn Код:
if(Clans == 0) return ShowPlayerDialog(playerid, 8888, DIALOG_STYLE_LIST, "{FFA600}מערכת הקלאנים", "{0099FF}לא נוצרו קלאנים", "סגור", "");
format(String2,sizeof String2,"\t\t{CCEEFF}- %d - מספר הקלאנים בשרת -",Clans);
not woorry... and i not know if is it.
Re: Help! why is it doing that -
Evocator - 02.04.2015
It is because your calling a function within the same function. Thats not bad as long as it doesn't give and debugs on the log.
Re: Help! why is it doing that -
stev212 - 02.04.2015
Quote:
Originally Posted by StarPeens
i not know but, its normally.
i think is because this line is very long:
pawn Код:
if(Clans == 0) return ShowPlayerDialog(playerid, 8888, DIALOG_STYLE_LIST, "{FFA600}מערכת הקלאנים", "{0099FF}לא נוצרו קלאנים", "סגור", ""); format(String2,sizeof String2,"\t\t{CCEEFF}- %d - מספר הקלאנים בשרת -",Clans);
not woorry... and i not know if is it.
|
ok thank you
Quote:
Originally Posted by Ralfie
It is because your calling a function within the same function. Thats not bad as long as it doesn't give and debugs on the log.
|
thank you!