Hallo leute ich benötige zu diesen zwei zeilen etwas hilfe.
Zeilen:
case NameChange: { if(!strlen(inputtext)) { ShowPlayerDialog(playerid,NameChange,DIALOG_STYLE_INPUT,"Change Name of this Player","Type here the new name","Close","Ok"); return SendClientMessage(playerid,0xFFFFFFFF,"Kein Name angegeben!"); } SetPlayerName(pID,inputtext); return 1; }
case BewertungChange: { if(strfind(inputtext == "")) { ShowPlayerDialog(playerid,BewertungChange,DIALOG_STYLE_INPUT,"Change the Valuation of this Player","Type here the ne Valuation","Close","Ok"); return SendClientMessage(playerid,0xFFFFFFFF,"Keine Bewertung angegeben"); } SetPlayerScore(playerid,inputtext); if(INI_Open(accFormat)) { INI_WriteInt("Bewertung",inputtext); INI_Save(); INI_Close(); } return 1; }
Error's:
Zeile 299 beginnt bei case NameChange
Zeile 300 beginnt bei case BewertungChange
ZitatAlles anzeigenC:\Users\Adnan\Desktop\samp\gamemodes\Adnan.pwn(299) : warning 217: loose indentation
C:\Users\Adnan\Desktop\samp\gamemodes\Adnan.pwn(299) : error 017: undefined symbol "pID"
C:\Users\Adnan\Desktop\samp\gamemodes\Adnan.pwn(300) : error 033: array must be indexed (variable "inputtext")
C:\Users\Adnan\Desktop\samp\gamemodes\Adnan.pwn(300) : warning 217: loose indentation
C:\Users\Adnan\Desktop\samp\gamemodes\Adnan.pwn(300) : error 035: argument type mismatch (argument 2)
C:\Users\Adnan\Desktop\samp\gamemodes\Adnan.pwn(300) : error 035: argument type mismatch (argument 2)
C:\Users\Adnan\Desktop\samp\gamemodes\Adnan.pwn(300) : 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.
Ich brauch hilfe diese Error's wegzubekommen, weis nicht wie ich diese entferne außer das pID das änder ich dan noch ^^.