Fehler kommt beim @:
PHP
[Sun Aug 18 11:43:37 2013] Function: mysql_query executed: "INSERT INTO `account`(`Name`, `Passwort`,`Email`, `Level`, `Geld`, `Admin`, `VIP`, `Leben`, `Armour`, `Fraktion`, `Fraktionsrang`, `Persolic`, `Carlic`, `Bikelic`, `Flylic`, `Weaponlic`, `Waffe1`, `Ammo1`, `Waffe2`, `Ammo2`, `Waffe3`, `Ammo3`, `Geschlecht`, `Alter`, `Herkunft`) VALUES (thetvMt8,12345,aaa@web.de,0,0,0,0,100.0,0.0,Keine,0,0,0,0,0,0,0,0,0,0,0,0,Maennlich,0,Deutschland)" with result: "1".
[Sun Aug 18 11:43:37 2013] Error (0): Failed to exeute query. You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near '@web.de,0,0,0,0,100.0,0.0,Keine,0,0,0,0,0,0,0,0,0,0,0,0,Maennlich,0,Deutschland)' at line 1.
new name[MAX_PLAYER_NAME],pw[20],email[20],sex[10];
GetPlayerName(playerid,name,sizeof(name));
GetPVarString(playerid,"Passwort",pw,sizeof(pw));
GetPVarString(playerid,"Email",email,sizeof(email));
GetPVarString(playerid,"Geschlecht",sex,sizeof(sex));
new str[999];
format(str,sizeof(str),"INSERT INTO `account`(`Name`, `Passwort`,`Email`, `Level`, `Geld`, `Admin`, `VIP`, `Leben`, `Armour`, `Fraktion`, `Fraktionsrang`, `Persolic`, `Carlic`, `Bikelic`, `Flylic`, `Weaponlic`, `Waffe1`, `Ammo1`, `Waffe2`, `Ammo2`, `Waffe3`, `Ammo3`, `Geschlecht`, `Alter`, `Herkunft`) VALUES (%s,%s,%s,0,0,0,0,100.0,0.0,Keine,0,0,0,0,0,0,0,0,0,0,0,0,%s,0,Deutschland)",name,pw,email,sex);
mysql_query(str);