[HELP] 6 errors :/
#2

Код:
C:\Users\Snjezana\Desktop\Desktop\Bahamas RP\gamemodes\bah.pwn(5015) : error 001: expected token: ";", but found "("
C:\Users\Snjezana\Desktop\Desktop\Bahamas RP\gamemodes\bah.pwn(5021) : error 047: array sizes do not match, or destination array is too small
C:\Users\Snjezana\Desktop\Desktop\Bahamas RP\gamemodes\bah.pwn(5035) : error 047: array sizes do not match, or destination array is too small
C:\Users\Snjezana\Desktop\Desktop\Bahamas RP\gamemodes\bah.pwn(5161) : error 047: array sizes do not match, or destination array is too small
C:\Users\Snjezana\Desktop\Desktop\Bahamas RP\gamemodes\bah.pwn(5246) : error 047: array sizes do not match, or destination array is too small
C:\Users\Snjezana\Desktop\Desktop\Bahamas RP\gamemodes\bah.pwn(5253) : error 012: invalid function call, not a valid address
C:\Users\Snjezana\Desktop\Desktop\Bahamas RP\gamemodes\bah.pwn(5253) : error 001: expected token: ";", but found ")"
C:\Users\Snjezana\Desktop\Desktop\Bahamas RP\gamemodes\bah.pwn(5253) : error 029: invalid expression, assumed zero
C:\Users\Snjezana\Desktop\Desktop\Bahamas RP\gamemodes\bah.pwn(5253) : fatal error 107: too many error messages on one line
5015

Код:
new ReturnUser(temp);
You are defining new variable as function which isn't possible.
You should have for instance new variable = ReturnUser(temp);



5021

Код:
 temp = strtok(text, idx);
You've defined variable temp as too small, check the string length used in strtok and change temp to it as well.


5035

Код:
				x_nr = strtok(text, idx);
You've defined variable temp as too small, check the string length used in strtok and change temp to it as well.


5161

Код:
					x_tel = strtok(text, idx);
You've defined variable temp as too small, check the string length used in strtok and change temp to it as well.


5246

Код:
		    temp = strtok(text, idx);
You've defined variable temp as too small, check the string length used in strtok and change temp to it as well.
Reply


Messages In This Thread
[HELP] 6 errors :/ - by ivanVU - 10.12.2011, 10:49
Re: [HELP] 6 errors :/ - by Johnson_boy - 10.12.2011, 17:12

Forum Jump:


Users browsing this thread: 1 Guest(s)