Guten Morgen,
Ich habe folgendes Problem:
Ich bin grade dabei ein TankStellen System zuschreiben und habe will erst mal die Floats laden doch habe folgende Errors:
C:\Users\Fabian\Desktop\Mein Samp Server\gamemodes\Selfmade.pwn(581) : error 035: argument type mismatch (argument 4)
C:\Users\Fabian\Desktop\Mein Samp Server\gamemodes\Selfmade.pwn(582) : error 035: argument type mismatch (argument 4)
C:\Users\Fabian\Desktop\Mein Samp Server\gamemodes\Selfmade.pwn(583) : error 035: argument type mismatch (argument 4)
Pawn compiler 3.2.3664 Copyright (c) 1997-2006, ITB CompuPhase
C:\Users\Fabian\Desktop\Mein Samp Server\gamemodes\Selfmade.pwn(582) : error 035: argument type mismatch (argument 4)
C:\Users\Fabian\Desktop\Mein Samp Server\gamemodes\Selfmade.pwn(583) : error 035: argument type mismatch (argument 4)
Pawn compiler 3.2.3664 Copyright (c) 1997-2006, ITB CompuPhase
3 Errors.
Bei diesem Code:
stock LoadTanke()
{
for(new i = 0; i < MAX_TANKSTELLEN; i++) {
TankeInfo[i][tPosX] = mysql_GetFloat("tankstellen", "PosX", "id", i);//hir Zeile 581
TankeInfo[i][tPosY] = mysql_GetFloat("tankstellen", "PosY", "id", i);//hir Zeile 582
TankeInfo[i][tPosZ] = mysql_GetFloat("tankstellen", "PosZ", "id", i);//hir Zeile 583
}
return 1;
}
{
for(new i = 0; i < MAX_TANKSTELLEN; i++) {
TankeInfo[i][tPosX] = mysql_GetFloat("tankstellen", "PosX", "id", i);//hir Zeile 581
TankeInfo[i][tPosY] = mysql_GetFloat("tankstellen", "PosY", "id", i);//hir Zeile 582
TankeInfo[i][tPosZ] = mysql_GetFloat("tankstellen", "PosZ", "id", i);//hir Zeile 583
}
return 1;
}
Ich bedanke mich für jede hilfe die ihr mit geben könnt.
mfg. Fabi.StaR