Hallo, wisst ihr vielleicht wo das Problem liegt? Danke im vorraus.
ZitatC:\Users\izseonna\Desktop\Next Generation Gaming\gamemodes\EGRP.pwn(106516) : warning 217: loose indentation
C:\Users\izseonna\Desktop\Next Generation Gaming\gamemodes\EGRP.pwn(106516) : error 014: invalid statement; not in switch
C:\Users\izseonna\Desktop\Next Generation Gaming\gamemodes\EGRP.pwn(106516) : warning 215: expression has no effect
C:\Users\izseonna\Desktop\Next Generation Gaming\gamemodes\EGRP.pwn(106516) : error 001: expected token: ";", but found ":"
C:\Users\izseonna\Desktop\Next Generation Gaming\gamemodes\EGRP.pwn(106516) : error 029: invalid expression, assumed zero
C:\Users\izseonna\Desktop\Next Generation Gaming\gamemodes\EGRP.pwn(106516) : fatal error 107: too many error messages on one line
case DIALOG_GROUP_LOCKERS: {
new
iGroupID = GetPVarInt(playerid, "Group_EditID"),
szTitle[32 + GROUP_MAX_NAME_LEN];
if(response)
{
format(szTitle, sizeof szTitle, "Edit Group Locker Position {%s}(%s)", Group_NumToDialogHex(arrGroupData[iGroupID][g_hDutyColour]), arrGroupData[iGroupID][g_szGroupName]);
if (listitem == MAX_GROUP_LOCKERS)
{
ShowPlayerDialog(playerid, DIALOG_GROUP_LOCKERDELETECONF, DIALOG_STYLE_MSGBOX, szTitle, "{FFFFFF}Are you sure you want to delete ALL of the lockers for this group?", "Cancel", "Confirm");
return 1;
}
else
{
SetPVarInt(playerid, "Group_EditLocker", listitem);
ShowPlayerDialog(playerid, DIALOG_GROUP_LOCKERACTION, DIALOG_STYLE_LIST, szTitle, "Move Locker (to your current position)\nDelete Locker", "Select", "Cancel");
return 1;
}
}
return Group_DisplayDialog(playerid, iGroupID);
}