i haveproblem with Gm LoF
#1

guys can you tell what is the problem??

i got this error
Код:
C:\Users\hp\Downloads\Compressed\Server\gamemodes\LoF.pwn(6375) : warning 213: tag mismatch
C:\Users\hp\Downloads\Compressed\Server\gamemodes\LoF.pwn(6414) : error 029: invalid expression, assumed zero
C:\Users\hp\Downloads\Compressed\Server\gamemodes\LoF.pwn(6414) : warning 215: expression has no effect
C:\Users\hp\Downloads\Compressed\Server\gamemodes\LoF.pwn(6414) : error 001: expected token: ";", but found ")"
C:\Users\hp\Downloads\Compressed\Server\gamemodes\LoF.pwn(6414) : error 029: invalid expression, assumed zero
C:\Users\hp\Downloads\Compressed\Server\gamemodes\LoF.pwn(6414) : fatal error 107: too many error messages on one line

Compilation aborted.Pawn compiler 3.2.3664	 	 	Copyright © 1997-2006, ITB CompuPhase
in this line
Код:
if(JustRegistered(playerid) == 0)
		{
			new login[156];
			format(login, sizeof(login), "{1B8AE4}%s (%d) {FFFFFF}has logged into the server.", PlayerName(playerid), playerid);
			for(new i = 0; i <MAX_PLAYERS; i++)
			{
				if(IsPlayerConnected(i))
				{
		    		if(PInfo[i][sConnectionMessages] == 0)
		    		{
						SendClientMessage(i, COLOR_YELLOW, login);
					}
				}
			}
		}
please help..
i will +rep you...
Reply
#2

hello///someone please...
help..
--sory bumb---
Reply
#3

JustRegistered(playerid) function right? or an array?

Maybe you miss a ";" not in this code, but before.
Reply
#4

idk...
can you fix it??
or tell me the problem..
so i can fix it
Reply
#5

Show us the JustRegistered() function if it's a function.
Reply
#6

what you mean??
Reply
#7

Код:
if(JustRegistered(playerid) == 0)
{
	new login[156];
	format(login, 156, "%s (%d) has logged into the server.", PlayerName(playerid), playerid);
	for(new i; i < MAX_PLAYERS; i++)
	{
		if(IsPlayerConnected(i))
		{
		    	if(PInfo[i][sConnectionMessages] == 0) SendClientMessage(i, COLOR_YELLOW, login);		    	
		}
Reply
#8

still got
this error.
Quote:

C:\Users\hp\Downloads\Compressed\Server\gamemodes\ LoF.pwn(6375) : warning 213: tag mismatch
C:\Users\hp\Downloads\Compressed\Server\gamemodes\ LoF.pwn(6414) : error 029: invalid expression, assumed zero
C:\Users\hp\Downloads\Compressed\Server\gamemodes\ LoF.pwn(6414) : warning 215: expression has no effect
C:\Users\hp\Downloads\Compressed\Server\gamemodes\ LoF.pwn(6414) : error 001: expected token: ";", but found ")"
C:\Users\hp\Downloads\Compressed\Server\gamemodes\ LoF.pwn(6414) : error 029: invalid expression, assumed zero
C:\Users\hp\Downloads\Compressed\Server\gamemodes\ LoF.pwn(6414) : fatal error 107: too many error messages on one line

Compilation aborted.Pawn compiler 3.2.3664 Copyright © 1997-2006, ITB CompuPhase

Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)