guten abend ich habe in meinem script ein bisschen ins englische übersetzt nur jz bekomme ich einige errors kann mir jemand helfen ?
C:\Users\Tufan\Desktop\selfmade\gamemodes\selfmade.pwn(15227) : warning 219: local variable "Faction" shadows a variable at a preceding level
C:\Users\Tufan\Desktop\selfmade\gamemodes\selfmade.pwn(15228) : error 091: ambiguous constant; tag override is required (symbol "Faction")
C:\Users\Tufan\Desktop\selfmade\gamemodes\selfmade.pwn(15228) : error 022: must be lvalue (non-constant)
C:\Users\Tufan\Desktop\selfmade\gamemodes\selfmade.pwn(15228) : error 091: ambiguous constant; tag override is required (symbol "Faction")
C:\Users\Tufan\Desktop\selfmade\gamemodes\selfmade.pwn(15228) : 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.
ocmd:fbank(playerid,params[])
{
new Faction = 0;
if(SpielerInfo[playerid][Faction] >= 0) Faction = SpielerInfo[playerid][Faction] - 1;
if(Faction >= 0)
{
if(IsPlayerInRangeOfPoint(playerid,2,2316.3601,-7.3589,26.7422))//HIER DIE KOORDINATEN EURER BANK/AUTOMATEN EINFÜGEN
{
if(SpielerInfo[playerid][Faction] == 1 || SpielerInfo[playerid][Faction] == 8 || SpielerInfo[playerid][Faction] == 6)
{
}
else
{
ShowPlayerDialog(playerid,Factionskasse,DIALOG_STYLE_LIST,"Bankkonto","Auszahlen\nEinzahlen\nKontostand","Bestätigen","Abbrechen");
return 1;
}
}
else
{
SendClientMessage(playerid,weiß,"Du bist nicht in der Bank.");
return 1;
}
}
return 1;
}