Hey Com,
Kann sich bitte einmal einer dieses Scipt anschauen und mir sagen wir ich die errors wegbekomme ?
MFG addix
Hey Com,
Kann sich bitte einmal einer dieses Scipt anschauen und mir sagen wir ich die errors wegbekomme ?
MFG addix
Welche Errors?! -.-.-.-
C:\Users\Maurice\Desktop\GRR\gamemodes\GRR1.pwn(5771) : warning 219: local variable "mod" shadows a variable at a preceding level
C:\Users\Maurice\Desktop\GRR\gamemodes\GRR1.pwn(5801) : warning 219: local variable "mod" shadows a variable at a preceding level
C:\Users\Maurice\Desktop\GRR\gamemodes\GRR1.pwn(9420) : error 021: symbol already defined: "strtok"
C:\Users\Maurice\Desktop\GRR\gamemodes\GRR1.pwn(9435) : error 047: array sizes do not match, or destination array is too small
C:\Users\Maurice\Desktop\GRR\gamemodes\GRR1.pwn(11206) : error 021: symbol already defined: "isNumeric"
Pawn compiler 3.2.3664 Copyright (c) 1997-2006, ITB CompuPhase
3 Errors.
Und jetzt noch die Zeilen dazu.
1+2Error
strtok(const string[], &index)
{
new length = strlen(string);
while ((index < length) && (string[index] <= ' '))
{
index++;
}
new offset = index;
new result[20];
while ((index < length) && (string[index] > ' ') && ((index - offset) < (sizeof(result) - 1)))
{
result[index - offset] = string[index];
index++;
}
result[index - offset] = EOS;
return result;
}
3Error
stock isNumeric(const string[]) {
new length=strlen(string);
if (length==0) return false;
for (new i = 0; i < length; i++) {
if (
(string[i] > '9' || string[i] < '0' && string[i]!='-' && string[i]!='+') // Not a number,'+' or '-'
|| (string[i]=='-' && i!=0) // A '-' but not at first.
|| (string[i]=='+' && i!=0) // A '+' but not at first.
) return false;
}
if (length==1 && (string[0]=='-' || string[0]=='+')) return false;
return true;
}
Jetzt schau doch mal in den Google Übersetzer und frag ihn mal, was das hier wohl auf Deutsch heißt:
Zitatsymbol already defined
Google übestzter sagt :
ch niemanden der sagt das ich übersetzten soll sondern mir hilft
Nein Spaß
-Symbol ist schon definiert
MFG
So, und das bedeutet? ...
-Symbol ist schon definiert
Lesen ftw!