hi ich will die last pos abspeichern aber es eght nicht:
enum PInfo
{
Name,
Ort,
GDatum,
Level,
Password[128],
Money,
Jail,
Logged,
Driverlicense,
Driverlicenselkw,
Driverlicenseboot,
Driverlicenseflug,
Police,
Medic,
Taxi,
Fahrlehrer,
Adac,
Skinid,
Float:xcoords,
Float:ycoords,
Float:zcoords,
Float:acoords,
};
new PlayerInfo[MAX_PLAYERS][PInfo];
public OnPlayerDisconnect(playerid)
{
new Float:x,Float:y,Float:z,Float:a;
GetPlayerPos(playerid,x,y,z);
GetPlayerFacingAngle(playerid,a);
PlayerInfo[playerid][xcoords] = x;
PlayerInfo[playerid][ycoords] = y;
PlayerInfo[playerid][zcoords] = z;
PlayerInfo[playerid][acoords] = a;
return 1;
}