Hallo liebe Community,
nachdem ihr mir bei meinem letzten Problem so schnell helfen konntet, frag ich euch doch gleich nochmal deswegen.
Ich bekomme folgende Fehlermeldungen:
Code
C:\Users\Flo\Desktop\Pawnoscript\gamemodes\Script.pwn(3565) : error 020: invalid symbol name ""
C:\Users\Flo\Desktop\Pawnoscript\gamemodes\Script.pwn(3566) : error 029: invalid expression, assumed zero
C:\Users\Flo\Desktop\Pawnoscript\gamemodes\Script.pwn(3566) : warning 215: expression has no effect
C:\Users\Flo\Desktop\Pawnoscript\gamemodes\Script.pwn(3566) : error 001: expected token: ";", but found "]"
C:\Users\Flo\Desktop\Pawnoscript\gamemodes\Script.pwn(3566) : error 029: invalid expression, assumed zero
C:\Users\Flo\Desktop\Pawnoscript\gamemodes\Script.pwn(3566) : fatal error 107: too many error messages on one line
Compilation aborted.Pawn compiler 3.2.3664 Copyright (c) 1997-2006, ITB CompuPhase
5 Errors.
Alles anzeigen
Das ganze in diesem Abschnitt(mit Zeilenangabe):
Code
Zeile 3561___stock AddNagelBand(playerid) {
Zeile 3562___ new Float:x, Float:y, Float:z, Float:a;
Zeile 3563___ GetPlayerPos(playerid,x,y,z);
Zeile 3564___ GetPlayerFacingAngle(playerid, a);
Zeile 3565___ for(new i = 0; i < sizeof(NagelBand); i++) {
Zeile 3566___ if(NagelBand[i][nErstellt] == 0) {
Zeile 3567___ NagelBand[i][NagelBandX] = x;
Zeile 3568___ NagelBand[i][NagelBandY] = y;
Zeile 3569___ NagelBand[i][NagelBandZ] = z - 0.7;
Zeile 3570___ NagelBand[i][nErstellt] = 1;
Zeile 3571___ NagelBand[i][ID] = CreateDynamicObject(2899, x, y, z - 0.7, 0.0, 0.0, a - 90.0);
Zeile 3572___ return 1;
Zeile 3573___ }
Zeile 3574___ }
Zeile 3575___ return 0;
Zeile 3576___}
Alles anzeigen
Danke schonmal...
Gruß Flo