Hi^^
es spinnt schon wieder eine Abfrage von mir rum :3
:
ocmd:standort(playerid,params[])
{
new pnamez[MAX_PLAYERS],accFormat[128], pID,standortx;
GetPlayerName(playerid,pnamez,sizeof pnamez);
format(accFormat,sizeof accFormat,"%s.datei",pnamez);
if(dini_Int(accFormat, "FirmenChef") == 0) return SendClientMessage(playerid,rot,"Du bist kein Chef!");
{
if(sscanf(params, "u", pID,standortx))
{
SendClientMessage(playerid,rot,"Nutze: /standort [PlayerID] [StandortID]");
if(dini_Int(accFormat, "FirmenChef") == 3)
{
SendClientMessage(playerid,gruen,"1 = LS");
SendClientMessage(playerid,gruen,"2 = SF");
SendClientMessage(playerid,gruen,"3 = LV");
return 1;
}
}
if(!IsPlayerConnected(pID)) {
return SendClientMessage(playerid,rot,"Kein Spieler mit angegebener ID Online"); }
if(standortx<1||standortx>5)return SendClientMessage(playerid,rot,"Diese StandortID gibt es nicht");
if(dini_Int(accFormat, "FirmenChef") == 3)
{
new pnamezx[MAX_PLAYERS],accFormatz[128];
GetPlayerName(pID,pnamezx,sizeof pnamezx);
format(accFormatz,sizeof accFormatz,"%s.datei",pnamezx);
if(dini_Int(accFormatz, "Job") == 3)
{
new pNamey [MAX_PLAYER_NAME],
stringy [128];
GetPlayerName(playerid, pNamey, sizeof(pNamey)) ;
SendClientMessage(pID,gruen,"__|Meldung|__");
format(stringy, sizeof(stringy), "%s hat dich einem Standort Region zugewiesen!", pNamey) ;
SendClientMessage(pID,gelb,stringy);
new pNamex [MAX_PLAYER_NAME] ;
new stringx [128];
GetPlayerName(pID, pNamex, sizeof(pNamex) ) ;
SendClientMessage(pID,gruen,"__|Meldung|__");
format(stringy, sizeof(stringy), "Du hast %s einen Standort zugewiesen!", pNamex) ;
SendClientMessage(playerid,gelb,stringx);
Spieler[pID][standort] = standortx;
new pname[MAX_PLAYERS],accFormatx[128];
GetPlayerName(pID,pname,sizeof pname);
format(accFormatx,sizeof accFormatx,"%s.datei",pname);
dini_IntSet(accFormatx,"Standort",Spieler[pID][standort]);
}else{
SendClientMessage(playerid,rot,"Der Spieler arbeitet nicht bei dir!");
return 1;
}
}
}
return 1;
}
und iG kommt die Meldung "Diese StandortID gibt es nicht!"...
könnt ihr mir helfen?