Alles anzeigenIch habe folgende Fehler:
D:\Script Server\Sc\gamemodes\Selfmade.pwn(1462) : warning 204: symbol is assigned a value that is never used: "OFYBSchutzweste"D:\Script Server\Sc\gamemodes\Selfmade.pwn(1461) : warning 204: symbol is assigned a value that is never used: "OFYBDeagle"D:\Script Server\Sc\gamemodes\Selfmade.pwn(1460) : warning 204: symbol is assigned a value that is never used: "OFYBShotgun"D:\Script Server\Sc\gamemodes\Selfmade.pwn(1459) : warning 204: symbol is assigned a value that is never used: "OFYBTec9"D:\Script Server\Sc\gamemodes\Selfmade.pwn(1458) : warning 204: symbol is assigned a value that is never used: "OFYBUzi"Pawn compiler 3.2.3664 Copyright (c) 1997-2006, ITB CompuPhase5 Warnings.
Ich nutze aber jeden dieser Variablen zweimal sogar.
OFYBMP5 = dini_Int(path, "MP5" ); OFYBUzi = dini_Int(path, "Uzi" ); OFYBTec9 = dini_Int(path, "Tec9" ); OFYBShotgun = dini_Int(path, "Shotgun" ); OFYBDeagle = dini_Int(path, "Deagle" ); OFYBSchutzweste = dini_Int(path, "Schutzweste"); //_______________________________________________________________________________________________________________// dini_IntSet(path, "MP5" , OFYBMP5+FYBMP5); dini_IntSet(path, "Uzi" , OFYBMP5+FYBUzi); dini_IntSet(path, "Tec9" , OFYBMP5+FYBTec9); dini_IntSet(path, "Shotgun" , OFYBMP5+FYBShotgun); dini_IntSet(path, "Deagle" , OFYBMP5+FYBDeagle); dini_IntSet(path, "Schutzweste" , OFYBMP5+FYBSchutzweste);
Kann mir das jemand erklären?
Du erstellst eine Variable aber benutzt sie nicht.
Ich denke mal der untere Teil sollte eigentlich so aussehen:
dini_IntSet(path, "MP5", OFYBMP5+FYBMP5);
dini_IntSet(path, "Uzi", OFYBUzi+FYBUzi);
dini_IntSet(path, "Tec9", OFYBTec9+FYBTec9);
dini_IntSet(path, "Shotgun", OFYBShotgun+FYBShotgun);
dini_IntSet(path, "Deagle", OFYBDeagle+FYBDeagle);
dini_IntSet(path, "Schutzweste", OFYBSchutzweste+FYBSchutzweste);