| Tematy otagowane jako: token: |
| 1. [INNE] expected token: ";", but found ")" |
Witam robie sobie eventy i przy naciskaniu f5 mam:
[code]C:UsersPatrykDesktopZabawyVIVA.pwn(677) : error 012: invalid function call, not a valid address
C:UsersPatrykDesktopZabawyVIVA.pwn(677) : warning 215: expression has no effect
C:UsersPatrykDesktopZabawyVIVA.pwn(677) : warning 215: expression has no effect
C:UsersPatrykDesktopZabawyVIVA.pwn(677) : warning 215: expression has no effect
C:UsersPatrykDesktopZabawyVIVA.pwn(677) : warning 215: expression has no effect
C:UsersPatrykDesktopZabawyVIVA.pwn(677) : error 001: expected token: ";", but found ")"
C:UsersPatrykDesktopZabawyVIVA.pwn(677) : error 029: invalid expression, assumed zero
C:UsersPatrykDesktopZabawyVIVA.pwn(677) : fatal error 107: too many error messages on one line
Compilation aborted.Pawn compiler 3.2.3664 Copyright (c) 1997-2006, ITB CompuPhase
4 Errors.
[/code]
A o to linijka 668-693:
[code]forward StrzelnicaCheck();
public StrzelnicaCheck()
{
if(!StrzelnicaON) return 1;
for(new x=0;x<MAX_GRACZY;x++){
if(IsPlayerConnected(x) && Strzelnica[x]){
if(!StrzelnicaSniper[x] && !IsPlayerInArea(x,270.3151,293.5906,-144.3372,-126.0463)){
SetPlayerPosAndFree(x,285.2184,-134.4836,1004.0625);
}
if(GetPlayerWeapon(x) != 0 && !StrzelnicaSniper[x]){
Strzelnica[x] = false;
StrzelnicaSniper[x] = false;
StrzelnicaZaglosowal[x] = false;
SetPlayerRandomSpawn(x);
SendClientMessage(x,COLOR_... |
|