SA-MP Forums Archive
warning - 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)
+---- Forum: Help Archive (https://sampforum.blast.hk/forumdisplay.php?fid=89)
+---- Thread: warning (/showthread.php?tid=77383)



warning - RenisiL - 10.05.2009

-------------------


Re: warning - MenaceX^ - 10.05.2009

pawn Код:
public OnPlayerRequestSpawn(playerid)
{
if(!Logged[playerid])) // playerid is probably missed, it must be there IMO
{
GameTextForPlayer(playerid, "uzsiregistruok arba prisijunk bl", 5000,4);
return 0;
}
return 1;
}



Re: warning - RenisiL - 10.05.2009

Код:
C:\Documents and Settings\LT\Desktop\LT-Drift.pwn(507) : error 028: invalid subscript (not an array or too many subscripts): "Logged"
C:\Documents and Settings\LT\Desktop\LT-Drift.pwn(507) : warning 215: expression has no effect
C:\Documents and Settings\LT\Desktop\LT-Drift.pwn(507) : error 001: expected token: ";", but found "]"
C:\Documents and Settings\LT\Desktop\LT-Drift.pwn(507) : error 029: invalid expression, assumed zero
C:\Documents and Settings\LT\Desktop\LT-Drift.pwn(507) : fatal error 107: too many error messages on one line

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


4 Errors.



Re: warning - Andom - 10.05.2009

pawn Код:
public OnPlayerRequestSpawn(playerid)
{
  if(Logged[playerid] != 1)
  {
     GameTextForPlayer(playerid, "uzsiregistruok arba prisijunk bl", 5000, 4);
     return 0;
  }
  return 1;
}



Re: warning - RenisiL - 10.05.2009

Quote:

C:\Documents and Settings\LT\Desktop\LT-Drift.pwn(507) : error 028: invalid subscript (not an array or too many subscripts): "Logged"
C:\Documents and Settings\LT\Desktop\LT-Drift.pwn(507) : warning 215: expression has no effect
C:\Documents and Settings\LT\Desktop\LT-Drift.pwn(507) : error 001: expected token: ";", but found "]"
C:\Documents and Settings\LT\Desktop\LT-Drift.pwn(507) : error 029: invalid expression, assumed zero
C:\Documents and Settings\LT\Desktop\LT-Drift.pwn(507) : fatal error 107: too many error messages on one line

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


4 Errors.

OMG



Re: warning - Backwardsman97 - 10.05.2009

How did you declare "Logged"?


Re: warning - MenaceX^ - 10.05.2009

pawn Код:
// add that
new Logged[MAX_PLAYERS];



Re: warning - Backwardsman97 - 10.05.2009

And you tried the code Andom posted?